html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
}
*,
*:before,
*:after,
input[type="checkbox"],
input[type="radio"] {
  box-sizing: inherit;
}
img,
pre,
embed,
video,
iframe,
object,
input,
select,
textarea {
  max-width: 100%;
}
body {
  margin: 0;
}
main {
  display: block;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(204, 204, 204, 0.35),
    #333,
    rgba(204, 204, 204, 0.35)
  );
  margin-top: 2rem;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
em,
i,
.itlc {
  font-style: italic;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}

/* colors
#7F8688 - dark gray
#929D9E - light gray
#2B9C78 - links & accent
#373A36 - txt 
#426A5F - dark green
#518875 - mid green
#AEB886 - light green
#ff9d02 - orange
#ff9d02 - yellow
================== */
/* general ================== */
body {
  overflow-x: hidden;
  /* color: #373A36; */
  color: #000;
  font-size: 15px;
  line-height: 1.8;
  font-family: Arial, sans-serif;
  text-align: left;
  transition: all 200ms linear;
  background: #f3f3f3;
}
::selection {
  color: #333;
  background-color: #fbc887;
}
::-moz-selection {
  color: #333;
  background-color: #fbc887;
}
::-webkit-scrollbar {
  width: 1em;
}
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
::-webkit-scrollbar-thumb {
  background-color: #150136;
}
#page-article.white {
  padding: 10px 20px;
  background: #fff;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
  -o-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  #page-article.container {
    box-shadow: none;
  }

}
.row {
  margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  font-family: "Nunito Sans", sans-serif;
  margin: 10px 0;
}

h1,
h2,
h3 {
  position: relative;
}

h1 {
  text-align: center;
  font-size: 1.375rem;
}

h1.article-title::before {
  content: "";
  display: none;
  width: 25px;
  height: 25px;
  margin-right: 8px;
  position: absolute;
  top: 0px;
  left: 3px;
  background: url(../../imgs/icons/badge.svg) center no-repeat;
  background-size: contain;
}

h2 {
  font-weight: bold;
}

h2:not(.elem-title):after {
  position: absolute;
  content: "";
  height: 2px;
  width: 40px;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

h2:not(.elem-title):after {
  background-image: linear-gradient(
    to right,
    transparent,
    #ff9d02,
    transparent
  );
}

.dark-bg h2 {
  color: #d8d8d8;
}
.dark-bg h2::first-letter {
  color: #e8e8e8;
}

@media only screen and (max-width: 575px) {
  h2::first-letter {
    border-bottom: none;
  }
  table.tablem.m-scroll{
    display: block;
    overflow: auto;
  }
}
h3 {
  font-size: 18px;
  display: inline-block;
}

h3:after {
  position: absolute;
  content: "";
  background-image: linear-gradient( to right, transparent, #ff9d02, transparent );
  height: 2px;
  width: 50px;
  bottom: -5px;
  left: 10px;
}
.elem-title {
  text-align: center;
  font-family: "Nunito Sans", sans-serif;
  font-weight: bold;
  font-size: 1.188rem;
}

@media screen and (min-width: 640px) {
  h2,
  .heading {
    font-size: 19px;
    margin: 20px 0;
  }
}

p {
  text-align: justify;
  font-family: "Montserrat", sans-serif;
}
a {
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.d-grid{display: grid;}
.modal-backdrop.show {
  height: 100%;
  opacity: 0.7;
}
.accent-txt {
  color: #2b9c78;
}
.wide-container {
  margin-left: -20px;
  margin-right: -20px;
}
.example {
  background: rgb(233 182 98 / 0.3);
  padding: 0.5rem;
  border-left: 5px solid #ff9d02;
  font-style: italic;
  font-weight: bold;
}
.bon-off {
  background: url("../../imgs/icons/giftbox.svg") no-repeat;
  text-indent: -9999px;
  display: inline-block;
}
.bg-light {
  background-color: rgba(211, 78, 61, 0.8);
  color: #fff;
}
.light-color {
  color: #ff9d02;
}
.white-bg {
  background: #fff;
}
.bg-dark {
  background: #150136 !important;
  color: #fff;
}
.bg-gray {
  background: #f3f3f3;
  color: #333;
}
.dark-bg {
  background: #150136;
  background: linear-gradient(
      231deg,
      rgba(233, 233, 233, 0.01) 0%,
      rgba(233, 233, 233, 0.01) 25%,
      rgba(10, 10, 10, 0.01) 25%,
      rgba(10, 10, 10, 0.01) 50%,
      rgba(237, 237, 237, 0.01) 50%,
      rgba(237, 237, 237, 0.01) 75%,
      rgba(200, 200, 200, 0.01) 75%,
      rgba(200, 200, 200, 0.01) 100%
    ),
    linear-gradient(
      344deg,
      rgba(2, 2, 2, 0.03) 0%,
      rgba(2, 2, 2, 0.03) 20%,
      rgba(10, 10, 10, 0.03) 20%,
      rgba(10, 10, 10, 0.03) 40%,
      rgba(100, 100, 100, 0.03) 40%,
      rgba(100, 100, 100, 0.03) 60%,
      rgba(60, 60, 60, 0.03) 60%,
      rgba(60, 60, 60, 0.03) 80%,
      rgba(135, 135, 135, 0.03) 80%,
      rgba(135, 135, 135, 0.03) 100%
    ),
    linear-gradient(
      148deg,
      rgba(150, 150, 150, 0.03) 0%,
      rgba(150, 150, 150, 0.03) 14.286%,
      rgba(15, 15, 15, 0.03) 14.286%,
      rgba(15, 15, 15, 0.03) 28.572%,
      rgba(74, 74, 74, 0.03) 28.572%,
      rgba(74, 74, 74, 0.03) 42.858%,
      rgba(175, 175, 175, 0.03) 42.858%,
      rgba(175, 175, 175, 0.03) 57.144%,
      rgba(16, 16, 16, 0.03) 57.144%,
      rgba(16, 16, 16, 0.03) 71.42999999999999%,
      rgba(83, 83, 83, 0.03) 71.43%,
      rgba(83, 83, 83, 0.03) 85.71600000000001%,
      rgba(249, 249, 249, 0.03) 85.716%,
      rgba(249, 249, 249, 0.03) 100.002%
    ),
    linear-gradient(
      122deg,
      rgba(150, 150, 150, 0.01) 0%,
      rgba(150, 150, 150, 0.01) 20%,
      rgba(252, 252, 252, 0.01) 20%,
      rgba(252, 252, 252, 0.01) 40%,
      rgba(226, 226, 226, 0.01) 40%,
      rgba(226, 226, 226, 0.01) 60%,
      rgba(49, 49, 49, 0.01) 60%,
      rgba(49, 49, 49, 0.01) 80%,
      rgba(94, 94, 94, 0.01) 80%,
      rgba(94, 94, 94, 0.01) 100%
    ),
    linear-gradient(
      295deg,
      rgba(207, 207, 207, 0.02) 0%,
      rgba(207, 207, 207, 0.02) 25%,
      rgba(47, 47, 47, 0.02) 25%,
      rgba(47, 47, 47, 0.02) 50%,
      rgba(142, 142, 142, 0.02) 50%,
      rgba(142, 142, 142, 0.02) 75%,
      rgba(76, 76, 76, 0.02) 75%,
      rgba(76, 76, 76, 0.02) 100%
    ),
    linear-gradient(
      73deg,
      rgba(81, 81, 81, 0.03) 0%,
      rgba(81, 81, 81, 0.03) 12.5%,
      rgba(158, 158, 158, 0.03) 12.5%,
      rgba(158, 158, 158, 0.03) 25%,
      rgba(136, 136, 136, 0.03) 25%,
      rgba(136, 136, 136, 0.03) 37.5%,
      rgba(209, 209, 209, 0.03) 37.5%,
      rgba(209, 209, 209, 0.03) 50%,
      rgba(152, 152, 152, 0.03) 50%,
      rgba(152, 152, 152, 0.03) 62.5%,
      rgba(97, 97, 97, 0.03) 62.5%,
      rgba(97, 97, 97, 0.03) 75%,
      rgba(167, 167, 167, 0.03) 75%,
      rgba(167, 167, 167, 0.03) 87.5%,
      rgba(22, 22, 22, 0.03) 87.5%,
      rgba(22, 22, 22, 0.03) 100%
    ),
    linear-gradient(90deg, hsl(263deg 96% 11%), hsl(263deg 86% 11%));
  color: #fff;
}
.light-bg {
  background: #fff;
  background: linear-gradient(
      112.5deg,
      rgba(232, 232, 232, 0.03) 0%,
      rgba(232, 232, 232, 0.03) 2%,
      rgba(231, 231, 231, 0.03) 2%,
      rgba(231, 231, 231, 0.03) 4%,
      rgba(231, 231, 231, 0.03) 4%,
      rgba(231, 231, 231, 0.03) 11%,
      rgba(2, 2, 2, 0.03) 11%,
      rgba(2, 2, 2, 0.03) 67%,
      rgba(231, 231, 231, 0.03) 67%,
      rgba(231, 231, 231, 0.03) 90%,
      rgba(111, 111, 111, 0.03) 90%,
      rgba(111, 111, 111, 0.03) 100%
    ),
    linear-gradient(
      157.5deg,
      rgba(210, 210, 210, 0.03) 0%,
      rgba(210, 210, 210, 0.03) 17%,
      rgba(254, 254, 254, 0.03) 17%,
      rgba(254, 254, 254, 0.03) 18%,
      rgba(96, 96, 96, 0.03) 18%,
      rgba(96, 96, 96, 0.03) 44%,
      rgba(159, 159, 159, 0.03) 44%,
      rgba(159, 159, 159, 0.03) 70%,
      rgba(24, 24, 24, 0.03) 70%,
      rgba(24, 24, 24, 0.03) 82%,
      rgba(16, 16, 16, 0.03) 82%,
      rgba(16, 16, 16, 0.03) 100%
    ),
    linear-gradient(
      22.5deg,
      rgba(47, 47, 47, 0.03) 0%,
      rgba(47, 47, 47, 0.03) 32%,
      rgba(124, 124, 124, 0.03) 32%,
      rgba(124, 124, 124, 0.03) 40%,
      rgba(200, 200, 200, 0.03) 40%,
      rgba(200, 200, 200, 0.03) 42%,
      rgba(16, 16, 16, 0.03) 42%,
      rgba(16, 16, 16, 0.03) 64%,
      rgba(243, 243, 243, 0.03) 64%,
      rgba(243, 243, 243, 0.03) 94%,
      rgba(93, 93, 93, 0.03) 94%,
      rgba(93, 93, 93, 0.03) 100%
    ),
    linear-gradient(90deg, #fff, #fff);
}
hr.separate {
  border: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(204, 204, 204, 0.35),
    #426a5f,
    rgba(204, 204, 204, 0.35)
  );
  margin-top: 2rem;
}

.football-bg {
  background: url("../../imgs/icons/football.svg");
}
.cricket-bg {
  background: url("../../imgs/icons/cricket.svg");
}
.basketball-bg {
  background: url("../../imgs/icons/basketball.svg");
}
.baseball-bg {
  background: url("../../imgs/icons/baseball.svg");
}
.tennis-bg {
  background: url("../../imgs/icons/tennis.svg");
}
.racing-bg {
  background: url("../../imgs/icons/racing.svg");
}
.boxing-bg {
  background: url("../../imgs/icons/boxing.svg");
}
.golf-bg {
  background: url("../../imgs/icons/golf.svg");
}
.hockey-bg {
  background: url("../../imgs/icons/ice-hockey.svg");
}
.rugby-bg {
  background: url("../../imgs/icons/rugby.svg");
}
.snooker-bg {
  background: url("../../imgs/icons/snooker.svg");
}
.volleyball-bg {
  background: url("../../imgs/icons/volleyball.svg");
}
.esports-bg{background: url('../../imgs/icons/e-sports.svg'); }
.horse-racing-bg {
  background: url("../../imgs/icons/horse.svg");
}
.darts-bg {
  background: url("../../imgs/icons/darts.svg");
}
.e-sports-bg {
  background: url("../../imgs/icons/e-sports.svg");
}
.handball-bg {
  background: url("../../imgs/icons/handball.svg");
}
.virtual-sports-bg {
  background: url("../../imgs/icons/virtual-sports.svg");
}
.table-tennis-bg {
  background: url("../../imgs/icons/table-tennis.svg");
  background-size: 95px 95px !important;
}

.sports-list .table-tennis-bg {
  background-size: 95px 95px;
}

[class*="-bg"] {
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
@media only screen and (max-width: 1199px) {
  #page-article.container {
    max-width: 100%;
  }
}
.badge.circle-custom {
  border-radius: 50%;
  font-size: 14px;
  font-style: italic;
  padding: 5px 2px 5px 0;
  width: 25px;
  height: 25px;
  background: #ff9d02;
  color: #426a5f;
  font-weight: 900;
  box-shadow: 0 2px 4px rgba(33, 37, 41, 0.1), 0 3px 2px rgba(33, 37, 41, 0.1);
}
.shadowed {
  box-shadow: 0 0 5px #7f8688;
}
@media only screen and (max-width: 767px) {
  /* body.menu-open {
        transition: all 0.2s ease-in-out;
        -webkit-transition: all 0.2s ease-in-out;
        -moz-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
    } */
  body.menu-open:after {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 900;
    background: rgba(0, 0, 0, 0.5);
  }
}
@media only screen and (max-width: 575px) {
  #page-article.white {
    padding: 10px 15px;
  }
  h1 {
    font-size: 1.15rem;
    line-height: 1.5;
  }
}

@media only screen and (max-width: 1024px) {
  h1 {
    font-weight: bold;
  }
}

@media screen and (min-width: 768px) {
  h1,
  h2 {
    text-align: left;
  }

  h1.article-title:before {
    display: inline-block;
  }
}

@media screen and (min-width: 768px) {
  h1,
  h2 {
    text-align: left;
  }

  h1.article-title {
    padding-left: 30px;
  }

  h1.article-title:before {
    display: inline-block;
  }

  h2:not(.elem-title)::after {
    left: 55px;
    width: 100px;
  }
}

@media screen and (max-width: 767px) {
  h2:not(.elem-title)::after,
  h3::after {
    left: 10px;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
  }
}

@media screen and (max-width: 639px) {
  h2,
  .elem-title,
  .heading {
    font-size: 17px;
    line-height: 1.3;
    margin: 20px 0;
  }
}

@media screen and (max-width: 991px) {
  .top-rev-v hr {
    margin-top: 1rem;
  }
  .mob-hide {
    display: none !important;
  }
}
@media only screen and (max-width: 575px) {
  .mob-hide {
    display: block !important;
  }
}
/* ============== */
/* animations ================== */
.slide-in-left.sliding,
.slide-in.sliding:before {
  -webkit-animation: slide-in-left 1.5s ease-in forwards;
  animation: slide-in-left 1.5s ease-in forwards;
}
@-webkit-keyframes slide-in-left {
  0% {
    left: -100%;
  }
  100% {
    left: 0;
  }
}
@keyframes slide-in-left {
  0% {
    left: -100%;
  }
  100% {
    left: 0;
  }
}
.slide-in-right.sliding:before,
.slide-in-right.sliding {
  -webkit-animation: slide-in-right 1.5s ease-in forwards;
  animation: slide-in-right 1.5s ease-in forwards;
}
@-webkit-keyframes slide-in-right {
  0% {
    right: -100%;
  }
  100% {
    right: 0;
  }
}
@keyframes slide-in-right {
  0% {
    right: -100%;
  }
  100% {
    right: 0;
  }
}
@-webkit-keyframes swing {
  15% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  30% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  50% {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
  }
  65% {
    -webkit-transform: translateX(-3px);
    transform: translateX(-3px);
  }
  80% {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes swing {
  15% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  30% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  50% {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
  }
  65% {
    -webkit-transform: translateX(-3px);
    transform: translateX(-3px);
  }
  80% {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-moz-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-15px);
    transform: translateY(-15px);
  }
  60% {
    -moz-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
  60% {
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}
.swing:hover {
  -webkit-animation: swing 1s ease;
  animation: swing 1s ease;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
@-webkit-keyframes shine {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}
@keyframes shine {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}

@-webkit-keyframes bounce-in-top {
  0% {
    -webkit-transform: translateY(-500px);
    transform: translateY(-500px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    -webkit-transform: translateY(-65px);
    transform: translateY(-65px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  72% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  81% {
    -webkit-transform: translateY(-28px);
    transform: translateY(-28px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  90% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  95% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes bounce-in-top {
  0% {
    -webkit-transform: translateY(-500px);
    transform: translateY(-500px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    -webkit-transform: translateY(-65px);
    transform: translateY(-65px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  72% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  81% {
    -webkit-transform: translateY(-28px);
    transform: translateY(-28px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  90% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  95% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

/* ================== */
/* header ================== */
#page-header {
  padding: 7px 10px;
  position: relative;
}
#page-header .row {
  max-width: 1200px;
}
#page-header .inline-list {
  padding-top: 5px;
  display: table;
  margin: 0 auto;
  padding-left: 0;
}
#page-header .inline-list li,
#page-header .inline-list.regs li {
  display: inline-block;
}
#page-header .inline-list.feat li {
  padding: 7px 7px 7px 40px;
  background: #fff;
  border: 1px solid #bdbdbd;
  border-radius: 4px;
  font-weight: bold;
  font-size: 12px;
  line-height: 1.4;
  position: relative;
  margin-right: 5px;
}
#page-header .inline-list.regs {
  padding: 10px 3px 0px;
  border: 1px solid #FBC887;
  border-radius: 4px;
  position: relative;
  margin-top: 5px;
}
#page-header .inline-list.regs li:not(:last-child) {
  margin-right: 5px;
}
#page-header .inline-list.regs .regulates-1.cimer {
  top: -10px;
  position: relative;
}
#page-header .reg-kdep {
  width: 30px;
  height: 30px;
}
#page-header .inline-list.regs li.gamcare {
  background: url("../../imgs/regulation/gamcare.svg") no-repeat center center;
  background-size: 25px 30px;
  display: inline-block;
  width: 35px;
  height: 30px;
}
#page-header .inline-list.regs li.essa {
  background: url("../../imgs/regulation/essa.svg") no-repeat center center;
  background-size: 60px 60px;
  display: inline-block;
  width: 70px;
  height: 30px;
  background-color: #fff;
}
#page-header .inline-list.regs li.gambling-commission {
  background: url("../../imgs/regulation/gamblingcommission.svg") no-repeat center
    center;
  background-size: 80px 60px;
  display: inline-block;
  width: 85px;
  height: 30px;
  background-color: #fff;
}
#page-header .inline-list.regs li.ecogra {
  background: url("../../imgs/regulation/ecogra.svg") no-repeat center center;
  background-size: 70px 60px;
  display: inline-block;
  width: 75px;
  height: 30px;
  background-color: #fff;
}
#page-header .inline-list.regs li.segob {
  background: url(../../imgs/regulation/segob.svg) no-repeat center center;
  background-size: 75px 60px;
  display: inline-block;
  width: 75px;
  height: 30px;
  background-color: #fff;
}
#page-header .inline-list.regs:before {
  content: "Verificado";
  position: absolute;
  left: 14px;
  top: -8px;
  padding: 1px 10px;
  background: #FBC887;
  border-radius: 3px;
  color: #fff;
  font-weight: bold;
  font-size: 10px;
  line-height: 1.3;
}
.head-notes:before,
.head-cal:before,
.head-safe:before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  display: inline-block;
  top: 7px;
  left: 5px;
}
.head-safe:before {
  background: url("../../imgs/icons/safe.svg") no-repeat center center;
}
.head-notes:before {
  background: url("../../imgs/icons/notes.svg") no-repeat center center;
}
.head-cal:before {
  background: url("../../imgs/icons/calendar.svg") no-repeat center center;
}
@media only screen and (max-width: 649px) {
  #page-header .col-xs-9 {
    display: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #page-header .inline-list.regs {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
}
@media only screen and (width: 1024px) {
  #page-header .inline-list.feat li {
    font-size: 11px;
  }
}

/* ============== */

/* Navigation ================== */
@media only screen and (max-width: 767px) {
  .full-xs {
    width: 767px;
    max-width: 100%;
  }
}

/* ================== */
/* TOC ================== */
.navbar-collapse .goto::before {
  content: "Contenido";
  position: absolute;
  background: #ff9d02;
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  #goto {
    position: absolute;
    width: 100%;
    background: #ffffff;
    left: 0;
    padding-top: 28px;
    z-index: 1000;
    border: 3px solid #d2d5d7;
  }
  .goto {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    width: 100%;
  }
  #goto li {
    border-bottom: 1px solid #d2d5d7;
    padding-left: 1.25rem;
  }
  #goto li a {
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 200ms linear;
    position: relative;
    padding: 5px 0 !important;
    display: block;
  }
  #goto li a:before {
    content: "\f0da";
    position: absolute;
    top: 10px;
    left: -12px;
    font: 900 14px "Font Awesome 5 Free";
    color: #333333;
    display: inline-block;
  }
  .goto-toggle {
    background: url("../../imgs/icons/goto-toggle.svg") no-repeat;
    width: 30px;
    height: 22px;
    display: inline-block;
    outline: 0;
    border: 0;
    position: relative;
    right: 0;
    vertical-align: top;
  }
  .goto-toggle[aria-expanded="true"] {
    background: transparent;
  }
  .goto-close-icon {
    width: 24px;
    height: 17px;
    background-image: none;
    position: relative;
    transition: all 300ms linear;
    left: -12px;
  }
  .goto-close-icon:after,
  .goto-close-icon:before {
    width: 24px;
    height: 2px;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    z-index: 2;
    transition: all 300ms linear;
    display: inline-block;
    vertical-align: middle;
    background: no-repeat center center;
    background-size: 100% 100%;
  }
  .goto-toggle[aria-expanded="true"] .goto-close-icon {
    opacity: 1;
  }
  .goto-toggle[aria-expanded="true"] .goto-close-icon:after,
  .goto-toggle[aria-expanded="true"] .goto-close-icon:before {
    background-color: #ff9d02;
  }
  .goto-toggle[aria-expanded="true"] .goto-close-icon:before {
    transform: rotate(-45deg);
  }
  .goto-toggle[aria-expanded="true"] .goto-close-icon:after {
    transform: rotate(45deg);
  }
  .goto-toggle:focus {
    outline: 0;
    border: 0;
  }
  .navbar-collapse .goto::before {
    left: 0;
    top: 0;
    padding: 5px;
    text-align: center;
    width: 100%;
    background: #333333;
  }

  .popup-toggle {
    background: url("../../imgs/icons/gift-icon.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 26px;
    height: 26px;
    display: inline-block;
    outline: 0;
    border: 0;
    position: absolute;
    top: -43px;
    right: 94px;
    vertical-align: top;
    animation: buzz 4s linear infinite;
    -webkit-animation: buzz 4s linear infinite;
  }

  .popup-toggle.no-q-nav {
    right: 55px;
  }

  [class^=star] {
    width: 34px;
    height: 34px;
    display: block;
    position: absolute;
    top: -5px;
    right: -2px;
}

[class^=star].star-1 {
  background: url(../../imgs/icons/sparkle_1.png);
  -webkit-animation: star-shine 4s infinite linear;
  animation: star-shine 4s infinite linear;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

@-webkit-keyframes star-shine{
  0%{opacity:0}
  15%{opacity:1}
  100%,60%{opacity:0}
}
@keyframes star-shine{
  0%{opacity:0}
  15%{opacity:1}
  100%,60%{opacity:0}
}
}

/* Buzz */
@-webkit-keyframes buzz{
  3%{
      -webkit-transform:rotate3d(0,0,1,15deg);
      transform:rotate3d(0,0,1,15deg)
  }
  6%{
      -webkit-transform:rotate3d(0,0,1,-10deg);
      transform:rotate3d(0,0,1,-10deg)
  }
  9%{
      -webkit-transform:rotate3d(0,0,1,5deg);
      transform:rotate3d(0,0,1,5deg)
  }
  12%{
      -webkit-transform:rotate3d(0,0,1,-5deg);
      transform:rotate3d(0,0,1,-5deg)
  }
  15%{
      -webkit-transform:rotate3d(0,0,1,0deg);
      transform:rotate3d(0,0,1,0deg)
  }
  100%{
      -webkit-transform:rotate3d(0,0,1,0deg);
      transform:rotate3d(0,0,1,0deg)
  }
}
@keyframes buzz{
  3%{
      -webkit-transform:rotate3d(0,0,1,15deg);
      transform:rotate3d(0,0,1,15deg)
  }
  6%{
      -webkit-transform:rotate3d(0,0,1,-10deg);
      transform:rotate3d(0,0,1,-10deg)
  }
  9%{
      -webkit-transform:rotate3d(0,0,1,5deg);
      transform:rotate3d(0,0,1,5deg)
  }
  12%{
      -webkit-transform:rotate3d(0,0,1,-5deg);
      transform:rotate3d(0,0,1,-5deg)
  }
  15%{
      -webkit-transform:rotate3d(0,0,1,0deg);
      transform:rotate3d(0,0,1,0deg)
  }
  100%{
      -webkit-transform:rotate3d(0,0,1,0deg);
      transform:rotate3d(0,0,1,0deg)
  }
}

@media screen and (max-width: 767px) {
  #goto {
    top: 76px;
  }
  nav{
    margin-top: -3px;
  }
}
@media screen and (min-width: 768px) {
  .goto-toggle,
  .popup-toggle {
    display: none;
  }
  .navbar-collapse .goto::before {
    left: 10px;
    top: -15px;
    padding: 5px 10px;
    background: #4D1C9A;
    border-radius: 5px;
  }
  .navbar-collapse .goto {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    margin: 20px auto;
    padding: 20px 10px 20px 25px;
    background: #fff;
    border-radius: 4px;
    position: relative;
    background: #150136;
    /* background: linear-gradient(
        144deg,
        rgba(53, 53, 53, 0.08) 0%,
        rgba(53, 53, 53, 0.08) 81%,
        rgba(141, 141, 141, 0.08) 81%,
        rgba(141, 141, 141, 0.08) 100%
      ),
      linear-gradient(
        199deg,
        rgba(47, 47, 47, 0.06) 0%,
        rgba(47, 47, 47, 0.06) 30%,
        rgba(230, 230, 230, 0.06) 30%,
        rgba(230, 230, 230, 0.06) 100%
      ),
      linear-gradient(
        278deg,
        rgba(108, 108, 108, 0.01) 0%,
        rgba(108, 108, 108, 0.01) 81%,
        rgba(196, 196, 196, 0.01) 81%,
        rgba(196, 196, 196, 0.01) 100%
      ),
      linear-gradient(
        97deg,
        rgba(207, 207, 207, 0.09) 0%,
        rgba(207, 207, 207, 0.09) 60%,
        rgba(137, 137, 137, 0.09) 60%,
        rgba(137, 137, 137, 0.09) 100%
      ),
      linear-gradient(
        300deg,
        rgba(186, 186, 186, 0.05) 0%,
        rgba(186, 186, 186, 0.05) 25%,
        rgba(248, 248, 248, 0.05) 25%,
        rgba(248, 248, 248, 0.05) 100%
      ),
      linear-gradient(
        276deg,
        rgba(200, 200, 200, 0.02) 0%,
        rgba(200, 200, 200, 0.02) 1%,
        rgba(135, 135, 135, 0.02) 1%,
        rgba(135, 135, 135, 0.02) 100%
      ),
      linear-gradient(
        101deg,
        rgba(8, 8, 8, 0.03) 0%,
        rgba(8, 8, 8, 0.03) 54%,
        rgba(181, 181, 181, 0.03) 54%,
        rgba(181, 181, 181, 0.03) 100%
      ),
      linear-gradient(
        18deg,
        rgba(99, 99, 99, 0.08) 0%,
        rgba(99, 99, 99, 0.08) 76%,
        rgba(214, 214, 214, 0.08) 76%,
        rgba(214, 214, 214, 0.08) 100%
      ),
      linear-gradient(
        285deg,
        rgba(34, 34, 34, 0.05) 0%,
        rgba(34, 34, 34, 0.05) 82%,
        rgba(251, 251, 251, 0.05) 82%,
        rgba(251, 251, 251, 0.05) 100%
      ),
      linear-gradient(90deg, #150136, #150136); */
  }
  .navbar-collapse .goto li a:hover,
  .navbar-collapse .goto li:hover a {
    color: #fff;
    text-decoration: none;
  }
  .navbar-collapse .goto li {
    display: inline-block;
    margin: 5px 5px 5px 0;
    border-bottom: none;
    background: #150136;
    border-radius: 7px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    padding: 0;
    position: relative;
    border: 2px solid #411783;
  }
  .goto a {
    color: #E5E4E9;
  }
  .navbar-collapse .goto li a:before {
    content: "";
    background: none;
    border-bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9px 0 9px 15px;
    border-color: transparent transparent transparent #a16bf4;
    left: -6px;
    top: 10px;
    transform: rotate(331deg);
    position: absolute;
    border-radius: 3px 0 0 3px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
  }
  .navbar-collapse .goto li:hover {
    background: #150136;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.5);
  }
  .navbar-collapse .goto li a:hover:before,
  .navbar-collapse .goto li:hover a:before {
    border-color: transparent transparent transparent #fff;
  }
  .navbar-collapse .goto a {
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    display: block;
    font-family: "Nunito Sans", sans-serif;
    font-size: 14px;
  }

  .goto li a:before {
    content: "";
    background: none;
    border-bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 15px;
    border-color: transparent transparent transparent #437b49;
    left: 0;
    top: 0;
    position: absolute;
    border-radius: 3px 0 0 3px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
  }
  .goto.sm li {
    width: 30%;
    padding: 10px 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .goto.lg li {
    width: 48.3%;
  }
}
@media screen and (min-width: 1024px) {
  .goto.lg li {
    width: 24.4%;
  }
}

/* ============== */
/* sports single icons ================== */
.nav-sports {
  width: 20px;
  height: 20px;
  display: inline-block;
}
.nav-sports[class*="icon-"] {
  border-radius: 3px;
  position: relative;
  top: 5px;
  background-size: 15px 15px;
  background-repeat: no-repeat;
  background-position: center center;
}
#primary-nav .nav-sports.icon-football,
#primary-nav .nav-sports.icon-tennis,
#primary-nav .nav-sports.icon-horse-racing{
  background-color: #a16bf4;
}
#primary-nav .nav-sports.icon-boxing,
#primary-nav .nav-sports.icon-mma,
#primary-nav .nav-sports.icon-galgos{
  background-color: #f2eff6;
}
.nav-sports.icon-football {
  background-image: url("../../imgs/icons/football.svg");
  background-color: #70c7be;
}
.nav-sports.icon-basketball {
  background-image: url("../../imgs/icons/basketball.svg");
  background-color: #70c7be;
}
.nav-sports.icon-tennis {
  background-image: url("../../imgs/icons/tennis.svg");
  background-color: #70c7be;
}
.nav-sports.icon-volleyball {
  background-image: url("../../imgs/icons/volleyball.svg");
  background-color: #70c7be;
}
.nav-sports.icon-greyhound {
  background-image: url("../../imgs/icons/dog.svg");
  background-color: #70c7be;
}
.nav-sports.icon-baseball {
  background-image: url("../../imgs/icons/baseball.svg");
  background-color: #70c7be;
}
.nav-sports.icon-rugby {
  background-image: url("../../imgs/icons/rugby.svg");
  background-color: #70c7be;
}
.nav-sports.icon-racing {
  background-image: url("../../imgs/icons/racing.svg");
  background-color: #70c7be;
}
.nav-sports.icon-boxing {
  background-image: url("../../imgs/icons/boxing.svg");
  background-color: #70c7be;
}
.nav-sports.icon-mma {
  background-image: url("../../imgs/icons/mma.svg");
  background-color: #70c7be;
}
.nav-sports.icon-horse-racing {
  background-image: url("../../imgs/icons/horse-racing.svg");
}
.nav-sports.icon-galgos {
  background-image: url("../../imgs/championships/greyhound.svg");
}
ul.sports-icons li span{margin-right: 10px;}
div.sports-icons{text-align: center;}
div.sports-icons div{
  width: 40px;
  height: 40px;
  text-indent: -999999px;
  display: inline-flex;
  filter: drop-shadow(0px 0px 1px black);
}

/* ================== */
/* payments single icons menu ================== */
.nav-payments {
  width: 20px;
  height: 20px;
  display: inline-block;
}
.nav-payments[class*="icon-"] {
  border-radius: 3px;
  background-color: #fff;
  position: relative;
  top: 5px;
  background-size: 15px 15px;
  background-repeat: no-repeat;
  background-position: center center;
}
.nav-payments.icon-paypal {
  background-image: url("../../imgs/payments/paypal-small.svg");
}
.nav-payments.icon-paysafecard {
  background-image: url("../../imgs/payments/paysafecard-small.svg");
}
.nav-payments.icon-skrill {
  background-image: url("../../imgs/payments/skrill-small.svg");
}

/* ================== */
/*icons inline ================== */
.inline-icon {
  display: block;
  width: 80px;
  height: 80px;
  padding: 12px;
  border-radius: 50%;
  text-indent: -9999px;
}
.light-bg .inline-icon {
  border: 10px solid #e8a938;
  background-color: #e8a938;
}
.dark-bg .inline-icon {
  border: 10px solid #7a9d96;
  background-color: #7a9d96;
}
.inline-icon.small {
  width: 55px;
  height: 55px;
  padding: 0px;
}
.light-bg .inline-icon.small {
  border: 6px solid #e8a938;
}
.dark-bg .inline-icon {
  border: 6px solid #e8a938;
}

/* ================== */
/* tooltip ================== */
.tooltip.show {
  opacity: 1;
}
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #333333;
  text-align: center;
  background-color: #ff9d02;
  border-radius: 0.25rem;
  font-weight: bold;
}
.tooltip.bs-tooltip-auto[x-placement^="top"] .arrow::before,
.tooltip.bs-tooltip-top .arrow::before {
  margin-left: -3px;
  content: "";
  border-width: 5px 5px 0;
  border-top-color: #ff9d02;
}
.tooltip.bs-tooltip-auto[x-placement^="right"] .arrow::before,
.tooltip.bs-tooltip-right .arrow::before {
  margin-top: -3px;
  content: "";
  border-width: 5px 5px 5px 0;
  border-right-color: #ff9d02;
}
.tooltip.bs-tooltip-auto[x-placement^="bottom"] .arrow::before,
.tooltip.bs-tooltip-bottom .arrow::before {
  margin-left: -3px;
  content: "";
  border-width: 0 5px 5px;
  border-bottom-color: #ff9d02;
}
.tooltip.bs-tooltip-auto[x-placement^="left"] .arrow::before,
.tooltip.bs-tooltip-left .arrow::before {
  right: 0;
  margin-top: -3px;
  content: "";
  border-width: 5px 0 5px 5px;
  border-left-color: #ff9d02;
}
/* ================== */
/* links-table ================== */
.heading {
  font: 600 1rem "Arial", sans-serif;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
}
.table.small-main td {
  padding: 0.5rem 0.25rem;
}
.links-table .arrows a {
  position: relative;
  transition: all 200ms linear;
}
.links-table .arrows a:hover {
  color: #2b9c78;
  text-decoration: none;
}
.links-table .arrows a:after {
  position: absolute;
  bottom: -2px;
  left: 50%;
  height: 2px;
  content: "";
  background-color: #2b9c78;
  opacity: 0;
  transition: all 200ms linear;
  transform: translateX(-50%);
  width: 100%;
}
.links-table .arrows a:hover:after {
  opacity: 1;
}
.links-table .arrows li {
  padding: 0.75rem 1.25rem;
  font: 600 1rem "Nunito", sans-serif;
}
.links-table .arrows li:not(:last-child) {
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-width: 0 0 1px 0;
}
.links-table ul.arrows li:before {
  top: 1rem;
  left: 7px;
}
@media screen and (min-width: 576px) and (max-width: 991px) {
  .links-table .arrows li {
    display: inline-block;
    width: 49%;
  }
  .links-table .arrows li:nth-child(odd) {
    margin-right: 0.5%;
  }
  .links-table .arrows li:nth-child(even) {
    margin-left: 0.5%;
  }
}
/* tables ================== */
.tandc-visit {
  font-size: 10px;
  line-height: 1.2;
  text-align: right;
  margin-bottom: 20px;
}
table {
  margin: 20px auto;
  box-shadow: 3px 3px 4px 0 #d2d5d7;
  table-layout: auto;
  border-collapse: collapse;
  position: relative;
  border-left: 2px solid #dee2e6;
}

.table thead {
  background: #150136;
  color: #fff;
  font-family: "Nunito Sans", sans-serif;
  letter-spacing: 2px;
  padding: 0 2px;
}

.table td,
.table th {
  vertical-align: middle;
}
.table tbody tr {
  border: 1px solid #683F9D;
}
.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(242, 239, 246, 0.5);
}
.table:not(:hover):not(.simple):not(.profile)
  tbody
  tr:not(:first-of-type):nth-of-type(odd) {
  background: #F2EFF6;
}
.table tbody tr:hover,
.table:not(:hover):not(.simple):not(.profile) tbody tr:first-of-type {
  background: #F2EFF6;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  cursor: default;
}
.table thead th {
  padding: 10px 0;
  font-size: 16px;
  color: #fff;
  border-bottom: none;
}
.table tr{
  margin-top: 5px;
  margin-bottom: 5px;
}
.table td {
  padding: 0.5rem 0.25rem;
  border-top: none;
}
.table {
  margin: 20px auto 40px;
}
.table:not(.live-stream):not(.apps):not(.profile),
.simple-odds {
  margin: 20px auto 5px;
  width: 90%;
}

table tbody td {
  text-align: center;
}
table tbody td:not(.terms):last-child {
  border-left: 1px solid #d2d5d7;
}
table .go-o {
  display: block;
  width: 70%;
  margin: 0 auto 15px;
  padding: 5px 0;
}
.go-o.grayed {
  background: #929d9e;
  color: #fff;
}
.go-o.grayed:hover {
  background: #7f8688;
  color: #fff;
}
table tbody tr:hover .tab-num {
  background: #545758;
}
table thead {
  background: #fff;
}
table td.terms {
  padding: 5px;
  font-size: 10px;
}

table .terms p {
  text-align: left;
  line-height: 1.4;
  margin-bottom: 0;
  color: #000;
}

th {
  color: #333;
  text-align: center;
}
.tab-num {
  display: inline-block;
  width: 30px;
  line-height: 30px;
  background: #d2d5d7;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  text-align: center;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.table .bon-on {
  color: #ff9800;
  font-weight: bold;
  font-size: 22px;
}
.table .bon-on-pay {
  color: #ff9800;
  font-weight: bold;
  font-size: 19px;
}
.table .bon-off {
  width: 40px;
  height: 40px;
}
.table .bonus-code {
  font-size: 12px;
  position: relative;
  line-height: 1;
}
.table .bonus-code > div {
  font: bold 14px "Nunito", sans-serif;
}
.table:not(:hover) tbody tr:first-of-type .go-o,
.table .go-o:hover {
  background: #ff7012;
}
.table.main .go-o {
  width: 10rem;
}
.table .go-i {
  display: block;
  font: 400 14px "Nunito Sans", sans-serif;
  margin-top: 12px;
  text-align: center;
  text-decoration: underline;
}
.table .go-i:hover {
  color: #340B8B;
  text-decoration: none;
}
.table span.go-i {
  color: #2b9c78;
}
.table .go-i:after {
  content: none;
}
.table .payout {
  font-style: italic;
}
.table .payout,
.table .mobile-yes,
.table .mobile-no {
  color: #555;
  font-size: 14px;
}
.table .payout:before,
.table .mobile-yes:before,
.table .mobile-no:before {
  content: "";
  width: 35px;
  display: block;
  margin: 0 auto;
}
.table .payout::before {
  background: url(../../imgs/icons/procent.svg) no-repeat center center;
  height: 30px;
}
.table .mobile-yes:before,
.table .mobile-no:before {
  background: url(../../imgs/icons/devices-yes.svg) no-repeat center center;
  height: 56px;
}
.table i.fa-check {
  color: #4e8a62;
}
.table i.fa-times {
  color: #2b9c78;
}
.tab-profile td {
  width: 25%;
  padding: 5px;
}
.tab-profile th {
  font: 900 15px "Nunito", sans-serif;
  padding: 8px;
}
.tab-profile .td-heading {
  color: #7f8688;
  font: 900 14px "Nunito", sans-serif;
  padding-bottom: 5px;
}
.tab-profile {
  font: 400 12px "Montserrat", sans-serif;
}

.table.bonus .arrows {
  display: table;
  margin: 0 auto;
}
.table.sport .rec-rating {
  transform: scale(0.7);
  -webkit-transform: scale(0.7);
  -moz-transform: scale(0.7);
  -o-transform: scale(0.7);
}
.table.sport .rating,
.table.sport .rating span {
  -webkit-filter: drop-shadow(0.05rem 0.09rem 0.05rem #a0a0a0);
  filter: drop-shadow(0.05rem 0.09rem 0.05rem #a0a0a0);
}
.table.sport td {
  padding: 0.25rem;
  line-height: 1.6;
}
.table.sport ul.arrows li:before {
  top: 6px;
}
.table.sport th:nth-child(4),
.table.sport td:nth-child(4) {
  width: 7rem;
}

.table.sport .leagues {
  height: 40px;
  width: 40px;
  margin: 2px 0;
}
.table.sport .icon {
  width: 35px;
  height: 35px;
}
.table.sport .icon i {
  position: relative;
  font-size: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #426a5f;
}
.table.sport ul.arrows li:before {
  left: 0;
}
.table.simple tbody td:not(:nth-last-of-type(1)) {
  border-right: 1px solid #d2d5d7;
}

@media only screen and (max-width: 575px) {
  table tbody td:not(.terms):nth-child(1) {
    border-right: none;
  }
  .table {
    box-shadow: none;
    border: none;
  }
  .table tbody tr {
    display: block;
    max-width: 95%;
    margin: 0 auto;
    box-shadow: 0 0 2px #426a5f;
  }
  .table tbody tr:not(:last-child) {
    margin-bottom: 1.5rem;
  }
  .table:not(.simple):not(.profile) tbody td:last-child {
    width: 100%;
  }
  table tbody td:not(.terms):last-child {
    border-left: none;
  }
  .table tbody td {
    border-right: none;
  }
  .table:not(.sport):not(.simple):not(.profile) tbody td:nth-child(2),
  .table.sport tbody td:not(.terms):nth-child(1) {
    background: #bbbbbb;
  }
  .table.bonus td:nth-child(2) {
    background: none;
  }
  .table td:nth-of-type(3),
  .table td:nth-of-type(4),
  .table td:nth-of-type(5) {
    border-bottom: 1px solid #dee2e6;
  }
  .table.main td:nth-child(4),
  table.main td:nth-child(5) {
    width: 49%;
  }
  .table.main.apps td:nth-child(4),
  table.main.apps td:nth-child(5),
  .table.main.sport td:nth-child(4),
  table.main.sport td:nth-child(5){
    width: 100%;
  }
  .table .company-120[class*="bg-"],
  .table .company-100[class*="bg-"] {
    box-shadow: 0 0 10px #e9ebec;
  }
  .table .rec-rating {
    margin: 10px auto 0px;
  }
  .table .sports-icons {
    margin: 10px auto;
  }
  .table.sport .rec-rating {
    margin: 0 auto;
  }
  .table.sport td:nth-child(4) {
    width: 100%;
  }
  .table.sport .leagues {
    width: 40px;
  }
  .fix {
    width: 100% !important;
  }
}

@media only screen and (min-width: 576px) {
  .table .sports-icons {
    max-width: 140px;
    margin: 0 auto;
  }
  .table .sports-icons li {
    width: 20%;
  }
  .table .company-120,
  table .company-120 {
    box-shadow: 2px 2px 3px 0 #a5a7a9;
  }

  .table {
    border: 1px solid #d2d5d7;
    box-shadow: 3px 3px 4px 0 #d2d5d7;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .table [class*="mobile-"] {
    display: inline-block;
    width: 25px;
    height: 20px;
  }
}
@media only screen and (min-width: 576px) {
  .table.main tbody td:last-child {
    width: unset;
  }
  .table.main tbody td:last-of-type:not(.terms) {
    font-size: 14px;
    line-height: 1;
    color: #969696;
  }
  table.main tr td{
    border-top: 1px solid #62409E;
    border-bottom: 1px solid #62409E;
  }
  table.main tr td:first-of-type{
    border-left: 1px solid #62409E;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
  }
  
  table.main tr td:last-of-type{
    border-right: 1px solid #62409E;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  table.main thead tr th:first-of-type{
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
  }
  
  table.main thead tr th:last-of-type{
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  table.main .bet365-row td{
    border-bottom: none;
  }
  table.main .bet365-row td:first-of-type{
    border-bottom-left-radius: 0px;
  }
  table.main .bet365-row td:last-of-type{
    border-bottom-right-radius: 0px;
  }
  table.main tr td.terms{
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
    border-top: none;
  }
  table.main tr.terms-row{
    position: relative;
    top: -6px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 991px) {
  .table.bonus .arrows {
    width: 75%;
  }
  .table.bonus td:last-child {
    width: 10rem;
  }
}
@media only screen and (max-width: 991px) {
  .table .d-lg-none .rec-rating {
    -webkit-filter: drop-shadow(1px 1px 2px #ececec);
    filter: drop-shadow(1px 1px 2px #a0a0a0);
    transform: scale(0.7);
  }
}
@media only screen and (max-width: 1199px) {
  .table .d-xl-none .rec-rating {
    -webkit-filter: drop-shadow(1px 1px 2px #ececec);
    filter: drop-shadow(1px 1px 2px #a0a0a0);
    transform: scale(0.7);
  }
  .table .go-o {
    width: 10rem;
  }
}
@media only screen and (min-width: 992px) {
  .table.bonus td:last-child {
    width: 15rem;
  }
  .table.sport {
    width: 90%;
  }
  .tandc-visit.sport {
    width: 95%;
  }
  .table.sport ul.arrows {
    width: 300px;
  }

  table.main .rec-rating.top-rev-v {
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
    margin: 5px auto;
  }
}
/* ============== */
/* table accordion ================== */
/* .tableCollapsed .arrow{
    position: absolute;
    left: 50%;
    z-index: 10;
    color: #e8a938;
    padding-top: 25px;
    transition: all .2s ease;
} */
.tableCollapsed .ver-header thead {
  cursor: pointer;
  position: relative;
}
.tableCollapsed .ver-header thead:after {
  position: absolute;
  content: "\f107";
  font: 900 2.5em "Font Awesome 5 Free";
  color: #e8a938;
  left: 50%;
  bottom: -20px;
  z-index: 10;
  color: #e8a938;
  padding-top: 25px;
  transition: all 0.2s ease;
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}
.tableCollapsed .ver-header.rotate-arrow thead:after {
  content: "\f106";
  bottom: 80%;
}
.table.ver-header {
  border-bottom: none;
}
.table.ver-header tr {
  border-width: 3px;
}
.table.ver-header tbody th {
  color: #334433;
  border-right: 1px solid #334433;
}
.table.ver-header tbody td div:nth-child(odd) {
  color: #e8a938;
}
.table.responsive td {
  white-space: nowrap;
}
.table.profile {
  width: 75%;
}
.table.profile td {
  padding: 0.25rem 0.5rem;
  text-align: left;
  border-top: 1px solid #dee2e6;
}
.table.profile tbody th {
  text-align: left;
  white-space: nowrap;
  padding: 0.4rem;
}
.table.profile tbody tr {
  border: none;
}
@media screen and (max-width: 575px) {
  .table.ver-header td:nth-child(2) {
    background: none;
  }
  .table.responsive thead th {
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .table.ver-header {
    margin: 0px auto 15px;
  }
}
/* review element ==============*/
.top-rev-v {
  box-shadow: 3px 3px 4px 0 #d2d5d7;
  margin: 20px auto 10px;
  border-radius: 4px;
  padding: 10px 0;
  background: #fff;
  border: 1px solid #d2d5d7;
}
.top-rev-v .slider img {
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  opacity: 0.8;
}
.top-rev-v .slider a {
  position: relative;
  border-radius: 5px;
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
}
.top-rev-v .slider a:hover {
  background: transparent;
}
.top-rev-v .slider a:after {
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  opacity: 1;
  position: absolute;
  content: "\f00e";
  font: bold 2.5rem "Font Awesome 5 Free";
  color: #fff;
  text-align: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}
.top-rev-v .slider a:hover:after {
  opacity: 0;
}
.top-rev-v .slider a:hover img {
  opacity: 1;
}
.top-rev-v .cta,
.top-rev-v .features {
  background: #efeded;
  border-radius: 4px;
}
.top-rev-v .brand {
  text-align: center;
}
.top-rev-v .rating {
  margin: 5px auto;
  transform: scale(0.9);
}
.top-rev-v .cta-b {
  width: 14rem;
  margin: 0 auto;
}
.top-rev-v .cta-b.n-ver {
  width: 100%;
}
.top-rev-v .cta-b a {
  color: #fff;
  padding: 5px 0;
  display: block;
  text-align: center;
}
.top-rev-v .cta-b span {
  position: relative;
  left: 8px;
  text-transform: uppercase;
}
.top-rev-v .cta-b:hover a {
  background: #ff9d02;
}
.top-rev-v .bon-on {
  text-align: center;
  margin: 8px auto;
  font-style: italic;
  font-weight: bold;
  vertical-align: middle;
  font-size: 16px;
  color: #333;
}
.top-rev-v .not-ver {
  text-align: center;
  margin: 5px auto;
}
.top-rev-v .not-ver span {
  position: relative;
  font-style: italic;
  font-weight: bold;
  vertical-align: middle;
  font-size: 22px;
  color: #ff9800;
}
.top-rev-v .bon-on span:nth-child(2) {
  position: relative;
}
.top-rev-v .bon-on span:nth-child(2):after,
.top-rev-v .not-ver span:after {
  content: "";
  position: absolute;
  right: -16px;
  background: url("../../imgs/icons/curved-arrow.svg") no-repeat;
  width: 25px;
  height: 25px;
  display: inline-block;
  -webkit-transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  transform: scaleX(-1);
  filter: FlipH;
  -ms-filter: "FlipH";
}
.top-rev-v .bon-on span:nth-child(2):after {
  top: 15px;
}
.top-rev-v .not-ver span:after {
  top: 10px;
}
.top-rev-v .bon-on span:nth-child(2) {
  color: #ff9800;
  font: bold italic 30px "Nunito", sans-serif;
  vertical-align: middle;
}
.top-rev-v .features ul {
  padding: 0;
  margin: 0.5rem auto;
}
.top-rev-v .features ul li {
  font: italic 16px "Montserrat", sans-serif;
  margin-bottom: 0.5rem;
}
.top-rev-v .regs ul {
  text-align: center;
  margin-bottom: 0;
}
.top-rev-v .regs li {
  max-width: 47%;
}
.top-rev-v .regs [class*="reg-"] {
  width: 70px;
  height: 25px;
}
.top-rev-v .reg-kdep {
  transform: scale(1.2);
  position: relative;
  left: 15px;
}
.top-rev-v .regs .title {
  color: #426a5f;
  text-align: center;
  font: bold 15px "Nunito", sans-serif;
  margin: 10px auto;
}
.top-rev-v .banking ul {
  margin: 0.5rem auto 1.5rem auto;
}
.top-rev-v .banking li:first-child {
  color: #426a5f;
  text-align: center;
  font: bold 15px "Nunito", sans-serif;
}
.top-rev-v .banking li:not(:first-child) {
  background: #ededed;
  padding: 2px;
  border-radius: 3px;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.4);
}
.top-rev-v .banking [class*="pay-"] {
  width: 50px;
  height: 20px;
  text-indent: 0;
  vertical-align: middle;
}

.rev-rat-block {
  padding: 10px 0 10px 10px;
  background: #efeded;
  border-radius: 4px;
  box-shadow: 3px 3px 4px 0 #d2d5d7;
  text-align: center;
  margin-bottom: 40px;
  border: 1px solid #d2d5d7;
}
.rev-rat-block .rev-rat-box {
  background: #fff;
  padding: 10px;
  margin-right: 10px;
}
.rev-rat-block .title-num {
  margin-bottom: 3px;
  border-bottom: 1px solid #d2d5d7;
}
.rev-rat-block span.name {
  text-align: left;
  font-style: italic;
  color: #1997c7;
  font-family: "Montserrat", sans-serif;
}
.rev-rat-block span.value {
  text-align: right;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
}
.rev-rat-block span {
  margin-bottom: 14px;
  font-weight: bold;
  line-height: 1.2;
  height: 25px;
}
@media screen and (max-width: 575px) {
  .top-rev-v .banking li:nth-child(1) {
    display: block;
    margin-bottom: 1rem;
  }
  .top-rev-v .banking li:not(:first-child) {
    width: 46%;
    text-align: center;
    margin-bottom: 0.25rem;
  }
  .rev-rat-block .col-sm-6:not(:last-child) {
    margin-bottom: 1rem;
  }
  .top-rev-v .bon-on span:nth-child(2) {
    display: block;
  }
  .top-rev-v .bon-on span:nth-child(2):after {
    right: auto;
  }
  .top-rev-v .not-ver span {
    font-size: 18px;
  }
}
@media screen and (min-width: 576px) and (max-width: 767px) {
  .top-rev-v .cta-b {
    width: 65%;
    margin: 0 auto;
  }
  .rev-rat-block .col-sm-6:nth-child(-n + 4) {
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .top-rev-v .cta {
    padding-bottom: 1rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .top-rev-v .slider .col-md-4:nth-child(1) {
    padding-left: 10px;
  }
  .top-rev-v .slider .col-md-4:nth-child(2) {
    padding: 0 5px;
  }

  .top-rev-v .slider .col-md-4:nth-child(3) {
    padding-right: 10px;
  }
  .rev-rat-block .col-md-4:nth-child(-n + 3) {
    margin-bottom: 1rem;
  }
}
@media screen and (min-width: 992px) and (max-width: 1024px) {
  .top-rev-v .banking.stay-right ul {
    margin: 0.5rem auto 0.5rem;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .top-rev-v .banking {
    width: 1200px;
    max-width: 100%;
  }
  .top-rev-v .banking:not(.stay-right) {
    left: 50%;
    transform: translate(-40%, 15%);
  }
}
@media screen and (min-width: 992px) {
  .top-rev-v hr {
    margin: 5px 0 10px;
    background: #d2d5d7;
  }
}
@media screen and (min-width: 1200px) {
  .top-rev-v .banking ul {
    margin: 0.5rem auto;
  }
}
/*==============*/
/* brand slider / embed video + img */
#imgGallery .modal-dialog,
#embedMedia .modal-dialog {
  width: 800px;
  max-width: 90%;
}
#imgGallery .modal-content,
#embedMedia .modal-content {
  background-color: transparent;
  background-clip: unset;
  border: none;
  position: absolute;
  top: 2rem;
}
#imgGallery .modal-body,
#embedMedia .modal-body {
  padding: 0;
}
#imgGallery .modal-header .close,
#embedMedia .modal-header .close {
  margin: 1rem auto 0;
}
#imgGallery .close,
#embedMedia .close {
  float: none;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  color: #ff9d02;
  text-shadow: none;
  opacity: 1;
  outline: 0;
}
#imgGallery .carousel-indicators {
  bottom: -45px;
}
#imgGallery .carousel-indicators li {
  background-color: #ff9d02;
}
#imgGallery [class*="carousel-control"] {
  bottom: -35px;
  width: 30px;
  height: 30px;
  top: auto;
}
@media (max-width: 575px) {
  #imgGallery .modal-dialog,
  #embedMedia .modal-dialog {
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
  }
}
@media (max-width: 850px) {
  #imgGallery .modal-dialog,
  #embedMedia .modal-dialog {
    max-width: 80%;
  }
}
/* =============*/
/* single slider */
#simpleSlider .carousel-indicators {
  bottom: -40px;
}
#simpleSlider .carousel-indicators li {
  background-color: #ff9d02;
}
/* =============*/
/* single modal */
figure.overlay {
  background: #000;
  position: relative;
}
figure.overlay:after {
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  opacity: 1;
  position: absolute;
  content: "\f144";
  font: bold 3.5rem "Font Awesome 5 Free";
  color: #fff;
  text-align: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}
figure.overlay picture {
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
figure.overlay:hover {
  cursor: pointer;
}
figure.overlay:hover picture {
  opacity: 1;
}
figure.overlay:hover:after {
  opacity: 0;
}
/* =============*/
/* team boxes */
.team-box {
  position: relative;
  transition: all 0.2s ease-out 0s;
  text-align: center;
}
.team-box .box-content {
  top: 45%;
  opacity: 0;
  z-index: 1;
  -webkit-transform: translate(10%, -30%);
  transform: translate(10%, -30%);
  transition: all 0.2s ease-out 0s;
}
.team-box:after {
  content: "";
  display: block;
  background: #000;
  top: 20px;
  bottom: 20px;
  opacity: 0;
  transform: rotate3d(-1, 1, 0, 100deg);
  transition: all 0.4s ease-in-out 0s;
}
.team-box .box-content,
.team-box:after {
  position: absolute;
  left: 20px;
  right: 20px;
  border-radius: 5px;
}
.team-box .title {
  display: block;
  font-size: 16px;
  color: #fff;
  margin: 8px 0;
  text-transform: uppercase;
  font-weight: 600;
}
.team-box .post {
  display: block;
  font-size: 13px;
  color: #fff;
  margin-bottom: -10px;
  text-transform: capitalize;
  letter-spacing: 1px;
  background: rgba(158, 158, 158, 0.8);
  padding: 5px;
}
.team-box .post [class*="logo-"] {
  width: 60px;
  height: 40px;
}
.team-box:hover:after {
  opacity: 0.7;
  transform: rotate3d(0, 0, 0, 0deg);
}
.team-box:hover .box-content {
  opacity: 1;
  transform: translate(0, -50%);
  transition-delay: 0.2s;
}
.team-box .go-o {
  padding: 0.5rem 2rem;
  color: #fff;
}
.team-box .go-o:hover {
  background: #f8f8f8;
  color: #426a5f;
}
@media screen and (max-width: 575px) {
  .team-box .box-content,
  .team-box:after {
    position: relative;
    left: 0;
    right: 0;
    border-radius: 5px;
    transform: translate(0, 0);
    opacity: 1;
  }
  .team-box .title {
    color: #426a5f;
  }
  .team-box:hover .box-content {
    transform: translate(0, 0);
  }
}
@media screen and (min-width: 576px) and (max-width: 991px) {
  .team-box {
    max-width: 370px;
    margin: 0 auto;
  }
}
/* =============*/
/* rating stars */
.rating,
.rating > span {
  display: block;
  background: url("../../imgs/icons/stars.svg") no-repeat;
}
.rating {
  margin: 0 auto;
  background-position: 0 0;
  width: 125px;
}
.rating > span {
  width: 0;
  background-position: 0 -30px;
  text-indent: -9999px;
}
.rec-rating {
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
/* mobile version */
/* [class*="mobile-"]{
	display: block;
	text-indent: -9999px;
    text-align: left;
    background-repeat: no-repeat!important;
    background-size: contain!important;
    background-position: center center!important;
    width: 40px;
    height: 40px;
    margin: 0 auto;
 }
 .mobile-yes{background: url('../../imgs/icons/devices-yes.svg');}
 .mobile-no{background: url('../../imgs/icons/devices-no.svg'); } */

/* brands ================== */
/* SVG Brands */
.bg-betway,
.bg-planetwin365,
.bg-bwin {
  background: #000;
}
.bg-1xbet {
  background: #195685;
}
.bg-20bet, .bg-20bet-casino{
  background: #0d1d34;
}
.bg-rivalo, .bg-rivalo-casino{
  background: #003366;
}
.bg-1xbet-casino {
  background: #195685;
}
.bg-22bet {
  background: #052e32;
}
.bg-golden90 {
  background: #ffffff;
}
.bg-22bet-casino {
  background: #052e32;
}
.bg-melbet {
  background: #363c3f;
}
.bg-melbet-casino {
  background: #363c3f;
}
.bg-bet365 {
  background: #027b5b;
}
.bg-bet365-casino {
  background: #027b5b;
}
.bg-betfair {
  background: linear-gradient(45deg, #ffbc00, #ff9c00);
  background: -webkit-linear-gradient(45deg, #ffbc00, #ff9c00);
}
.bg-william-hill {
  background: #01143c;
}
.bg-bet-at-home,
.bg-winabet365 {
  background: #ffffff;
}
.bg-unibet {
  background: #147b45;
}
.bg-betsson {
  background: #f60;
}
.bg-1win {
  background: #1b243a;
}
.bg-pin-up,
.bg-pin-up-casino {
  background: #3d3d3d;
}
.bg-1win-casino {
  background: #1b243a;
}
.bg-mostbet {
  background: #09509d;
}
.bg-mostbet-casino {
  background: #09509d;
}
.bg-digicert {
  background: #fff;
}
.bg-caliente, .bg-caliente-casino{
  background: #000;
}
.bg-letsencrypt {
  background: #fff;
}
.bg-gamebookers {
  background: white;
}
.bg-etopaz {
  background: #222222;
}
.bg-marathonbet {
  background: #122546;
}
.bg-parimatch {
  background: #000;
}
.bg-betcity {
  background: #3960ac;
}

[class*="logo-"] {
  display: block;
  text-indent: -9999px;
  text-align: left;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  background-position: center center !important;
  width: 100%;
  height: 100%;
}

.logo-1xbet,
.logo-1xbet-casino {
  background: url("../../imgs/brands/1xbet.svg");
}
.logo-golden90 {
  background: url("../../imgs/brands/golden90.svg");
}
.logo-22bet,
.logo-22bet-casino {
  background: url("../../imgs/brands/22bet.svg");
}
.logo-rivalo,
.logo-rivalo-casino {
  background: url("../../imgs/brands/rivalo.svg");
}
.logo-melbet,
.logo-melbet-casino {
  background: url("../../imgs/brands/melbet.svg");
}
.logo-gamebookers {
  background: url("../../imgs/brands/gamebookers.svg");
}
.logo-betway {
  background: url("../../imgs/brands/betway.svg");
}
.logo-bet365,
.logo-bet365-casino {
  background: url("../../imgs/brands/bet365.svg");
}
.logo-caliente, .logo-caliente-casino {
  background: url("../../imgs/brands/caliente.svg");
}
.logo-20bet, .logo-20bet-casino {
  background: url("../../imgs/brands/20bet.svg");
}
.logo-betfair {
  background: url("../../imgs/brands/betfair.svg");
}
.logo-planetwin365 {
  background: url("../../imgs/brands/planetwin365.svg");
}
.logo-william-hill {
  background: url("../../imgs/brands/william-hill.svg");
}
.logo-bet-at-home {
  background: url("../../imgs/brands/bet-at-home.svg");
}
.logo-unibet {
  background: url("../../imgs/brands/unibet.svg");
}
.logo-betsson {
  background: url("../../imgs/brands/betsson.svg");
}
.logo-bwin {
  background: url("../../imgs/brands/bwin.svg");
}
.logo-winabet365 {
  background: url("../../imgs/brands/winabet365.svg");
}
.logo-1win,
.logo-1win-casino {
  background: url("../../imgs/brands/1win.svg");
}
.logo-pin-up,
.logo-pin-up-casino {
  background: url("../../imgs/brands/pin-up.svg");
}
.logo-mostbet,
.logo-mostbet-casino {
  background: url("../../imgs/brands/mostbet.svg");
}
.logo-digicert {
  background: url("../../imgs/brands/digicert.svg");
}
.logo-letsencrypt {
  background: url("../../imgs/brands/letsencrypt.svg");
}
.logo-etopaz {
  background: url("../../imgs/brands/etopaz.svg");
}
.logo-marathonbet {
  background: url("../../imgs/brands/marathonbet.svg");
}
.logo-parimatch {
  background: url("../../imgs/brands/parimatch.svg");
}
.logo-betcity {
  background: url("../../imgs/brands/betcity.svg");
}

[class*="company-"][class*="bg-"] {
  margin: 0 auto;
  padding: 5px;
  border-radius: 4px;
}
.company-100[class*="bg-"] {
  width: 100px;
  height: 40px;
}
.company-120[class*="bg-"] {
  width: 120px;
  height: 50px;
}
.company-140[class*="bg-"] {
  width: 140px;
  height: 70px;
}

/* ================== */
/* sports leagues ================== */
.leagues.logo-atp {
  background: url("../../imgs/championships/atp.svg");
}
.leagues.logo-atp-masters {
  background: url("../../imgs/championships/atp-masters.svg");
}
.leagues.logo-itf {
  background: url("../../imgs/championships/itf.svg");
}
.leagues.logo-utr {
  background: url("../../imgs/championships/utr.svg");
}
.leagues.logo-champions-league {
  background: url("../../imgs/championships/champions-league.svg");
}
.leagues.logo-uefa-europa{
  background: url("../../imgs/championships/uefa-europa.svg");
}
.leagues.logo-uefa-europa {
  background: url("../../imgs/championships/uefa-europa.svg");
}
.leagues.logo-liga-mx {
  background: url("../../imgs/championships/liga-mx.svg");
}
.leagues.logo-fifa-wc-2022 {
  background: url("../../imgs/championships/fifa-wc-2022.svg");
}
.leagues.logo-premier-league {
  background: url("../../imgs/championships/premier-league.svg");
}
.leagues.logo-wimbledon {
  background: url("../../imgs/championships/wimbledon.svg");
}
.leagues.logo-us-open {
  background: url("../../imgs/championships/us-open.svg");
}
.leagues.logo-roland-garros {
  background: url("../../imgs/championships/roland-garros.svg");
}
.leagues.logo-australian-open {
  background: url("../../imgs/championships/australian-open.svg");
}
.leagues.logo-miami-open {
  background: url("../../imgs/championships/miami-open.svg");
}
.leagues.logo-davis-cup {
  background: url("../../imgs/championships/davis-cup.svg");
}
.leagues.logo-europa-league {
  background: url("../../imgs/championships/europa-league.svg");
}
.leagues.logo-azer-league {
  background: url("../../imgs/championships/azer-premier-league.svg");
}
.leagues.logo-la-liga {
  background: url("../../imgs/championships/la-liga.svg");
}
.leagues.logo-ligue-1 {
  background: url("../../imgs/championships/ligue-1.svg");
}
.leagues.logo-serie-a {
  background: url("../../imgs/championships/serie-a.svg");
}
.leagues.logo-copa-del-rey {
  background: url("../../imgs/championships/copa-del-rey.svg");
}
.leagues.logo-euro-2020 {
  background: url("../../imgs/championships/euro2020.svg");
}
.leagues.logo-bundesliga {
  background: url("../../imgs/championships/bundesliga.svg");
}
.leagues.logo-fa-cup {
  background: url("../../imgs/championships/fa-cup.svg");
}
.leagues.logo-motogp {
  background: url("../../imgs/championships/motogp.svg");
}
.leagues.logo-formula1 {
  background: url("../../imgs/championships/formula1.svg");
}
.leagues.logo-nba {
  background: url("../../imgs/championships/nba.svg");
}
.leagues.logo-euroleague {
  background: url("../../imgs/championships/euroleague.svg");
}
.leagues.logo-fiba-europe-cup {
  background: url("../../imgs/championships/fiba-europe-cup.svg");
}
.leagues.logo-basketball-champions-league {
  background: url("../../imgs/championships/basketball-champions-league.svg");
}
.leagues.logo-spanish-basketball-league {
  background: url("../../imgs/championships/spanish-basketball-league.svg");
}
.leagues.logo-turskish-league {
  background: url("../../imgs/championships/turkish-league.svg");
}
.leagues.logo-wta {
  background: url("../../imgs/championships/wta.svg");
}
.leagues.logo-usopen {
  background: url("../../imgs/championships/usopen.svg");
}
.leagues.logo-cs-go {
  background: url("../../imgs/championships/cs-go.svg");
}
.leagues.logo-uefa-super-cup {
  background: url("../../imgs/championships/uefa-super-cup.svg");
}
.leagues.logo-volleyball-world-league {
  background: url("../../imgs/championships/volleyball-world-league.png");
}
.leagues.logo-volleyball-world-cup {
  background: url("../../imgs/championships/volleyball-world-cup.svg");
}
.leagues.logo-olympic-games {
  background: url("../../imgs/championships/olympic-games.svg");
}
.leagues.logo-volleyball-champions-league {
  background: url("../../imgs/championships/volleyball-champions-league.svg");
}
.leagues.logo-ufc-fight-night {
  background: url("../../imgs/championships/ufc-fight-night.svg");
}
.leagues.logo-ufc {
  background: url("../../imgs/championships/ufc.svg");
}
.leagues.logo-federacion-internacional-de-boxeo {
  background: url("https://www.lajornadaguerrero.com.mx/imgs/championships/federacion-internacional-de-boxeo.svg");
}
.leagues.logo-ibf {
  background: url("../../imgs/championships/ibf.svg");
}
.leagues.logo-wbc {
  background: url("../../imgs/championships/wbc.png");
}
.leagues.logo-wbo {
  background: url("../../imgs/championships/wbo.png");
}
.leagues.logo-wba {
  background: url("../../imgs/championships/wba.png");
}
.leagues.logo-wba {background: url("../../imgs/championships/wba.png");}
.leagues.logo-kentucky-derby {background: url("../../imgs/championships/kentucky-derby.svg");}
.leagues.logo-horse-racing {background: url("../../imgs/championships/horse-racing.svg");}
.leagues.logo-horse-racing-usa {background: url("../../imgs/championships/horse-racing-usa.svg");}
.leagues.logo-copa-mundial-del-hipismo {background: url("../../imgs/championships/copa-mundial-del-hipismo.png");}
.leagues.logo-carreras-de-galgos {background: url("../../imgs/championships/greyhound.svg");}
.leagues.logo-carreras-de-galgos-au {background: url("../../imgs/championships/greyhound-au.svg");}
.leagues.logo-carreras-de-galgos-uk {background: url("../../imgs/championships/greyhound-uk.svg");}
.leagues.logo-feg {background: url("../../imgs/championships/feg.png");}

.sport-league.atp {
  background: url("../../imgs/championships/atp.svg") no-repeat center;
  width: 100%;
  height: 57px;
}
.sport-league.la-liga {
  background: url("../../imgs/championships/la-liga.svg") no-repeat center;
  width: 100%;
  height: 100px;
}
.sport-league.nba {
  background: url("../../imgs/championships/nba.svg") no-repeat center;
  height: 90px;
  width: 100%;
}
.sport-league.nfl {
  background: url("../../imgs/championships/nfl.svg") no-repeat center;
  height: 80px;
  width: 100%;
}
.sport-league.liga-mx {
  background: url("../../imgs/championships/liga-mx.svg") no-repeat center;
  height: 60px;
  width: 100%;
}
.sport-league.football {
  background: url("../../imgs/icons/football.svg") no-repeat;
  width: 65px;
  height: 65px;
}
.sport-league.basketball {
  background: url("../../imgs/icons/basketball.svg") no-repeat;
  width: 65px;
  height: 65px;
}
.sport-league.tennis {
  background: url("../../imgs/icons/tennis.svg") no-repeat;
  width: 65px;
  height: 65px;
}
.sport-league.rugby {
  background: url("../../imgs/icons/rugby.svg") no-repeat;
  width: 65px;
  height: 65px;
}
.sport-league.horse-racing {
  background: url("../../imgs/icons/horse.svg") no-repeat;
  width: 65px;
  height: 65px;
}
.sport-league.e-sports {
  background: url("../../imgs/icons/e-sports.svg") no-repeat;
  width: 65px;
  height: 65px;
}
.sport-league.baseball {
  background: url("../../imgs/icons/baseball.svg") no-repeat;
  width: 65px;
  height: 65px;
}
.sport-league.golf {
  background: url("../../imgs/icons/golf.svg") no-repeat;
  width: 65px;
  height: 65px;
}

.sport-league {
  display: inline-block;
  text-indent: -9999px;
}
.leagues {
  width: 50px;
  height: 50px;
  display: inline-block;
  text-indent: -9999px;
}
.top3-events .leagues[class*="logo-"] {
  width: 45px;
  height: 45px;
}
/* .top3-events .leagues.logo-atp {
  width: 65px;
  height: 65px;
  filter: invert(1);
} */

.top3-events .icon-inline{
  background: #fff;
  border-radius: 50%;
  padding: 3%;
}

.top3-events .go-o{
  top: 50%;
  transform: translatey(-50%);
  position: relative;
}
.top3-events .tandc-visit{font-size: 11px;}
@media only screen and (min-width: 992px){
.top3-events .card-desc{min-height: 170px;}
.top3-events .card-desc.no-event-logo{min-height: 100px;}
}
.leagues[class*="logo-"] {
  display: inline-block;
  text-indent: -9999px;
  text-align: left;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  width: 100%;
  height: 100%;
}

/*================== */
/* Payment icons ================== */
[class*="pay-"] {
  display: inline-block;
  text-indent: -9999px;
  text-align: left;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  background-position: center center !important;
  width: 100%;
  height: 100%;
}

.pay-apple-pay {
  background: url("../../imgs/payments/apple-pay.svg");
}
.pay-bank-transfer {
  background: url("../../imgs/payments/bank-transfer.svg");
}
.pay-emanat {
  background: url("../../imgs/payments/emanat.svg");
}
.pay-bitcoin {
  background: url("../../imgs/payments/bitcoin.svg");
}
.pay-credit-card {
  background: url("../../imgs/payments/credit-card.svg");
}
.pay-google-pay {
  background: url("../../imgs/payments/google-pay.svg");
}
.pay-mastercard {
  background: url("../../imgs/payments/mastercard.svg");
  height: 55px;
}
.pay-store {
  background: url("../../imgs/payments/store.svg");
  height: 55px;
}
.pay-spei {
  background: url("../../imgs/payments/spei.svg");
  height: 55px;
}
.pay-trustly {
  background: url("../../imgs/payments/trustly.svg");
  height: 40px;
}
.pay-swish {
  background: url("../../imgs/payments/swish.svg");
  height: 40px;
}
.pay-maestro {
  background: url("../../imgs/payments/maestro.svg");
  height: 55px;
}
.pay-zimpler {
  background: url("../../imgs/payments/zimpler.svg");
}
.pay-neteller {
  background: url("../../imgs/payments/neteller.svg");
}
.pay-paypal {
  background: url("../../imgs/payments/paypal.svg");
}
.pay-paysafecard {
  background: url("../../imgs/payments/paysafecard.svg");
}
.pay-revolut {
  background: url("../../imgs/payments/revolut.svg");
}
.pay-skrill {
  background: url("../../imgs/payments/skrill.svg");
}
.pay-sporopay {
  background: url("../../imgs/payments/sporopay.svg");
}
.pay-visa {
  background: url("../../imgs/payments/visa.svg");
}
.pay-ethereum {
  background: url("../../imgs/payments/ethereum.svg");
}
.pay-ecopayz {
  background: url("../../imgs/payments/ecopayz.svg");
}
.pay-web-money {
  background: url("../../imgs/payments/web-money.svg");
}
.pay-sobflous {
  background: url("../../imgs/payments/sobflous.svg");
}
.pay-runpay {
  background: url("../../imgs/payments/runpay.svg");
}
.pay-viamobile {
  background: url("../../imgs/payments/viamobile.svg");
}
.pay-winacash {
  background: url("../../imgs/payments/winacash.svg");
}
.pay-paymee {
  background: url("../../imgs/payments/paymee.svg");
}
.pay-jeton-wallet {
  background: url("../../imgs/payments/jeton-wallet.svg");
}
.pay-sticpay {
  background: url("../../imgs/payments/sticpay.svg");
}
.pay-litecoin {
  background: url("../../imgs/payments/litecoin.svg");
}
.pay-piastrix {
  background: url("../../imgs/payments/piastrix.svg");
}
.pay-perfect-money {
  background: url("../../imgs/payments/perfect-money.svg");
}
.pay-oxxo {
  background: url("../../imgs/payments/oxxo.svg");
}

/*================== */
/* Regulators icons ================== */
[class*="reg-"] {
  display: inline-block;
  text-align: left;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  background-position: center center !important;
  width: 100%;
  height: 100%;
}
.reg-segob {
  background: url("../../imgs/regulation/segob.svg");
}
.reg-curacao {
  background: url("../../imgs/regulation/curacao.svg");
}
.reg-curacao-egaming {
  background: url("../../imgs/regulation/curacao-egaming.svg");
}
.reg-egba {
  background: url("../../imgs/regulation/egba.svg");
}
.reg-essa {
  background: url("../../imgs/regulation/essa.svg");
}
.reg-kdep {
  background: url("../../imgs/regulation/kulturdepartementet.svg");
}
.reg-mga, .reg-mga-small {
  background: var(--logo-mga);
}
.reg-ibas {
  background: url("../../imgs/regulation/ibas.svg");
}
.reg-wla {
  background: url("../../imgs/regulation/wla.svg");
}
.reg-age {
  background: url("../../imgs/regulation/age.svg");
  transform: scale(1.2);
}
.reg-gamblingcommission {
  background: url("../../imgs/regulation/gamblingcommission.svg");
}
.reg-ecogra {
  background: url("../../imgs/regulation/ecogra.svg");
}
.reg-svenska-spel {
  background: url("../../imgs/regulation/svenska-spel.svg");
}
.reg-svenska-spel {
  background: url("../../imgs/regulation/segob.svg");
}

/*================== */
/* sports sprites ================== */
.sports {
  background: url("../../imgs/icons/sports.svg") no-repeat;
  width: 30px;
  height: 30px;
  display: inline-block;
  text-indent: -9999px;
  margin-right: 5px;
}
.sports.baseball {
  background-position: 0 0;
}
.sports.basketball {
  background-position: 0 -50px;
}
.sports.boxing {
  background-position: 0 -100px;
}
.sports.esports {
  background-position: 0 -150px;
}
.sports.football {
  background-position: 0 -200px;
}
.sports.golf {
  background-position: 0 -250px;
}
.sports.hockey {
  background-position: 0 -300px;
}
.sports.racing {
  background-position: 0 -350px;
}
.sports.rugby {
  background-position: 0 -400px;
}
.sports.snooker {
  background-position: 0 -450px;
}
.sports.tennis {
  background-position: 0 -500px;
}
.sports.volleyball {
  background-position: 0 -550px;
}

/*================== */
/* sports leagues ================== */
.leagues {
  width: 50px;
  height: 50px;
  display: inline-block;
  text-indent: -9999px;
}
.leagues.atp {
  background: url("../../imgs/championships/atp.svg") no-repeat;
  background-size: 50px 50px;
}
.leagues.champions-league {
  background: url("../../imgs/championships/champions-league.svg") no-repeat;
  background-size: 50px 50px;
}
.leagues.premier-league {
  background: url("../../imgs/championships/premier-league.svg") no-repeat;
  background-size: 50px 50px;
}
.leagues.la-liga {
  background: url("../../imgs/championships/la-liga.svg") no-repeat;
  background-size: 50px 50px;
}
.leagues.ligue-1 {
  background: url("../../imgs/championships/ligue-1.svg") no-repeat;
  background-size: 50px 50px;
}
.leagues.serie-a {
  background: url("../../imgs/championships/serie-a.svg") no-repeat;
  background-size: 50px 50px;
}
.leagues.copa-del-rey {
  background: url("../../imgs/championships/copa-del-rey.svg") no-repeat;
  background-size: 50px 50px;
}
.leagues.fortuna-liga {
  background: url("../../imgs/championships/fortuna-liga.svg") no-repeat;
  background-size: 50px 50px;
}
.leagues.euro-2020 {
  background: url("../../imgs/championships/euro2020.svg") no-repeat;
  background-size: 50px 50px;
}
.leagues.bundesliga {
  background: url("../../imgs/championships/bundesliga.svg") no-repeat;
  background-size: 50px 50px;
}
.leagues.fa-cup {
  background: url("../../imgs/championships/fa-cup.svg") no-repeat;
  background-size: 50px 50px;
}
.leagues.motogp {
  background: url("../../imgs/championships/motogp.svg") no-repeat;
  background-size: 50px 50px;
}
.leagues.formula1 {
  background: url("../../imgs/championships/formula1.svg") no-repeat;
  background-size: 50px 50px;
}
.leagues.nba {
  background: url("../../imgs/championships/nba.svg") no-repeat;
  background-size: 50px 50px;
}
.leagues.wta {
  background: url("../../imgs/championships/wta.svg") no-repeat;
  background-size: 50px 50px;
}
.leagues.usopen {
  background: url("../../imgs/championships/usopen.svg") no-repeat;
  background-size: 50px 50px;
}
.leagues.euroleague-basket {
  background: url("../../imgs/championships/euroleague-basket.svg") no-repeat;
  background-size: 50px 50px;
}
.leagues.bbl {
  background: url("../../imgs/championships/bbl.png") no-repeat;
}
.leagues.lega-basket {
  background: url("../../imgs/championships/lega-basket.png") no-repeat;
}
.leagues.liga-endesa {
  background: url("../../imgs/championships/liga-endesa.png") no-repeat;
}
.leagues.sbl {
  background: url("../../imgs/championships/sbl.png") no-repeat;
}
.leagues.roland-garros {
  background: url("../../imgs/championships/roland-garros.svg") no-repeat;
}
.leagues.wimbledon {
  background: url("../../imgs/championships/wimbledon.svg") no-repeat;
}
/*================== */
/* buttons / links ================== */
a {
  color: #FFBA15;
  text-decoration: underline;
}
a:hover,
a:focus {
  color: #ff9d02;
  text-decoration: none;
}
a.go-i {
  color: #340B8B;
}
a.go-i.light-color:hover {
  color: #fff !important;
}
a.go-i.light-color:hover:after {
  background-color: #fff !important;
}
.link {
  color: #ff9d02;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.link:hover {
  color: #FFBA15;
}
.btn:focus,
.btn.focus {
  box-shadow: none;
}
.cta-b a,
a.go-o,
span.go-o {
  background: #FFBA15;
  border-radius: 4px;
  box-shadow: 0px 2px 3px 0 rgba(0, 0, 0, 0.6);
  font-weight: bold;
  text-decoration: none;
}
.go-o {
  background: #FF7012;
  color: #fff;
}
.go-o:hover {
  color: #fff;
  background: #FF7012;
}
.go-i,
#page-article p > a,
#site-about > li a {
  position: relative;
  transition: all 200ms linear;
}
.solo.cta-btn {
  width: fit-content;
  display: table;
}
.cta-btn {
  margin: 15px auto;
  text-align: center;
}
.cta-btn a {
  padding: 5px 10px;
  display: block;
  margin: 0 auto;
  color: #fff;
  text-transform: uppercase;
}
.cta-btn span {
  position: relative;
}
.cta-b span:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f101";
  top: -5px;
  left: -18px;
}
/* .go-i:after, #page-article p > a:after, #site-about > li:not(.lang) a:after{
    position: absolute;
    bottom: -2px;
    left: 50%;
    height: 2px;
    content: '';
    background-color: #2B9C78;
    opacity: 0;
    transition: all 200ms linear;
    transform: translateX(-50%);
    width: 100%;
}
.go-i:hover, #page-article p > a:hover, #site-about > li a:hover{
    color: #2B9C78;
    text-decoration: none;
}
.go-i:hover:after, #page-article p > a:hover:after, #site-about > li a:hover:after{
    opacity: 1;
} */
span.go-i {
  color: #2b9c78;
}
span.go-i:after {
  background-color: transparent;
}
.back-top {
  opacity: 0;
  padding: 0 15px;
  border-radius: 3px;
  background: #ff9d02;
  box-shadow: -1px 1px 2px 0 rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: -1px 1px 2px 0 rgba(0, 0, 0, 0.5);
  -o-box-shadow: -1px 1px 2px 0 rgba(0, 0, 0, 0.5);
  text-indent: -9999px;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.back-top.fixed {
  opacity: 1;
  right: 10px;
  bottom: 10px;
  z-index: 10;
  position: fixed;
}
.back-top:hover {
  cursor: pointer;
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
  -o-transform: translateY(-3px);
  opacity: 1;
  background: #fff;
}
.back-top:hover::before {
  filter: none;
}
.back-top::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 12px;
  width: 16px;
  height: 16px;
  background: url("../../imgs/icons/arrow.svg") no-repeat;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(231deg)
    brightness(104%) contrast(102%);
  -webkit-filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(231deg)
    brightness(104%) contrast(102%);
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  opacity: 0;
}
.back-top.fixed::before {
  opacity: 1;
}
.shine-btn {
  position: relative;
  overflow: hidden;
}
.shine-btn:before {
  /* content: ""; */
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 45px;
  z-index: 1;
  background: rgba(255, 255, 255, 0.5);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(128, 186, 232, 0) 99%,
    rgba(125, 185, 232, 0) 100%
  );
  background: -webkit-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(128, 186, 232, 0) 99%,
    rgba(125, 185, 232, 0) 100%
  );
  background: -moz-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(128, 186, 232, 0) 99%,
    rgba(125, 185, 232, 0) 100%
  );
  background: -o-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(128, 186, 232, 0) 99%,
    rgba(125, 185, 232, 0) 100%
  );
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-animation: shine 1.5s infinite;
  animation: shine 1.5s infinite;
}
/*================== */
/* steps/ol list element ================== */
.steps.bg-dark {
  color: #fff;
  padding: 1rem 3rem;
}
.steps dt,
.steps dd {
  padding: 0 1rem;
}
.steps dd p {
  padding: 0;
}
.steps.bg-dark .text-muted,
.dark-bg .steps .text-muted {
  color: rgba(255, 255, 255, 0.7) !important;
}
@media only screen and (max-width: 575px) {
  .steps {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 576px) {
  .steps {
    margin-left: -20px;
    margin-right: -20px;
  }
}
ul.steps li {
  width: 100%;
}
/*================== */
/* unordered lists ================== */
ul {
  list-style: none;
  padding-left: inherit;
  font-family: "Montserrat", sans-serif;
}

ul.general > li,
ul.arrows > li {
  position: relative;
  padding-left: 5px;
}

ul.general > li::before {
  margin-right: 5px;
}

ul.general > li::before,
ul.arrows > li::before,
ul.registration > li::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  top: 3px;
}
ul.arrows > li::before {
  width: 10px;
  height: 10px;
  top: 8px;
  left: -10px;
  margin-right: 6px;
  background: url("../../imgs/icons/arrow.svg") no-repeat;
}
.dark-bg  ul.arrows > li::before{
  filter: invert(1);
}
ul.registration > li {
  margin-bottom: 5px;
  padding-bottom: 5px;
}
ul.general > li::before,
ul.registration > li::before {
  top: 3px;
  width: 25px;
  height: 25px;
  background: url("../../imgs/icons/sp-bullet.svg") no-repeat;
}
ul.arrows.dark li:before {
  filter: invert(21%) sepia(8%) saturate(699%) hue-rotate(169deg)
    brightness(95%) contrast(93%);
}
ul.arrows.light li:before {
  filter: invert(61%) sepia(3%) saturate(931%) hue-rotate(136deg)
    brightness(103%) contrast(79%);
}
ul.arrows.accent li:before {
  filter: invert(84%) sepia(17%) saturate(1588%) hue-rotate(335deg)
    brightness(99%) contrast(84%);
}
ul.general li:before {
  top: -3px;
}
ul.general li {
  margin-bottom: 8px;
}
ul.double {
  columns: 2;
  -webkit-columns: 2;
  width: 100%;
}
ul.double li:nth-child(odd) {
  margin-right: 1rem;
}
ul.triple {
  columns: 3;
  -webkit-columns: 3;
  width: 100%;
}
ul.triple li:nth-child(odd) {
  margin-right: 1rem;
}
.ul-checks li,
.ul-minuses li {
  position: relative;
}
.ul-checks li:before,
.ul-minuses li:before {
  display: inline-block;
  vertical-align: middle;
  width: 14px;
  height: 14px;
  margin-top: 0;
  margin-right: 7px;
  font: 900 15px "Font Awesome 5 Free";
}
.ul-checks li:before {
  content: "\f00c";
  color: #93bb80;
}
.ul-minuses li:before {
  content: "\f00d";
  color: #ff9d02;
}

ul.registration.inline li {
  padding: 0;
  margin-bottom: 0;
}
ul.registration {
  border: 2px dashed #00bf9e;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 8px;
  font-family: "Montserrat", sans-serif;
  background: rgba(238, 236, 236, 0.3);
  color: #666;
}

@media only screen and (max-width: 767px) {
  ul.double {
    columns: 1;
    -webkit-columns: 1;
  }

  ul.double li:nth-child(odd) {
    margin-right: 0;
  }

  ul.triple {
    columns: 2;
    -webkit-columns: 2;
  }
}

@media only screen and (max-width: 639px) {
  ul.triple {
    columns: 1;
    -webkit-columns: 1;
  }

  ul.triple li:nth-child(odd) {
    margin-right: 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 991px) {
  .inline-md li {
    display: inline-block;
    margin-right: 1.5rem;
  }
}

@media screen and (min-width: 600px) {
  ul.registration.single-line {
    columns: 1;
    -webkit-columns: 1;
    -o-columns: 1;
  }
  ul.registration {
    columns: 2;
    -webkit-columns: 2;
    -o-columns: 2;
  }
}
/*================== */
/* sitemap ================== */
.sitemap .general {
  display: table;
  margin: 0 auto;
}
.sitemap h2:not(.elem-title)::after {
  left: 50%;
}
/*================== */
/* list group ================== */
.payments {
  margin-top: 20px;
  margin-bottom: 20px;
}
.payments .list-group-item {
  overflow: hidden;
  border-radius: 0;
  padding: 0.75rem 1.25rem;
  border-right: 2px solid #426a5f;
}
.payments .list-group-item span {
  text-align: center;
}
.payments .list-group-item:last-child {
  border: none;
}
.payments .list-group-item > div:nth-child(1) {
  font: 900 16px "Nunito", sans-serif;
  text-align: center;
}
.payments .list-group-item [class*="pay-"] {
  display: inline-block;
  height: 35px;
}
.payments .list-group-item:not(:last-child) [class*="pay-"] {
  width: 49%;
}
@media only screen and (max-width: 991px) {
  .payments .list-group-item {
    border-bottom: 2px solid #426a5f;
    border-right: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .payments .list-group-item {
    padding: 0.75rem 2.25rem;
  }
}
/*================== */
/* long boxes ================== */
.long-boxes .col-12 {
  margin-bottom: 1rem;
}
.long-boxes .cta-b {
  opacity: 0;
}

.long-boxes:not(.brands-list) .card-content.dark p {
  font-size: 90%;
}
.long-boxes.brands-list .card-content p.terms {
  line-height: 18px;
  margin-bottom: 0;
  position: relative;
  bottom: 10px;
}
.long-boxes.brands-list .card-content p.terms small {
  font-size: 75%;
}
.long-boxes.brands-list .company > div {
  width: 100%;
  padding: 1.5rem 0;
}
.card-content {
  border: 4px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  margin: 10px auto;
  height: 100%;
  width: 100%;
}
.card-content.light-bg .cta {
  border-top: 2px solid #373a36;
}
.card-content.dark-bg .cta {
  border-top: 2px solid #fff;
}
.card-content.dark-bg {
  color: #fff;
}
.card-content .cta-btn {
  display: block;
  border-radius: 3px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
  font: bold 16px "Nunito", sans-serif;
  margin: 15px 0 0 0;
  width: 100%;
}
.card-content .cta-btn:not(.main) {
  border: 1px solid transparent;
}
.card-content .cta-btn a {
  background: none;
  text-decoration: none;
  display: block;
  padding: 5px;
}
.brands-list .card-content .cta-btn a span {
  text-transform: uppercase;
}
.brands-list .company {
  padding: 1.5rem 0;
  text-indent: -9999px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.7);
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.brands-list .company:before {
  background-repeat: no-repeat;
  width: 100%;
  height: 75px;
  position: absolute;
  z-index: 2;
  overflow: hidden;
  content: "";
  background-size: contain;
  right: 0;
  top: 20px;
}
.brands-list .company:after {
  position: absolute;
  content: "";
  width: 20px;
  height: 110px;
  z-index: 2;
  right: 65%;
  top: -12px;
  transform: translateX(-50%) rotate(15deg);
  display: block;
  box-shadow: 5px 0px 5px 3px rgba(0, 0, 0, 0.4);
}
.brands-list .light-bg .company:after {
  background: #eaeaea;
}
.brands-list .dark-bg .company:after {
  background: #13002e;
}
.brands-list .light-bg .company {
  background: linear-gradient(
      to right,
      rgba(57, 74, 55, 0.3),
      rgba(57, 74, 55, 0.5)
    )
}
.brands-list .dark-bg .company {
  background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.3),
      rgba(255, 255, 255, 0.5)
    )
}
.card-content .cta-btn:hover {
  cursor: pointer;
}
/* .card-content.light-bg .cta-btn{background: #394a37; color: #fff;} */
.card-content.light-bg .cta-btn:hover {
  background: transparent;
  border: 1px solid #394a37;
}
.card-content.light-bg .cta-btn:hover a {
  color: #394a37;
  text-decoration: none;
}
/* .card-content.dark-bg .cta-btn{background: #f8f8f8;}
.card-content.dark-bg .cta-btn a{color: #333;} */
.card-content.dark-bg .cta-btn:hover {
  background: transparent;
  border: 1px solid #fff;
}
.card-content.dark-bg .cta-btn:hover a {
  color: #fff;
  text-decoration: none;
}
.card-content .cta::before,
.card-content .cta::after {
  border-top: 2px solid #fff;
}
.card-content.dark .cta {
  border-top: 2px solid #fff;
}
.card-content.light .cta {
  border-top: 2px solid #333;
}
.card-content .txt-right {
  text-align: right;
  margin-top: 14px;
}
.card-content .txt-right .bon-on {
  font: bold 22px "Nunito", sans-serif;
  vertical-align: -webkit-baseline-middle;
  color: #ff9800;
}
.card-content.light .txt-right .bon-on {
  color: #343a40;
}
.card-content.dark .txt-right .bon-on {
  color: #ededed;
}

.brands-list .company.sp-betway,
.brands-list .company.sp-planetwin365,
.brands-list .company.sp-bwin {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.9))
}
.brands-list .company.sp-betway:before {
  background-image: url("../../imgs/brands/betway.svg");
  background-position: 95% 0;
  background-size: 185px 40px;
}

.brands-list .company.sp-22bet,
.brands-list .company.sp-22bet-casino {
  background: linear-gradient(
      to right,
      rgba(5, 47, 51, 0.3),
      rgba(5, 47, 51, 0.9)
    )
}
.brands-list .company.sp-22bet:before,
.brands-list .company.sp-22bet-casino:before {
  background-image: url("../../imgs/brands/22bet.svg");
  background-position: 95% 0;
  background-size: 175px 50px;
}

.brands-list .company.sp-bet365,
.brands-list .company.sp-bet365-casino {
  background: linear-gradient(
      to right,
      rgba(87, 129, 118, 0.3),
      rgba(87, 129, 118, 0.9)
    )
}
.brands-list .company.sp-bet365:before,
.brands-list .company.sp-bet365-casino:before {
  background-image: url("../../imgs/brands/bet365.svg");
  background-position: 95% 0;
  background-size: 185px 40px;
}

.brands-list .company.sp-caliente,
.brands-list .company.sp-caliente-casino {
  background: linear-gradient(
      to right,
      rgba(87, 129, 118, 0.3),
      rgba(0, 0, 0, 0.9)
    )
}
.brands-list .company.sp-caliente:before,
.brands-list .company.sp-caliente-casino:before {
  background-image: url("../../imgs/brands/caliente.svg");
  background-position: 95% 0;
  background-size: 185px 55px;
}
.brands-list .company.sp-rivalo,
.brands-list .company.sp-rivalo-casino {
  background: linear-gradient(
      to right,
      rgba(87, 129, 118, 0.3),
      rgba(0, 51, 102, 0.9)
    )
}
.brands-list .company.sp-rivalo:before,
.brands-list .company.sp-rivalo-casino:before {
  background-image: url("../../imgs/brands/rivalo.svg");
  background-position: 95% 0;
  background-size: 185px 40px;
}
.brands-list .company.sp-betfair {
  background: linear-gradient(
      to right,
      rgba(255, 188, 0, 0.3),
      rgba(255, 156, 118, 0.9)
    )
}
.brands-list .company.sp-betfair:before {
  background-image: url("../../imgs/brands/betfair.svg");
  background-position: 95% 0;
  background-size: 185px 40px;
}

.brands-list .company.sp-planetwin365:before {
  background-image: url("../../imgs/brands/planetwin365.svg");
  background-position: 95% 0;
  background-size: 185px 40px;
}

.brands-list .company.sp-william-hill {
  background: linear-gradient(
      to right,
      rgba(1, 20, 60, 0.3),
      rgba(1, 20, 60, 0.9)
    )
}
.brands-list .company.sp-william-hill:before {
  background-image: url("../../imgs/brands/william-hill.svg");
  background-position: 95% 0;
  background-size: 185px 40px;
}

.brands-list .company.sp-bet-at-home {
  background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.3),
      rgba(255, 255, 255, 0.9)
    )
}
.brands-list .company.sp-bet-at-home:before {
  background-image: url("../../imgs/brands/bet-at-home.svg");
  background-position: 95% 0;
  background-size: 185px 40px;
}

.brands-list .company.sp-unibet {
  background: linear-gradient(
      to right,
      rgba(20, 123, 69, 0.3),
      rgba(20, 123, 69, 0.9)
    )
}
.brands-list .company.sp-unibet:before {
  background-image: url("../../imgs/brands/unibet.svg");
  background-position: 95% 0;
  background-size: 185px 40px;
}

.brands-list .company.sp-1xbet,
.brands-list .company.sp-1xbet-casino {
  background: linear-gradient(
      to right,
      rgba(25, 86, 133, 0.3),
      rgba(25, 86, 133, 0.9)
    );
}
.brands-list .company.sp-1xbet:before,
.brands-list .company.sp-1xbet-casino:before {
  background-image: url("../../imgs/brands/1xbet.svg");
  background-position: 95% 0;
  background-size: 185px 40px;
}

.brands-list .company.sp-20bet,
.brands-list .company.sp-20bet-casino {
  background: linear-gradient(
      to right,
      rgba(25, 86, 133, 0.3),
      rgba(13, 29, 52, 0.9)
    )
}
.brands-list .company.sp-20bet:before,
.brands-list .company.sp-20bet-casino:before {
  background-image: url("../../imgs/brands/20bet.svg");
  background-position: 95% -2px;
  background-size: 175px 55px;
}

.brands-list .company.sp-pin-up {
  background: linear-gradient(
      to right,
      rgba(25, 86, 133, 0.3),
      rgba(25, 86, 133, 0.9)
    )
}
.brands-list .company.sp-pin-up:before {
  background-image: url("../../imgs/brands/pin-up.svg");
  background-position: 95% 0;
  background-size: 185px 40px;
}

.brands-list .company.sp-mostbet {
  background: linear-gradient(
      to right,
      rgba(25, 86, 133, 0.3),
      rgba(25, 86, 133, 0.9)
    )
}
.brands-list .company.sp-mostbet:before {
  background-image: url("../../imgs/brands/mostbet.svg");
  background-position: 95% 0;
  background-size: 185px 40px;
}

.brands-list .company.sp-1win {
  background: linear-gradient(
      to right,
      rgba(26, 26, 26, 0.3),
      rgba(26, 26, 26, 0.9)
    )
}
.brands-list .company.sp-1win:before {
  background-image: url("../../imgs/brands/1win.svg");
  background-position: 95% 0;
  background-size: 185px 40px;
}

.brands-list .company.sp-carthagebet {
  background: linear-gradient(
      to right,
      rgba(21, 25, 28, 0.3),
      rgba(21, 25, 28, 0.9)
    )
}
.brands-list .company.sp-carthagebet:before {
  background-image: url("../../imgs/brands/carthagebet.svg");
  background-position: 95% 0;
  background-size: 185px 40px;
}

.brands-list .company.sp-carthagebet {
  background: linear-gradient(
      to right,
      rgba(21, 25, 28, 0.3),
      rgba(21, 25, 28, 0.9)
    )
}
.brands-list .company.sp-carthagebet:before {
  background-image: url("../../imgs/brands/carthagebet.svg");
  background-position: 95% 0;
  background-size: 185px 40px;
}

.brands-list .company.sp-melbet {
  background: linear-gradient(
      to right,
      rgba(42, 42, 42, 0.3),
      rgba(42, 42, 42, 0.9)
    )
}
.brands-list .company.sp-melbet:before {
  background-image: url("../../imgs/brands/melbet.svg");
  background-position: 95% 0;
  background-size: 185px 40px;
}

.brands-list .company.sp-betclic {
  background: linear-gradient(
      to right,
      rgba(163, 30, 33, 0.3),
      rgba(163, 30, 33, 0.9)
    );
}
.brands-list .company.sp-betclic:before {
  background-image: url("../../imgs/brands/betclic.svg");
  background-position: 95% 0;
  background-size: 185px 40px;
}

.brands-list .company.sp-bwin:before {
  background-image: url("../../imgs/brands/bwin.svg");
  background-position: 95% 0;
  background-size: 185px 40px;
}

.brands-list .company.sp-tbet-tn {
  background: linear-gradient(
      to right,
      rgba(248, 248, 248, 0.3),
      rgba(248, 248, 248, 0.9)
    )
}
.brands-list .company.sp-tbet-tn:before {
  background-image: url("../../imgs/brands/tbet-tn.svg");
  background-position: 95% 0;
  background-size: 185px 40px;
}

.brands-list .company.sp-dimabet {
  background: linear-gradient(
      to right,
      rgba(16, 16, 16, 0.3),
      rgba(16, 16, 16, 0.9)
    )
}
.brands-list .company.sp-dimabet:before {
  background-image: url("../../imgs/brands/dimabet.svg");
  background-position: 95% 0;
  background-size: 185px 40px;
}

.brands-list .company.sp-betsafe {
  background: linear-gradient(
      to right,
      rgba(16, 16, 16, 0.3),
      rgba(16, 16, 16, 0.9)
    )
}
.brands-list .company.sp-betsafe:before {
  background-image: url("../../imgs/brands/betsafe.svg");
  background-position: 95% 0;
  background-size: 185px 40px;
}

.brands-list .company.sp-betsson {
  background: linear-gradient(
      to right,
      rgba(248, 248, 248, 0.3),
      rgba(20, 123, 69, 0.9)
    )
}
.brands-list .company.sp-betsson:before {
  background-image: url("../../imgs/brands/betsson.svg");
  background-position: 95% 0;
  background-size: 185px 40px;
}

.brands-list .company.sp-mrgreen {
  background: linear-gradient(
      to right,
      rgba(248, 248, 248, 0.3),
      rgba(20, 123, 69, 0.9)
    )
}
.brands-list .company.sp-mrgreen:before {
  background-image: url("../../imgs/brands/mr-green.svg");
  background-position: 95% 0;
  background-size: 185px 40px;
}

.brands-list .company.sp-comeon {
  background: linear-gradient(
      to right,
      rgba(16, 16, 16, 0.3),
      rgba(16, 16, 16, 0.9)
    )
}
.brands-list .company.sp-comeon:before {
  background-image: url("../../imgs/brands/comeon.svg");
  background-position: 95% 0;
  background-size: 185px 40px;
}

.brands-list .company.sp-paf {
  background: linear-gradient(
      to right,
      rgba(163, 30, 33, 0.3),
      rgba(248, 248, 248, 0.9)
    )
}
.brands-list .company.sp-paf:before {
  background-image: url("../../imgs/brands/paf.svg");
  background-position: 95% 0;
  background-size: 185px 40px;
}

.brands-list .company.sp-nordicbet {
  background: linear-gradient(
      to right,
      rgba(16, 16, 16, 0.3),
      rgba(16, 16, 16, 0.9)
    )
}
.brands-list .company.sp-nordicbet:before {
  background-image: url("../../imgs/brands/nordicbet.svg");
  background-position: 95% 0;
  background-size: 185px 40px;
}

.brands-list .company.sp-hajper {
  background: linear-gradient(
      to right,
      rgba(16, 16, 16, 0.3),
      rgba(16, 16, 16, 0.9)
    )
}
.brands-list .company.sp-hajper:before {
  background-image: url("../../imgs/brands/hajper.svg");
  background-position: 95% 0;
  background-size: 185px 40px;
}

.brands-list .company.sp-snabbare {
  background: linear-gradient(
      to right,
      rgba(163, 30, 33, 0.3),
      rgba(163, 30, 33, 0.9)
    )
}
.brands-list .company.sp-snabbare:before {
  background-image: url("../../imgs/brands/snabbare.svg");
  background-position: 95% 0;
  background-size: 185px 40px;
}

.card-content.light-bg .txt-right .bon-on span {
  color: #333;
}
.card-content.dark-bg .txt-right .bon-on span {
  color: #f8f8f8;
}
.card-content .txt-right .bon-on span {
  font-size: 16px;
  font-style: italic;
  position: relative;
  bottom: 2px;
}

.brands-list .dark-bg .card-desc p a {
  color: #ff9d02;
  text-decoration: underline;
  font-weight: 400;
}
.brands-list .dark-bg .card-desc p a:hover {
  color: #ff9d02;
  text-decoration: none;
}
.brands-list .dark-bg .card-desc p a:after {
  content: none;
}

.long-boxes .card-desc {
  padding: 1.25rem 1.25rem 0;
  overflow: hidden;
}
.card-content h3:after {
  content: none;
}
.card-desc p {
  color: #747373;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0px;
  margin-bottom: 20px;
  padding: 0;
  font-family: "Montserrat", sans-serif;
}
.card-content.dark-bg .card-desc p {
  margin-bottom: 10px;
  color: #ccc;
}
.card-content .card-desc .cta > div:nth-of-type(2) {
  padding: 0;
}
.dark .card-desc p {
  color: #acacac;
}
.light .card-desc p {
  color: #747373;
}

@media only screen and (max-width: 575px) {
  .brands-list .card-content .txt-right {
    text-align: center;
    margin-top: 0;
  }
  .brands-list .company:after {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .card-content .txt-right {
    text-align: right;
  }
}
@media only screen and (max-width: 768px) {
  .card-content .cta-btn {
    margin: 15px auto 0 auto;
  }
}
@media only screen and (max-width: 575px) and (min-width: 380px) {
  .card-content .cta-btn {
    width: 250px;
  }
}
@media only screen and (max-width: 425px) {
  .card-content .txt-right .bon-on span {
    display: block;
    margin-top: 15px;
  }
}
/*================== */
/* bonus bar  ================== */
.floating-offer {
  position: relative;
  display: none;
}
.floating-offer .close-btn {
  width: 30px;
  height: 30px;
  display: inline-block;
  font-size: 18px;
  color: #ff9d02;
  position: relative;
  top: 3px;
  right: -30px;
}
.container-full {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
}
.offer-container {
  display: none;
  background: rgb(21 1 54);
  bottom: 0;
  max-width: 100%;
  width: 1200px;
  z-index: 10;
  left: 50%;
  transform: translate(-50%);
  -webkit-transform: translate(-50%);
  -o-transform: translate(-50%);
  -moz-transform: translate(-50%);
  border-top: 4px solid #f2eff6;
}
.offer-container .links {
  margin: 10px 0;
}
.offer-container [class*="bg-"] {
  margin: 6px 10px 0 25px;
  padding: 10px;
  width: 100px;
  height: 40px;
  border-radius: 3px;
}
.offer-container [class*="logo-"] {
  background-size: 80px 25px;
  position: relative;
}
.offer-container .logo-betclic {
  top: -5px;
}
.offer-container .logo-22bet {
  transform: scale(1.3);
}
.offer-container .go-o .bon-on {
  font: bold 1.25rem "Nunito", sans-serif;
  color: #fff;
}
.offer-container .go-o:hover .bon-on {
  color: #ff9d02;
}
.offer-container .go-o:focus,
.offer-container .go-o.focus {
  outline: 0;
}
.offer-container .brand-offer .company-120 {
  display: inline-block;
  margin-top: 3px;
  transform: scale(0.9);
  -webkit-transform: scale(0.9);
  -o-transform: scale(0.9);
  -moz-transform: scale(0.9);
}
.offer-container .links .txt {
  font: bold italic 1rem "Nunito", sans-serif;
  color: #f8f8f8;
  margin-right: 10px;
  vertical-align: middle;
  position: relative;
}
.offer-container .links .txt .bon-on {
  font-size: 1.25rem;
}
.offer-container .links .txt span:nth-child(1) {
  position: relative;
  top: -2px;
}
.offer-container .links .txt i {
  font-style: italic;
}
.offer-container .links .txt .bon-on {
  color: #ff9d02;
}
.offer-container .links {
  text-align: center;
}
.offer-container .links .go-o {
  font-size: 18px;
  position: relative;
  padding: 6px 10px 6px 40px;
}
.offer-container .go-o span.fa-angle-double-right {
  font: bold 18px "Nunito", sans-serif;
}
.offer-container .go-o span.fa-angle-double-right:before {
  font-family: "Font Awesome 5 Free";
}
.offer-container .links .go-o i {
  position: absolute;
  left: 0;
  border-right: 2px solid #364237;
  height: 100%;
  padding: 8px 7px 0;
  background: #ffba15;
  border-radius: 3px 0 0 3px;
  transition: all 0.2s ease-in-out;
}
.offer-container .links .go-o:hover i {
  background: #fff;
  color: #ff9d02;
}
.offer-container .go-i {
  font: bold 16px "Nunito", sans-serif;
  color: #f8f8f8;
  padding-top: 13px;
}
.offer-container .go-i i {
  top: 1px;
  position: relative;
  font-size: 15px;
}
.offer-container .go-i:hover {
  color: #ff9d02;
}
.zoom-btn-box {
  position: fixed;
  display: none;
  margin: 0 auto;
  padding: 15px;
  right: -5px;
  bottom: 50px;
}
.zoom-btn {
  position: relative;
  display: block;
  background: #ff9d02;
  padding: 0;
  line-height: 42px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  outline: none;
  box-shadow: -1px 1px 2px 0 #426a5f;
  -webkit-box-shadow: -1px 1px 2px 0 #426a5f;
  -o-box-shadow: -1px 1px 2px 0 #426a5f;
}
.zoomies {
  color: #fff;
  background: #ff9d02;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 18px;
}
.zoomies:hover {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.zoomies:focus {
  outline: 0;
}
@media only screen and (max-width: 399px) {
  .offer-container [class^="col-"] {
    padding: 0;
  }
  .offer-container [class*="bg-"] {
    margin: 6px 10px 0 10px;
  }
  .offer-container .links .go-o i {
    padding: 9px 7px 0;
  }
  .floating-offer .close-btn {
    right: 5px;
  }
  .offer-container .links {
    text-align: right;
  }
  .offer-container .links .go-o {
    margin-right: 20px;
  }
}
@media screen and (max-width: 599px) {
  .offer-container [class*="bg-"] {
    margin: 6px 10px;
  }
  .offer-container .go-o .bon-on {
    font-size: 1rem;
  }
  .offer-container .go-o span.fa-angle-double-right {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .floating-offer .close-btn {
    right: 15px;
    top: 0;
  }
  /* .offer-container .links .txt{font-size: 1rem;} */
  .offer-container .links .txt .bon-on {
    font-size: 1.25rem;
  }
  .offer-container .txt,
  .offer-container .go-o span:last-child {
    display: none;
  }
  .offer-container .links .go-o {
    display: inline-block;
    padding: 0 10px 0 40px;
    text-align: center;
    width: 150px;
  }
}
@media only screen and (max-width: 1199px) {
  .offer-container .brand-offer .txt {
    width: 100%;
    padding-top: 5px;
  }
  .zoom-btn-box {
    padding: 15px 0;
    right: 10px;
  }
}

@media screen and (min-width: 600px) {
  .offer-container .links .go-o {
    width: 190px;
  }
  .offer-container [class*="bg-"] {
    margin: 6px 10px 0 0px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .floating-offer .close-btn {
    right: -20px;
  }
}
@media screen and (min-width: 768px) {
  .offer-container .links .txt {
    display: inline-block;
  }
  .offer-container .go-o .bon-on {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .offer-container .brand-offer {
    text-align: right;
  }
}
/*================== */
/*icons stacked ================== */
.icon-holder {
  display: block;
  width: 80px;
  height: 80px;
  padding: 12px;
  border: solid 5px #ff9d02;
  color: #333333;
  overflow: hidden;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

.icon-holder i {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.icon-holder.small {
  width: 35px;
  height: 35px;
  padding: 4px 6px;
  transform: rotate(45deg) translate(-5px, -10px);
  -webkit-transform: rotate(45deg) translate(-5px, -10px);
  -moz-transform: rotate(45deg) translate(-5px, -10px);
}
.icon-holder.small i {
  font-size: 1.25em;
}

.feat-icon {
  padding: 15px;
  border-radius: 5px;
  box-shadow: -1px 2px 5px rgba(0, 0, 0, 0.5);
  color: #f8f8f8;
  background: #ff9d02;
  background: -webkit-radial-gradient(
    center,
    ellipse cover,
    #ffba15 0%,
    #ff9d02 100%
  );
  background: radial-gradient(#ffba15, #ff9d02);
  position: relative;
  width: 70px;
  height: 70px;
}
.feat-icon.lg {
  width: 90px;
  height: 90px;
}
.feat-icon.lg .inverted {
  filter: invert(1);
  -webkit-filter: invert(1);
}
.feat-icon i {
  font-size: 45px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
/*================== */
/*sports list ================== */
.sports-list li {
  width: 100%;
  background-color: #150136;
  color: #f7f7f7;
  padding: 0;
}
.sports-list li span {
  float: right;
  text-transform: uppercase;
  font: bold 15px "Nunito", sans-serif;
  vertical-align: middle;
  padding: 20px 15px;
  background: linear-gradient(to right, transparent, #000);
}
.sports-list a {
  color: #f7f7f7;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.sports-list a span {
  background: linear-gradient(to right, transparent, #ff9d02);
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.sports-list a:hover [class$="-bg"] {
  opacity: 0.5;
}
.sports-list [class$="-bg"] {
  background-position: -35px -30px;
  width: 100%;
  height: 100%;
  background-size: 120px 120px;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.sports-list > li > .esports-bg {
  background-position: -50px -45px;
}
.sports-list > li > .racing-bg {
  background-size: 120px 150px;
}
.sports-list > li > .darts-bg {
  background-position: -35px -15px;
}
.sports-list > li > .table-tennis-bg {
  background-position: -24px -30px;
}
@media only screen and (max-width: 767px) {
  .sports-list [class$="-bg"] {
    background-position: -45px -30px;
  }
  .sports-list li span {
    display: block;
    float: none;
    text-align: right;
  }
}
@media only screen and (min-width: 768px) {
  .sports-list li {
    width: 20%;
  }
}
/*================== */
/*details info card ================== */
.details-info {
  padding: 0;
  border: none;
}
.details-info .card-img-top {
  position: relative;
  margin: 0;
}
.details-info .card-img-top.short {
  clip-path: inset(0 0 25px);
  margin-bottom: -25px;
}
.details-info .card-img-top.short .card-img-overlay {
  bottom: 23px;
}
.details-info .tandc-visit {
  text-align: center;
  margin-bottom: 10px;
}
.details-info .card-img-overlay {
  top: auto;
  padding: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  height: fit-content;
  text-align: center;
}
.details-info .list-group {
  padding: 0 0.5rem;
}
.details-info .list-group-item {
  background-color: transparent;
  padding: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.details-info .list-group-item {
  color: #ff9d02;
}
.details-info .list-group-item span {
  color: #fff;
}
/* .details-info .cta-btn:hover a{
    background: #efefef;
    color: #426A5F;
} */
.details-info .card-footer {
  padding: 0 1.25rem;
}
@media only screen and (min-width: 451px) and (max-width: 575px) {
  .details-info {
    width: 350px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 575px) {
  .details-info {
    margin-bottom: 1.5rem;
  }
}
@media only screen and (max-width: 350px) {
  #site-about > li:not(:last-child) {
    margin-right: 5px !important;
  }
  #site-about > li:not(:last-child)::after {
    margin: 0px !important;
  }
}

/*================== */
/*box list ================== */
.box-list .card {
  background-color: transparent;
}
.box-list .card-title {
  font: bold 16px "Nunito", sans-serif;
  text-align: center;
  border-bottom: 2px solid #333;
  padding-bottom: 5px;
}
.box-list.dark-bg .card-title:not(h3) {
  border-bottom: 2px solid #ccc;
}
.box-list h2.card-title,
.box-list h3.card-title {
  margin: 0 auto 1rem auto;
  font-size: 1.188rem;
  font-weight: normal;
  text-align: center;
  border-bottom: none;
}
.box-list h3.card-title {
  display: block;
}
.box-list h2.card-title::after,
.box-list h3.card-title::after {
  left: 50%;
  width: 100px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
/*================== */
/*box list big ================== */
.box-list-big .card-title {
  font: bold 18px "Nunito", sans-serif;
  text-align: center;
}
.box-list-big .light-bg .card-title {
  border-bottom: 1px solid #426a5f;
}
.box-list-big .dark-bg .card-title {
  border-bottom: 1px solid #fff;
}
/*================== */
/*more reviews element ================== */
.more-reviews {
  background: #efeded;
  border: 1px solid #d2d5d7;
  box-shadow: 3px 3px 4px 0 #d2d5d7;
}
.more-reviews a {
  position: relative;
}
.more-reviews a:after {
  content: "Revue";
  position: absolute;
  right: -7px;
  bottom: -7px;
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  line-height: 1;
  box-shadow: rgba(0, 0, 0, 0.6) -2px -1px 3px 0px;
  padding: 4px 6px;
  background: #ff9d02;
  border-radius: 3px;
  transition: all 0.3s ease-in-out 0s;
}
.more-reviews .card {
  background-color: #ffffff;
}
.more-reviews .card:hover .company-140 {
  opacity: 0.7;
}
.more-reviews .card:hover a:after {
  background: #4fca13;
}
.more-reviews .company-140 {
  transition: all 0.3s ease-in-out;
}
/*================== */
/*lang menu ================== */
#site-about > li.lang .dropdown-menu a {
  left: 0;
  text-decoration: none;
}
#site-about > li.lang .dropdown-menu a:hover:after {
  background-color: transparent;
}
.lang {
  cursor: pointer;
}
#site-about .lang .dropdown-menu {
  background: #150136;
  box-shadow: 0 0 5px #fff;
  padding: 5px 10px !important;
  min-width: 200px;
  white-space: nowrap;
  bottom: 25px;
  top: unset!important;
  left: 100%!important;
  transform: translate(-100%, 0)!important;
  max-height: 280px;
  overflow-y: auto;

}
#site-about .lang .dropdown-menu.lg {
  height: 20em!important;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    transform: translate3d(-275px, -275px, 0)!important;
    -webkit-transform: translate3d(-275px, -275px, 0)!important;
}
#site-about .lang .dropdown-menu-right::-webkit-scrollbar {
  width: 5px;
}
#site-about .lang .dropdown-menu-right::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background: #f3f3f3;
}
#site-about .lang .dropdown-menu-right::-webkit-scrollbar-thumb {
  background: #150136;
}
@media (max-width: 767px) {
  #site-about .lang .dropdown-menu {
    left: 50%!important;
    transform: translate(-50%, 0)!important;
    bottom: 5px;
  }
  .lang {
    display: block;
  }

  #site-about .btn-group.dropup.lang {
    width: 100%;
  }

  #page-footer #site-about {
    padding-left: 0;
  }
}
#site-about .lang.dropup .dropdown-toggle::after {
  top: 2px;
  left: -10px;
  position: relative;
  color: #426a5f;
}
#site-about .lang.dropup .dropdown-toggle2::after {
  top: 2px;
  left: -10px;
  position: relative;
  color: #426a5f;
}
.lang .dropdown-menu a span {
  color: #fff;
}
.lang .dropdown-menu a:hover span {
  color: #ff9d02;
}
.lang .dropdown-menu li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 5px;
}
.flags {
  width: 21px;
  height: 21px;
  display: inline-block;
  position: relative;
  top: 5px;
  margin-right: 5px;
}

.es-mx {
  background: var(--flag-mexico);
}
.hu {
  background: var(--flag-hungary);
}
.pt-br {
  background: var(--flag-brazil);
}

@media (max-width: 767px) {
  #site-about .lang .dropdown-toggle[aria-expanded="true"]::after {
    opacity: 1;
    transform: rotate(0deg);
  }
}
/*================== */
/*top3 element ================== */
.top3 .card-content {
  border-top-right-radius: calc(0.25rem - 1px);
  border-top-left-radius: calc(0.25rem - 1px);
}
.top3 .card-img {
  padding: 15px 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom: 2px solid #fff;
}
.top3 [class^="company-"] {
  position: relative;
  top: 50%;
  transform: translatey(-50%);
}
.top3 .go-o {
  color: #fff;
}
.top3 .go-o:not(.grayed):hover {
  background: #ff9d02;
}
.top3 .terms {
  font-size: 10px;
}
.boxbg-1:after,
.boxbg-2:after,
.boxbg-3:after {
  position: absolute;
  content: "";
  bottom: 5px;
  left: 50%;
  width: 33px;
  height: 33px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.boxbg-1:after {
  background: url("../../imgs/icons/first.svg") no-repeat;
}
.boxbg-2:after {
  background: url("../../imgs/icons/second.svg") no-repeat;
}
.boxbg-3:after {
  background: url("../../imgs/icons/third.svg") no-repeat;
}
@media only screen and (max-width: 767px) {
  .top3 {
    width: 380px;
    max-width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .top3 {
    width: 726px;
  }
  .top3 .card-img {
    padding: 12px 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: calc(0.25rem - 1px);
    border-bottom: none;
    border-right: 2px solid #fff;
  }
  .top3 [class^="company-"] {
    top: 50%;
    transform: translatey(-50%);
  }
  .boxbg-1:after,
  .boxbg-2:after,
  .boxbg-3:after {
    bottom: 15px;
  }
}
@media only screen and (max-width: 991px) {
  .top3 .terms {
    position: relative;
    top: -3px;
  }
}
@media only screen and (min-width: 768px) {
  .top3 .go-o {
    width: 75%;
  }
}
@media only screen and (min-width: 992px) {
  .top3 .order-lg-2 {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
  }
}
@media only screen and (min-width: 1200px) {
  .top3 {
    width: 85%;
  }
}
/*================== */
/*faq ================== */
#faq {
  margin: 20px auto;
}
#faq h2 {
  margin: 0;
  font-size: 1rem;
}
#faq .card {
  border: none;
}
#faq .card-header {
  background-color: transparent;
  border: none;
}
#faq .btn-link {
  text-decoration: none;
  display: block;
  position: relative;
  background: transparent;
  color: #ff9d02;
  font-size: 14px;
  font-weight: bolder;
  text-transform: uppercase;
  margin-bottom: 15px;
  padding: 15px;
  border-bottom: 1px solid #ff9d02;
  border-radius: 0 15px 0 15px;
  transition: all 0.1s linear 0s;
  width: 100%;
  text-align: left;
}
#faq .btn-link:focus {
  outline: 0;
}
#faq .btn-link:hover {
  color: #ff9d02;
}
#faq .btn-link.collapsed {
  color: #7f8688;
  border-bottom: 1px solid #929d9e;
  margin: 0;
}
#faq .btn-link i {
  color: #2b9c78;
  position: absolute;
  top: 18px;
  left: 25px;
  font-size: 20px;
}
#faq .btn-link.collapsed i {
  color: #2b9c78;
}
#faq .btn-link:before,
#faq .btn-link.collapsed:before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 36px;
  border: 7px solid transparent;
  border-top: 7px solid #ff9d02;
}
#faq .btn-link.collapsed:before {
  content: "";
  border: 0px none;
}
#faq .btn-link.collapsed:hover {
  color: #ff9d02;
}
#faq .btn-link:after,
#faq .btn-link.collapsed:after {
  content: "\f106";
  font-family: "Font Awesome 5 Free";
  color: #ff9d02;
  font-size: 20px;
  line-height: 20px;
  position: absolute;
  top: 14px;
  right: 25px;
}
#faq .btn-link.collapsed:after {
  content: "\f107";
  color: #929d9e;
}
#faq .card-body {
  padding: 0 1.5rem;
  text-align: justify;
  font-family: "Montserrat", sans-serif;
}
#faq .card-body p {
  border-top: 0 none;
  color: #454545;
}
#faq .card-body li {
  color: #7f8688;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
}
@media only screen and (max-width: 575px) {
  h2::first-letter {
    font-size: 17px;
  }
  #faq .btn-link {
    padding: 15px 25px 15px 0;
  }
  #faq .btn-link:after,
  #faq .btn-link.collapsed:after {
    right: 5px;
  }
}
/* end faq accordion */
/*================== */
/* contact form ================== */
#contact {
  display: block;
  margin: 40px auto;
  padding: 10px;
  border: 1px solid #cbcbcb;
  background-color: #fff;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
#contact form {
  overflow: hidden;
}
#contact h1 {
  margin: 10px 0 10px;
  font-size: 24px;
  color: #333333;
}
#contact hr {
  color: inherit;
  height: 0;
  margin: 6px 0 6px 0;
  padding: 0;
  border: 1px solid #d9d9d9;
  border-style: none none solid;
}
#contact label {
  float: left;
  height: 26px;
  line-height: 35px;
  width: 30%;
}
#contact input,
textarea,
select {
  padding: 5px;
  color: #666;
  background: #f5f5f5;
  border: 1px solid #ccc;
  margin: 5px 0;
}
#contact input:focus,
textarea:focus,
select:focus {
  border: 1px solid #999;
  background-color: #fff;
  color: #333;
}
#contact input.submit {
  cursor: pointer;
  background: #ff9d02;
  border: none;
  color: #fff;
  text-align: center;
  float: right;
  margin-right: 13px;
  outline: 0;
  border-radius: 4px;
  font-weight: bold;
  padding: 0.5rem;
}
#contact input.submit:hover {
  background: #4fca13;
}
#contact input[type="submit"][disabled] {
  background: #ff9d02;
}
#contact fieldset {
  padding: 20px;
  border: 1px solid #eee;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
#contact legend {
  padding: 7px 10px;
  font-weight: bold;
  font-size: 14px;
  color: #426a5f;
  margin-bottom: 20px;
}
#contact span.required {
  font-size: 13px;
  color: #2b9c78;
}
#message {
  margin: 10px 0;
  padding: 0;
}
#verify {
  width: 50px !important;
}
.error_message {
  display: block;
  line-height: 22px;
  background: #fbe3e4 url("../../imgs/contact-assets/error.gif") no-repeat 5px center;
  padding: 5px 5px 5px 30px;
  color: #8a1f11;
  border: 1px solid #fbc2c4;
  border-radius: 4px;
}
.success_message {
  background: linear-gradient(rgb(143 183 123 / 0.5), rgb(143 183 123 / 0.5)),
    url("../../imgs/contact-assets/success.gif") 5px no-repeat;
  padding: 5px 5px 5px 30px;
  color: #5d8349;
  font-weight: 700;
  border-radius: 4px;
}
.loader {
  padding: 0 10px;
}
#contact #success_page h1 {
  background: url("../../imgs/contact-assets/success.gif") left no-repeat;
  padding-left: 22px;
}
.form-group {
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  #contact {
    width: 100%;
  }
  #contact label,
  #contact input,
  #contact legend,
  #contact textarea,
  #contact select {
    width: 100%;
    display: block !important;
  }
  #contact input.submit {
    margin: 10px auto;
    text-align: center;
    min-width: 150px;
    width: auto;
    float: none;
  }
  .captcha-wrapper {
    width: 304px;
    float: none;
    margin: 0 auto;
    overflow: hidden;
  }
}
@media only screen and (min-width: 768px) {
  #contact label {
    width: 30%;
  }
  #contact input,
  textarea,
  select {
    width: 70%;
  }
  .captcha-wrapper {
    width: 304px;
    float: right;
    margin-right: 13px;
  }
  #contact input.submit {
    width: 20%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  #contact {
    width: 80%;
  }
}
@media only screen and (min-width: 1200px) {
  #contact {
    width: 60%;
  }
}
/*================== */
/* glossary ================== */
#glossary {
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
}
#alphabet #glossaryNavList {
  max-width: 100%;
}
#alphabet .nav-item {
  text-align: center;
  margin-right: 1rem;
}
#alphabet .nav-item:after {
  background-color: transparent;
}
#glossaryNavList .nav-pills .nav-item {
  width: 38px;
}
#glossaryNavList .nav-pills .nav-link.active,
.nav-pills .show > .nav-link.disabled {
  background-color: #c2c2c2;
}
#glossaryNavList .nav-pills .nav-link2.active,
.nav-pills .show > .nav-link2.disabled {
  background-color: #c2c2c2;
}
#alphabet.fixed {
  z-index: 200;
  background: #426a5f;
}
#glossaryNavList .nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background: #ff9d02;
  display: block;
}
#glossaryNavList .nav-pills .nav-link2.active,
.nav-pills .show > .nav-link2 {
  background: #ff9d02;
  display: block;
}
#alphabet .nav-link {
  font-size: 1rem;
}
#alphabet:not(.fixed) .nav-link {
  color: #373a36 !important;
}
#alphabet.fixed .nav-link.disabled {
  color: #989898 !important;
}
#alphabet.fixed .nav-link {
  padding: 0 0.3em !important;
  color: #fff !important;
  z-index: 200;
}
#alphabet.fixed .nav-link:hover {
  background: #ff9d02;
  color: #373a36 !important;
}
#alphabet .nav-link2 {
  font-size: 1rem;
}
#alphabet:not(.fixed) .nav-link2 {
  color: #373a36 !important;
}
#alphabet.fixed .nav-link2.disabled {
  color: #989898 !important;
}
#alphabet.fixed .nav-link2 {
  padding: 0 0.3em !important;
  color: #fff !important;
  z-index: 200;
}
#alphabet.fixed .nav-link2:hover {
  background: #ff9d02;
  color: #373a36 !important;
}
#glossaryNavList ul.nav-pills a.disabled {
  cursor: default;
}
#glossarySearch.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #ff9d02;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(238, 215, 39, 0.5);
}
#glossary .list li:nth-child(even) {
  background: #fff;
  padding: 15px 5px;
}
#glossary .list li:nth-child(odd) {
  background: #edeeee;
  padding: 15px 5px;
}
#glossary .list li {
  font-weight: normal;
}
#glossary .list li .term {
  display: block;
  font-weight: bold;
}
#glossary .list li .term {
  display: block;
  font-weight: bold;
}
#glossary .list li .term a:hover,
#glossary .list li .meaning a:hover {
  color: #2b9c78;
}
#glossary .list li .meaning {
  display: block;
}
#glossary .list .list-heading {
  background: #fff !important;
  border-bottom: 1px solid #edeeee;
  display: block;
  font-weight: bold;
  margin: 5px 0;
  padding: 5px;
}
#glossary .list .list-heading {
  display: block;
  font-size: 0.875em;
}
#glossary .list .list-heading:first-child span {
  display: none;
}
#glossary .list .list-heading .anchor {
  display: block;
  position: relative;
  visibility: hidden;
}
@media (max-width: 1199px) {
  #glossaryNavList .nav-link:before {
    content: "";
  }
}
@media (max-width: 767px) {
  #glossaryNavList .nav-link:before {
    content: "";
  }
}
@media (max-width: 1199px) {
  #glossaryNavList .nav-link2:before {
    content: "";
  }
}
@media (max-width: 767px) {
  #glossaryNavList .nav-link2:before {
    content: "";
  }
}
/* footer ================== */
#page-footer .container {
  padding: 0;
}
#page-footer p {
  text-align: left;
}
#page-footer .disclaimer {
  padding: 10px;
  background: #150136;
  color: #cccccc;
  font-size: 14px;
}
#page-footer .go-info.white {
  background: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
  -o-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}
#page-footer .disclaimer img {
  display: block;
  margin: 0px auto;
}
#page-footer .disclaimer .dmca-badge img {
  /* display: inline-block; */
  vertical-align: middle;
}
#page-footer .go-info {
  padding: 10px;
  font-size: 14px;
  text-align: center;
}
#site-about > li {
  display: inline-block;
}
#site-about > li a {
  left: -5px;
}
#site-about > li.active a {
  color: #ff9d02;
  text-decoration: none;
}
#site-about > li.active a:hover:after {
  opacity: 0;
}
#site-about > li:not(:last-child) {
  margin-right: 10px;
}
#site-about > li:not(:last-child)::after {
  content: "|";
  margin-left: 5px;
  color: #333;
}
#page-footer .copyright {
  color: #5f5f5f;
  text-align: center;
  font-size: 0.85rem;
}
#page-footer .list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}
#page-footer .dmca {
  margin: 6px auto;
  display: block;
}
#page-footer .f-icons {
  text-align: center;
}
#page-footer .f-icons a {
  display: block;
}

.icon-twitter {
  background: url("../../imgs/icons/twitter.svg");
}
.icon-pinterest {
  background: url("../../imgs/icons/pinterest.svg");
}
.icon-flickr {
  background: url("../../imgs/icons/flickr.svg");
}
.icon-linkedin {
  background: url("../../imgs/icons/linkedin.svg");
}
.icon-facebook {
  background: url("../../imgs/icons/facebook.svg");
}
.icon-youtube {
  background: url("../../imgs/icons/youtube.svg");
}
.icon-tumblr {
  background: url("../../imgs/icons/tumblr.svg");
}
.icon-myspace {
  background: url("../../imgs/icons/myspace.svg");
}
.icon-age {
  background: url("../../imgs/icons/age.svg");
}
.icon-gt {
  background: url("../../imgs/icons/gt.svg");
}
.icon-truste {
  background: url("../../imgs/icons/truste.svg");
}
.icon-hjelpelinjen {
  background: url("../../imgs/icons/hjelpelinjen.svg");
}
.icon-dmca {
  background: url("../../imgs/icons/dmca.svg");
}
.f-icons [class*="icon-"] {
  display: block;
  text-indent: -9999px;
  text-align: left;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  width: 100%;
  height: 100%;
}

.f-icons [class*="icon-"] {
  width: 30px;
  height: 30px;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
}

.f-icons [class*="icon-"]:hover {
  filter: opacity(0.7) sepia(0.4) drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.4));
  -webkit-filter: opacity(0.7) sepia(0.4)
    drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.4));
}

.f-icons .icon-dmca {
  width: 115px;
  margin: 0 auto;
}

@media screen and (max-width: 359px) {
  #page-footer .icons {
    width: 90%;
    text-align: center;
    margin: 0 auto 1rem;
  }
  /* #page-footer li:not(.dropdown-menu li):nth-child(5), #page-footer li:not(.dropdown-menu li):last-child{margin-top: 18px;} */
}
@media screen and (max-width: 575px) {
  #site-about .lang {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  #page-footer .disclaimer {
    font-size: 12px;
  }
  #page-footer .gt,
  #page-footer .truste {
    padding: 0.688rem 1.1rem;
    position: relative;
    top: -3px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  #site-about > li:not(:last-child)::after {
    margin-left: 4px;
  }
}
@media screen and (max-width: 1199px) {
  #page-footer .container {
    max-width: 100%;
    padding: 0;
  }
  #page-footer .copyright,
  #page-footer #site-about {
    text-align: center;
  }
}
@media screen and (min-width: 1200px) {
  #page-footer .copyright {
    text-align: left;
  }
  #site-about {
    float: right;
    padding-left: 30px;
  }
}
/* ================== */
/* new top3 brands popups */
.modal.show.top-brands .modal-dialog {
  max-width: 700px;
}
.top-brands .modal-header {
  position: relative;
  border: none;
}
.top-brands .modal-content {
  background-color: transparent;
  border: none;
}
.top-brands .modal-header .close {
  position: absolute;
  right: 0;
  top: 0;
  color: #ff9d02;
  text-shadow: none;
  opacity: 1;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.top-brands .modal-header .close:focus,
.top-brands .modal-header .close:hover {
  outline: 0;
}
.top-brands .rec-rating.top-rev-v {
  transform: scale(0.65);
  -webkit-transform: scale(0.65);
  margin: 0;
  left: -6px;
  position: absolute;
}
.top-brands .row.brand,
.top-brands .row.brands-heading {
  border-radius: 10px;
  padding: 15px 0 10px;
  border: 1px solid #7d9097;
}
.top-brands .row.brand {
  background: #fff;
}
.top-brands .row.brand:not(:last-child) {
  margin-bottom: 7px;
}
.top-brands .rank {
  position: absolute;
  z-index: 20;
  top: -24px;
  left: -14px;
  background: #fff;
  border-radius: 50%;
  width: 27px;
  height: 27px;
  padding: 5px 8px;
  font: italic 1rem "Nunito", sans-serif;
  color: #333;
}
.top-brands .rank.first {
  background: #ff9d02;
  color: #fff;
}
.top-brands .row.brand .action {
  padding: 15px 10px;
}
.top-brands .row.brand .action .shine-btn {
  text-align: center;
}
.top-brands .row.brand .action .go-o {
  padding: 0.25rem 0.4rem;
  display: table;
  margin: 0 auto;
}
.top-brands .row.brand .action .go-o:hover {
  background: #ff9d02;
  color: #fff;
}
.top-brands .border-r {
  border-right: 1px solid #7d9097;
  height: 65px;
}
.top-brands .row.brands-heading,
.top-brands .modal-footer {
  background: url("../../imgs/popups/popup-football-bg.jpg") -140px 64% no-repeat;
}
.top-brands.casino .row.brands-heading,
.top-brands.casino .modal-footer {
  background: url("../../imgs/popups/popup-football-bg.jpg") -140px 64% no-repeat;
  background-size: cover;
}
.top-brands .row.brands-heading {
  overflow: hidden;
  padding: 8px 0 12px;
  margin: -5px 3px -5px;
  position: relative;
  z-index: -1;
}
.top-brands .row.brands-heading:after,
.top-brands .modal-footer:after {
  background: linear-gradient(to right, transparent, #4f1ba3 75%);
}
.top-brands .row.brands-heading:after,
.top-brands .modal-footer:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding: 20px 0;
  margin: 0 3px -10px;
  z-index: 1;
}
.top-brands .modal-footer {
  background-position: 0 100%;
  background-size: cover;
  overflow: hidden;
  margin: 0 18px;
  z-index: -1;
  border: none;
  border-radius: 10px;
  position: relative;
  top: -48px;
}
.top-brands .modal-footer .row {
  top: 12px;
  position: relative;
  z-index: 2;
}
.top-brands .modal-footer .terms {
  text-align: right;
  margin: 0.75rem 0 0.5rem;
  font: italic 0.75rem "Montserrat", sans-serif;
  color: #fff;
}
.top-brands .row.brands-heading .title {
  color: #fff;
  font: normal 1.25rem "Nunito", sans-serif;
  line-height: 1.2;
  text-align: right;
  z-index: 2;
}
.top-brands .row.brand:nth-child(2) {
  border: 2px solid #ff9d02;
}
.top-brands .company-100[class*="bg-"] {
  border-radius: 0;
  height: 60px;
  box-shadow: 0 0 1px 1px #7d9097;
}
.top-brands .brand p {
  font: italic 1rem "Nunito", sans-serif;
  color: #7d9097;
  padding: 0;
}
.top-brands .brand p.bold {
  font-weight: bold;
  margin: 0;
}
.top-brands .brand .bon-on {
  font-size: 1.6rem;
  color: #ff9800;
  font-weight: bold; /*line-height: normal; padding-top: 2px;*/
}
.top-brands.casino .brand .bon-on {
  font-size: 2.5rem;
}
.top-brands .brand .text-center p {
  padding: 0.25rem 0;
}
.top-brands .brand .text-center p,
.top-brands .brand .text-center div {
  text-align: center;
  margin: 0;
}
.top-brands .brand .text-center .itlc {
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  color: #426a5f;
}
.top-brands .brand .terms {
  text-align: left;
  margin: 0.5rem 0 -0.5rem;
  font: italic 0.55rem "Montserrat", sans-serif;
  color: #7d9097;
}
.top-brands .brand .terms.sp {
  margin-bottom: 0;
}

@media screen and (max-width: 575px) {
  .modal.show.top-brands .modal-dialog {
    max-width: 360px;
    margin: 0 auto;
  }
  .top-brands .row.brands-heading .title {
    font: normal 1.05rem "Nunito", sans-serif;
  }
  .top-brands .row.brands-heading:after,
  .top-brands .modal-footer:after {
    background: linear-gradient(to right, transparent, #4f1ba3 45%);
  }
  .top-brands .brand .bon-on {
    line-height: 1.2;
  }
}
@media screen and (max-width: 767px) {
  nav div.dropdown-menu.dark-bg.rounded-0{
    background-color: #f5b609!important;
  }
  nav div.dropdown-menu.dark-bg.rounded-0 a{
    background-color: #f5b609!important;
  }
  .mtable thead tr th:first-of-type,   .mtable tbody tr td:first-of-type {
    display: none;
  }
  .modal.in.top-brands .modal-dialog {
    margin: 1rem auto 0;
  }
  .top-brands .modal-header .close {
    /* width: 20px;
    height: 20px; */
    font-size: 25px;
    right: 50px;
  }
  .top-brands .row.brands-heading {
    background-position: -55px 64%;
    background-size: cover;
  }
  .top-brands .row.brands-heading .title {
    text-align: center;
  }
  .top-brands .company-100[class*="bg-"] {
    height: 55px;
  }
  /* .top-brands .brand .bon-on {font-size: 2.2rem; margin-top: -.75rem;} */
  .top-brands .row.brand .action .go-o {
    padding: 0.25rem 0.3rem;
  }
  .top-brands .row.brand .action {
    padding: 0 10px;
  }
  .top-brands .brand .border-r {
    border: none;
  }
  .top-brands .brand [class*="col-"] > * {
    text-align: center;
  }
  .top-brands .rec-rating.top-rev-v {
    margin: 0 auto;
    left: unset;
  }
  .top-brands .row.brand .border-b {
    border-bottom: 1px solid #7d9097;
    margin: 5px 40px;
  }
  .top-brands .row.brand .border-r {
    height: unset;
  }
  .top-brands .brand .border-r:nth-child(4) {
    border: none;
  }
  .top-brands .row.brand {
    padding: 10px 0 0;
  }
}
@media screen and (max-width: 991px) {
  .top-brands .row.brand {
    padding: 15px 0 10px;
  }
}

/* Breadcrumbs */
.brdcmb-el {
  position: relative;
  z-index: 20;
  width: 100%;
  margin: 0 auto;
}
.brdcmb-el .breadcrumb {
  font-family: "Montserrat", sans-serif;
  padding: 5px 10px;
  margin: 0;
  list-style: none;
  background: rgb(242 239 246);
  border-radius: 0;
  font-size: 12px;
}
.breadcrumb {
  display: flex;
  flex-wrap: nowrap;
  width: auto;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
}
.brdcmb-el .breadcrumb li {
  vertical-align: middle;
}
.brdcmb-el .breadcrumb li a,
.brdcmb-el .breadcrumb li:last-child {
  padding-right: 15px;
}
::-webkit-scrollbar {
  height: 8px;
}
.brdcmb-el .breadcrumb > li + li:before {
  content: none;
}
.brdcmb-el .breadcrumb li a:before {
  position: absolute;
  content: "\f101";
  font: 900 10px "Font Awesome 5 Free";
  color: #585858;
  top: 6px;
  right: -6px;
  padding: 0 5px;
}
.brdcmb-el .breadcrumb li a {
  position: relative;
  color: #ff7012;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.brdcmb-el .breadcrumb li a:hover {
  text-decoration: none;
  color: #ff9d02;
}
.brdcmb-el .breadcrumb li a:after,
.brdcmb-el .breadcrumb li a:hover:after {
  content: none;
}

.breadcrumb-item.active {
  color: #777;
}

@media only screen and (max-width: 1199px) {
  .container.brcrmb {
    max-width: 100%;
  }
}

/* Table CTA button ================== */
.tab-cta {
  background: linear-gradient(
      144deg,
      rgba(53, 53, 53, 0.08) 0%,
      rgba(53, 53, 53, 0.08) 81%,
      rgba(141, 141, 141, 0.08) 81%,
      rgba(141, 141, 141, 0.08) 100%
    ),
    linear-gradient(
      199deg,
      rgba(47, 47, 47, 0.06) 0%,
      rgba(47, 47, 47, 0.06) 30%,
      rgba(230, 230, 230, 0.06) 30%,
      rgba(230, 230, 230, 0.06) 100%
    ),
    linear-gradient(
      278deg,
      rgba(108, 108, 108, 0.01) 0%,
      rgba(108, 108, 108, 0.01) 81%,
      rgba(196, 196, 196, 0.01) 81%,
      rgba(196, 196, 196, 0.01) 100%
    ),
    linear-gradient(
      97deg,
      rgba(207, 207, 207, 0.09) 0%,
      rgba(207, 207, 207, 0.09) 60%,
      rgba(137, 137, 137, 0.09) 60%,
      rgba(137, 137, 137, 0.09) 100%
    ),
    linear-gradient(
      300deg,
      rgba(186, 186, 186, 0.05) 0%,
      rgba(186, 186, 186, 0.05) 25%,
      rgba(248, 248, 248, 0.05) 25%,
      rgba(248, 248, 248, 0.05) 100%
    ),
    linear-gradient(
      276deg,
      rgba(200, 200, 200, 0.02) 0%,
      rgba(200, 200, 200, 0.02) 1%,
      rgba(135, 135, 135, 0.02) 1%,
      rgba(135, 135, 135, 0.02) 100%
    ),
    linear-gradient(
      101deg,
      rgba(8, 8, 8, 0.03) 0%,
      rgba(8, 8, 8, 0.03) 54%,
      rgba(181, 181, 181, 0.03) 54%,
      rgba(181, 181, 181, 0.03) 100%
    ),
    linear-gradient(
      18deg,
      rgba(99, 99, 99, 0.08) 0%,
      rgba(99, 99, 99, 0.08) 76%,
      rgba(214, 214, 214, 0.08) 76%,
      rgba(214, 214, 214, 0.08) 100%
    ),
    linear-gradient(
      285deg,
      rgba(34, 34, 34, 0.05) 0%,
      rgba(34, 34, 34, 0.05) 82%,
      rgba(251, 251, 251, 0.05) 82%,
      rgba(251, 251, 251, 0.05) 100%
    ),
    linear-gradient(90deg, hsl(263deg 96% 11%), hsl(263deg 86% 11%));
  border-radius: 3px;
  padding: 0 10px 20px;
  box-shadow: inset 0 0 10px rgb(0 0 0 / 50%);
  margin: 0 auto;
  text-align: center;
  margin-bottom: 13px;
}

.tab-cta a {
  position: relative;
  display: block;
  text-decoration: none;
  cursor: pointer;
  width: 100%;
}

.tab-cta .heading {
  text-align: center;
  margin: 5px 0 0;
  color: #fff;
  text-shadow: 1px 1px 3px #343a40;
  font: bold 18px "Nunito", sans-serif;
}

.tab-cta .arrow {
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -20px;
  width: 40px;
  height: 0;
  color: #ff9d02;
  text-shadow: 0px 3px 2px rgb(0 0 0 / 60%);
}

@media screen and (min-width: 451px) {
  .tab-cta {
    display: none;
  }
}

/*================== */

/* Show/Hide ================== */

div.toggle > #show,
div.toggle #hide {
  line-height: 30px;
}
.toggle > p:nth-of-type(1) {
  margin: 20px 0 0;
}
#panel {
  display: none;
}

#show,
#hide {
  cursor: pointer;
  color: #ff9800;
  margin: 5px 0;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  background: transparent;
  border-radius: 5px;
  border: none;
  text-align: center;
}

@media screen and (min-width: 451px) {
  #panel {
    display: block !important;
  }
  #show,
  #hide {
    display: none;
  }
}

/*================== */

/* 404 NEW PAGE ================== */

#page-article.err {
  padding: 30px 0;
  font-size: 16px;
}

.err header h1.article-title:before {
  background: none;
}

.err svg {
  width: 750px;
  max-width: 100%;
  margin: 4rem auto;
  display: block;
}

.err .home-btn {
  margin: 1.4rem auto;
  display: table;
  position: relative;
}
.err .home-btn:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 36px;
  background: url("../../imgs/icons/curved-arrow.svg") no-repeat;
  filter: invert(14%) sepia(0%) saturate(1490%) hue-rotate(134deg)
    brightness(94%) contrast(81%);
  -webkit-filter: invert(14%) sepia(0%) saturate(1490%) hue-rotate(134deg)
    brightness(94%) contrast(81%);
  -moz-filter: invert(14%) sepia(0%) saturate(1490%) hue-rotate(134deg)
    brightness(94%) contrast(81%);
  -o-filter: invert(14%) sepia(0%) saturate(1490%) hue-rotate(134deg)
    brightness(94%) contrast(81%);
  top: -25px;
  right: -45px;
  -webkit-transform: scaleX(-1) rotate(340deg);
  -moz-transform: scaleX(-1) rotate(340deg);
  -o-transform: scaleX(-1) rotate(340deg);
  transform: scaleX(-1) rotate(340deg);
  filter: FlipH;
  -ms-filter: "FlipH";
  z-index: 1;
}
.err header h1.article-title,
.err p {
  text-align: center;
}
.txt-bold {
  font-weight: 900;
}
.err p {
  margin-bottom: 0.4em;
}

#num_1,
#num_2,
#num_3 {
  -webkit-animation: bounce-in-top 1.1s alternate both;
  animation: bounce-in-top 1.1s alternate both;
}

#num_1 {
  animation-delay: 0.2s;
}
#num_2 {
  animation-delay: 0.4s;
}
#num_3 {
  animation-delay: 0.6s;
}
.credit-card {
  display: block;
  text-indent: -9999px;
  background: url(../../imgs/icons/credit-card.svg) no-repeat;
  width: 30px;
  height: 30px;
  margin-left: 15px;
}
.charge-card {
  display: block;
  text-indent: -9999px;
  background: url(../../imgs/icons/charge-card.svg) no-repeat;
  width: 30px;
  height: 30px;
  margin-left: 15px;
}
.cash {
  display: block;
  text-indent: -9999px;
  background: url(../../imgs/icons/cash.svg) no-repeat;
  width: 32px;
  height: 36px;
  background-size: 100%;
  background-position: 11% 0%;
  margin-left: 13px;
}
.ewallet {
  display: block;
  text-indent: -9999px;
  background: url(../../imgs/icons/ewallet.svg) no-repeat;
  width: 30px;
  height: 30px;
  margin-left: 15px;
}
.bank-wire-transfer {
  display: block;
  text-indent: -9999px;
  background: url(../../imgs/icons/bank-wire-transfer.svg) no-repeat;
  width: 30px;
  height: 30px;
  margin-left: 15px;
}
.bitcoin {
  display: block;
  text-indent: -9999px;
  background: url(../../imgs/icons/bitcoin-icon.svg) no-repeat;
  width: 30px;
  height: 30px;
  margin-left: 15px;
}
.prepaid {
  display: block;
  text-indent: -9999px;
  background: url(../../imgs/icons/prepaid.svg) no-repeat;
  width: 30px;
  height: 30px;
  margin-left: 15px;
}
.mobile-pay {
  display: block;
  text-indent: -9999px;
  background: url(../../imgs/icons/mobile-pay.svg) no-repeat;
  width: 30px;
  height: 30px;
  margin-left: 15px;
}
@media screen and (max-width: 575px) {
  .credit-card,
  .charge-card,
  .ewallet,
  .bank-wire-transfer,
  .bitcoin,
  .prepaid,
  .cash,
  .mobile-pay {
    margin: 0 auto;
  }
}
.img-fix-right {
  margin: -0.5rem -20px 0 1.5rem;
  float: right;
}
.carousel-inner > .item > a > img,
.carousel-inner > .item > img,
.img-responsive,
.thumbnail a > img,
.thumbnail > img {
  display: block;
  max-width: 100%;
  height: auto;
}
/*================== */
.err .home-btn {
  margin: 1.4rem auto;
  display: table;
  position: relative;
}
.err .home-btn:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 36px;
  filter: invert(14%) sepia(0%) saturate(1490%) hue-rotate(134deg)
    brightness(94%) contrast(81%);
  -webkit-filter: invert(14%) sepia(0%) saturate(1490%) hue-rotate(134deg)
    brightness(94%) contrast(81%);
  -moz-filter: invert(14%) sepia(0%) saturate(1490%) hue-rotate(134deg)
    brightness(94%) contrast(81%);
  -o-filter: invert(14%) sepia(0%) saturate(1490%) hue-rotate(134deg)
    brightness(94%) contrast(81%);
  top: -25px;
  right: -45px;
  -webkit-transform: scaleX(-1) rotate(340deg);
  -moz-transform: scaleX(-1) rotate(340deg);
  -o-transform: scaleX(-1) rotate(340deg);
  transform: scaleX(-1) rotate(340deg);
  filter: FlipH;
  -ms-filter: "FlipH";
  z-index: 1;
}
.mtable {
  box-shadow: 0 0 5px #7f8688;
  border-left: none;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
.mtable thead {
  border: none;
}
.mtable thead tr th {
  padding: 10px 15px;
  color: #fff;
}
.mtable tbody {
  max-width: 100%;
  overflow: hidden;
}
.mtable tbody tr td {
  padding: 5px;
}
@media screen and (max-width: 571px) {
  .mtable thead tr th {
    padding: 5px 1px;
    color: #fff;
    font-size: 12px;
  }
  .mtable tbody tr td {
    padding: 5px 0px;
    font-size: 13px;
    /* border-right: 1px solid #d2d5d7; */
    border-bottom: 1px solid #d2d5d7;
    width: 16%;
  }
}
@media screen and (max-width: 386px) {
  .mtable thead tr th:first-of-type {
    display: none;
  }
  .mtable tbody tr td:first-of-type {
    display: none;
  }
}
.mstable {
  box-shadow: 0 0 5px #7f8688;
  border-left: none;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
.mstable thead {
  border: none;
}
.mstable thead tr th {
  padding: 7px 3px;
  color: #fff;
}
.mstable tbody {
  max-width: 100%;
  overflow: hidden;
}
.mstable tbody tr td {
  padding: 5px;
}
@media screen and (max-width: 539px) {
  .mstable thead tr th {
    padding: 5px 1px;
    color: #fff;
    font-size: 13px;
  }
  .mstable tbody tr td {
    padding: 5px 0px;
    font-size: 13px;
    border-right: 1px solid #d2d5d7;
    border-bottom: 1px solid #d2d5d7;
    width: 16%;
  }
}
@media screen and (max-width: 386px) {
  .mstable thead tr th:last-child {
    display: none;
  }
  .mstable tbody tr td:last-child {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .top-margin {
    margin-top: 0 !important;
  }
}
@media screen and (max-width: 780px) {
  .sm-dir-column {
    flex-direction: column;
  }
  div.d-flex.ul-w-50 ul {
    width: 100%;
    padding: 0;
  }
  .sm-dir-column ul:first-child li:last-child {
    border-bottom: 1px solid black;
    padding-bottom: 20px;
  }
}
.logo-link {
  display: block;
  text-indent: -9999px;
}

[class*="cashout-"], [class*="live-"] {
  display: block;
  text-indent: -9999px;
  text-align: left;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  background-position: center center !important;
  width: 30px;
  height: 30px;
  margin: 13px auto;
}
.cashout-yes, .live-yes {
  background: url("../../imgs/icons/check.svg");
}
.cashout-no, .live-no {
  background: url("../../imgs/icons/close-icon.svg");
  height: 25px;
  width: 25px;
}
.aligncenter {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}
.arrows-before::before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f101";
  top: 5px;
  left: 28px;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg)
    brightness(102%) contrast(102%);
}
[class*="language-"] {
  display: block;
  text-indent: -9999px;
  text-align: left;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  background-position: center center !important;
  width: 30px;
  height: 30px;
  margin: 0 auto;
  margin-top: 16px;
}
.language-azerbaijan {
  background: url(../../imgs/icons/azerbaijan-flag.svg) no-repeat center center;
}
.language-turkey {
  background: url(../../imgs/icons/turkey-flag.svg) no-repeat center center;
}
.language-uk {
  background: url(../../imgs/icons/uk-flag.svg) no-repeat center center;
}
@media screen and (max-width: 575px) {
  [class*="language-"] {
    margin-top: 10px;
  }
}
ul.chip li:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 20px;
  margin-right: 6px;
  background: url(../../imgs/icons/chip.svg) no-repeat;
}
.card-desc-dark {
  color: #fff !important;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0px;
  margin-bottom: 20px;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  text-align: initial;
}
.black {
  color: #000;
}
.tablem {
  box-shadow: 0 0 5px #7f8688;
  border-left: none;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
.tablem thead {
  border: none;
}
.tablem thead tr th {
  padding: 10px 15px;
  color: #fff;
}
.tablem tbody {
  max-width: 100%;
  overflow: hidden;
}
.tablem tbody tr td {
  padding: 5px;
}
@media screen and (max-width: 539px) {
  .tablem thead tr th {
    padding: 5px 1px;
    color: #fff;
    font-size: 13px;
  }
  .tablem tbody tr td {
    padding: 5px 0px;
    font-size: 13px;
    width: 16%;
  }
}
@media screen and (max-width: 768px) {
  ul.flex{
    flex-direction: column;
  }
  .center-img {
    display: block;
    margin: 0 auto;
  }
}
.cta-boxes-small .leagues {
  width: 50px;
  height: 50px;
  display: inline-block;
  text-indent: -9999px;
}
.cta-boxes-small .logo-premier-league,
.cta-boxes-small .logo-champions-league,
.cta-boxes-small .logo-la-liga,
.cta-boxes-small .logo-nba,
.cta-boxes-small .logo-fiba,
.cta-boxes-small .logo-basketball-champions-league,
.cta-boxes-small .logo-euroleague,
.cta-boxes-small .logo-volleyball-world-league,
.cta-boxes-small .logo-olympic-games,
.cta-boxes-small .logo-volleyball-world-cup,
.cta-boxes-small .logo-us-open {
  background-color: #fff;
}

.payment-visa {
  background: url("../../imgs/payments/visa.svg") no-repeat;
  width: 45px;
  height: 15px;
}
.payment-webmoney {
  background: url("../../imgs/payments/web-money.svg") no-repeat;
  width: 49px;
  height: 13px;
}
.payment-bitcoin {
  background: url("../../imgs/payments/bitcoin.svg") no-repeat;
  width: 55px;
  height: 12px;
}
.payment-skrill {
  background: url("../../imgs/payments/skrill.svg") no-repeat;
  width: 45px;
  height: 15px;
}
.payment-mastercard {
  background: url("../../imgs/payments/mastercard.svg") no-repeat;
  width: 45px;
  height: 35px;
}
.payment-neteller {
  background: url("../../imgs/payments/neteller.svg") no-repeat;
  width: 50px;
  height: 11px;
}
.table .payments [class*="payment-"] {
  display: inline-block;
}
.table ul.payments {
  margin-bottom: 0px;
}
.payments {
  margin-top: 20px;
  margin-bottom: 20px;
  margin: auto;
}
@media only screen and (max-width: 998px) {
  .d-none-998 {
    display: none !important;
  }
}
@media only screen and (max-width: 575px) {
  .payments {
    width: 100%;
  }
  .full-width-mobile {
    width: 100% !important;
  }
}
.provider[class*="soft-"] {
  display: block;
  text-indent: -9999px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 45px;
  height: 30px;
}
.soft-evolution {
  background: url("../../imgs/icons/evolution-icon.svg");
}
.soft-play-n-go {
  background: url("../../imgs/icons/play-n-go-icon.svg");
}
.soft-microgaming {
  background: url("../../imgs/icons/microgaming-icon.svg");
}
.soft-netent {
  background: url("../../imgs/icons/netent-icon.svg");
}
.soft-pragmaticplay {
  background: url("../../imgs/icons/pragmatic-play-icon.svg");
}
.soft-nextgen {
  background: url("../../imgs/icons/nextgen-icon.svg");
}
.soft-playtech {
  background: url("../../imgs/icons/playtech-icon.svg");
}
.soft-thunderkick {
  background: url("../../imgs/icons/thunderkick-icon.svg");
}
.soft-playson {
  background: url("../../imgs/icons/playson-icon.svg");
}
.tablet-frame {
  padding: 2% 40px;
  border-radius: 30px;
  border: 0.5px solid #e0e0e0;
  background-color: #2c2c2c;
  box-shadow: inset 0px 0px 0px -4px rgba(255, 255, 255, 0.1),
    1px 1px 6px rgba(0, 0, 0, 0.05), 1px 1px 8px rgba(0, 0, 0, 0.07);
  filter: drop-shadow(0 10px 5px rgba(0, 0, 0, 0.35));
  -webkit-filter: drop-shadow(0 10px 5px rgba(0, 0, 0, 0.35));
  width: 90%;
  margin: 1rem auto;
  display: block;
}
@media screen and (min-width: 1200px) {
  .mob-bg {
    background: url("../../imgs/bg/mobile-img-bg.svg") no-repeat left center;
    background-size: 50%;
  }
}
.centerize {
  display: flex;
  justify-content: center;
  align-items: center;
}
ul.flex{
  display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
ul.flex li{
  margin-right: 10px;
}
table.tablem.m-scroll td, table.tablem.m-scroll th{
  padding: 5px 10px 5px 10px;
}
table.main{
  border-collapse: separate;
  border-spacing: 0 5px;
  box-shadow: unset;
  border: none;
}
.bg-c{
  padding: 0px 20px;
}
#page-article.white{
  padding: 0 20px;
}
#page-article.white.p-0{
  padding: 0px;
}
.bg-purple{
  background-color: #F2EFF6;
  background-image: url(../../imgs/ball-bg-small.png);
  background-repeat: no-repeat;
  background-position: 80% 0px;
  background-size: contain;
}
.fa-caret-down:before{
  color: #F5B609;
}
h1.article-title.text-center{
  color: #4f1ba3;
  font-weight: bold;
}
h1.article-title.text-center::before{
  display: none;
}
body.overflow{
  overflow: hidden;
}
body.overflow-2{
  overflow: hidden;
}
#logo img{
  width: fit-content;
}

.table thead th{vertical-align: middle;}
.detail-txt{line-height: 1.3;}

table.card th.fix-width{
  width: 290px;
}
table.card td.tandc-visit{
  color: #fff;
}
table.card {
  border-collapse:collapse !important;
}
table.card, tr, td{
  border:none !important;
}
table.card tr td:first-of-type{
  padding-right: 5px;
}
table.card tbody tr.list-group-item td a{
  text-decoration: none;
  font-weight: bold;
}
.card-footer.d-flex{
  display: flex;
  flex-direction: column;
  padding: 0;
}
.card-footer.d-flex td{
  color: #ff9d02;
  font-family: "Montserrat", sans-serif;
}
table.card tbody tr{
  border-bottom: 1px solid rgba(255, 255, 255, 0.5) !important;
}
.card-footer.d-flex a, .card-footer.d-flex .cta-btn{
  width: 100%;
}
.pb-7{
  padding-bottom: 70px;
}
a.logo-link{
  width: fit-content;
  margin: 0 auto;
}
table.table a.company-120{
  display: block;
}
table td.text{
  font-weight: bold;
    color: #ff9d02;
    font-size: 17px;
}
ul.inline li {
  display: inline-block;
  margin-right: 1rem;
}
.apps [class*="fa-"].none {
  opacity: .25;
}
.apps .fa-android {
  color: #a4c639;
}
.apps i {
  font-size: 2rem;
}
.apps .fa-apple {
  color: #8e8e93;
}
.fa-chrome {
  background: linear-gradient(to bottom left, transparent 49%,#ea4335 50%) 105% 0% /37% 30%, linear-gradient(to bottom right,transparent 49%,#fbbc05 50%) 64% 100% /35% 43%, radial-gradient(farthest-side, #4285f4 46%,transparent 47%), linear-gradient( 47deg, #34a853 42%,transparent 43%), linear-gradient(-72deg, #fbbc05 42%,transparent 43%), linear-gradient(-199deg, #ea4335 42%,transparent 43%);
  background-repeat: no-repeat;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.pros-cons li.text-center.font-weight-bold {
  border-bottom: 0.1px solid #ffffff5e;
}
.pros-cons{padding: 15px 0;}
.text-orange{color: #FFBA15;}