/*
media query cheatsheet

@media (min-width: 576px) { ... }

// Medium devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

// Large devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

@media (max-width: 575.98px) { ... }
@media (max-width: 767.98px) { ... }
@media (max-width: 991.98px) { ... }
@media (max-width: 1199.98px) { ... }

*/

body {
  font-family: "Twemoji Country Flags", Lato, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"
}

/* for tablet displays, push out to full width rather than restrict at 768px. */
@media (max-width: 991.98px) {
  .container {
    width: 100%;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
  }
}

/* future stuff - this is bootstrap 4.3 */
.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  /* Just in case `pointer-events: none` is set on a parent */
  pointer-events: auto;
  content: "";
  /* IE10 bugfix, see https://stackoverflow.com/questions/16947967/ie10-hover-pseudo-class-doesnt-work-without-background-color */
  background-color: rgba(0, 0, 0, 0);
}

.modal-content {
  max-height: 85vh;
  overflow: auto;
}

/* if in the body anywhere we have a class page-takeover, set overflow hidden */
body:has(.page-takeover) {
  overflow: hidden;
}

/* rows with no gutters */
.no-gutters {
  margin-right: 0;
  margin-left: 0;

  > .col,
  > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
  }
}

.border-none {
  border: none !important;
}

/* rows with no gutters */
.slim-gutters {
  margin-right: -1px;
  margin-left: -1px;

  > .col,
  > [class*="col-"] {
    padding: 1px;
  }
}


/* Hide anything with mobile restriction; but show if set on the body */
.r-mobile-android,
.r-mobile-ios,
.r-mobile-none {
  display: none;
}

/* Show Android-specific elements when on Android */
body.mobile-android .r-mobile-android {
  display: block;
}

/* Show iOS-specific elements when on iOS */
body.mobile-ios .r-mobile-ios {
  display: block;
}

/* Show non-mobile elements when on non-mobile devices */
body.mobile-none .r-mobile-none {
  display: block;
}

/* Overrides and extras on bootstrap */

body {
  font-size: 1rem; /* up to 16px from the theme default of 15 */
}

/* don't make it quite so light for accessibility */
.text-muted {
  color: #6e7777 !important;
}

.text-muted a {
  color: #6e7777 !important;
  border-bottom: dotted 1px #6e7777 !important;
}

/* anything flagged with this is always hidden - on-page styles will then lift it based on user region */
.region-restricted {
  display: none;
}

.cookie-bar {
  opacity: 1;
  font-size: 14px;
  display: none;
  position: fixed;
  width: 100%;
  padding: 10px;
  left: 0;
  bottom: 0;
  z-index: 2;
}

.blockquote {
  border-left: solid 2px #E41E0F;
  padding: 5px 10px;
  color: #444;
  font-size: 0.95rem;
  font-style: italic;
}

a.btn {
  white-space: normal;
}

.text-black {
  color: rgb(33, 37, 41) !important;
}

.bg-dark {
  background-color: #161413 !important;
}

.bg-dark hr {
  border-color: rgba(255, 255, 255, 0.4);
}

.image-gradient {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.img-cover {
  width: 100%;
  height: auto;
}

#logo-circle {
  position: absolute;
  z-index: 1; /* show on top of nav bar so fully clickable */
  width: 100px;
}

#top-header {
  margin-top: 5px;
  margin-bottom: 0;
  padding: 5px;
}

.body-takeover #top-header {
  margin-top: 0;
}

.body-takeover #navcol-1 .nav {
  margin-top: 8px;
}

#logo-circle {
  margin-top: -3px;
  width: 42px;
  height: auto;
}

@media (min-width: 768px) {
  #logo-circle {
    width: 120px;
    margin-top: -10px;
  }

  #top-header {
    margin-top: 20px;
    margin-bottom: 0;
    padding: 0;
  }
}

#page-body {
  z-index: 2;
  position: relative;
}

#logo-circle a {
  display: block;
}

#logo-circle img {
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  #logo-box {
    height: 100px;
  }
  #logo {
    width: 360px;
    height: 95px;
  }
}

pre {
  background-color: #fff7fb;
  padding: 20px;
  border-left: solid 5px rgb(232, 62, 140);
}

.image-gradient:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition-property: opacity;
  transition-duration: 0.5s;
  background-image: linear-gradient(170deg, #000, rgba(0, 0, 0, 0.7));
  opacity: 1;
}

.card:hover .image-gradient:before {
  opacity: 0.8;
}

.text-primary {
  color: #E41E0F !important;
}

.text-xs {
  font-size: 0.6rem;
}

.text-sm {
  font-size: 0.8rem;
}

.text-md {
  font-size: 1.1rem;
}

.text-lg {
  font-size: 1.2rem;
}

.text-xl {
  font-size: 1.6rem;
}

.text-light .card {
  color: #212529;
}

a {
  color: #E41E0F;
  border-bottom: dotted 1px #E41E0F;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a,
.h1 a, .h2 a, .h3 a, .h4 a, .h5 a, .h6 a {
  color: inherit;
  line-height: 2rem;
}

h4 a, h5 a, h6 a,
.h4 a, .h5 a, .h6 a {
  color: inherit;
  line-height: 1.5rem;
}

h5, .h5 {
  font-size: 1.1rem;
  line-height: 1.6rem;
}


h6, .h6 {
  font-size: 1rem;
  line-height: 1.5rem;
}

a.link-nostyle {
  line-height: 1.5rem !important;
}

a:hover {
  text-decoration: none;
  color: #b3180c;
  border-bottom-color: #b3180c;
}

.nav .nav-link {
  border-bottom: none;
}

.link-nostyle, .link-nostyle:hover {
  color: inherit;
  border-bottom: none;
}

.link-nostyle:hover {
  color: rgb(228, 30, 15);
}

.link-muted {
  color: #95a5a6;
  border-bottom: dotted 1px #95a5a6;
}

.link-muted:hover {
  text-decoration: none;
  border-bottom-color: #E41E0F;
}


.list-unstyled > li.media {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dotted #444;
}

.list-unstyled > li.media:first-child {
  padding-top: 0;
}

.list-unstyled > li.media:last-child {
  border-bottom: none;
}

/* a box that can be dropped anywhere and take over the whole screen */
.page-takeover {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
  background: rgba(0,0,0,0.9);
}

/* tags */
.tag {
  white-space: nowrap;
  position: relative;
  margin: 0 5px 10px 10px;
  display: inline-block;
  height: 25px;
  border-radius: 0 5px 5px 0;
  padding: 0 10px 0 15px;
  background: #ecf0f1;
  border: 1px solid #C7D2D4;
  line-height: 23px;
  font-size: 0.8rem;
  color: #0a0a0a;
}

.tag:hover {
  background: #E41E0F;
  color: white;
  border-bottom-color: #C7D2D4;
}

.tag:before {
  position: absolute;
  background: #161413;
  content: "●";
  color: white;
  font-size: 12px;
  line-height: 13px;
  text-indent: 6px;
  top: 3px;
  left: -10px;
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
  border-radius: 0 0 0 9px;
}


a:hover {
  color: #b3180c;
}

.p-6 {
  padding: 4rem !important;
}

@media (min-width: 768px) {
  .p-md-6 {
    padding: 4rem !important;
  }
}

.pt-6,
.py-6 {
  padding-top: 4rem !important;
}

.pr-6,
.px-6 {
  padding-right: 4rem !important;
}

.pb-6,
.py-6 {
  padding-bottom: 4rem !important;
}


/* star rating system - use {stars:1}  {stars:4.75} etc in markup */
.star-rating {
  border-top: solid 1px #dee2e6;
  margin-top: 4px;
  margin-bottom: 4px;
  padding: 4px;
  display: flex !important;
}

.star-rating:first-child {
  border-top: none;
}

.stars {
  line-height: 0;
  align-self: center !important;
  width: 90px; /* always space for 5 stars so left aligned */
}

.star-rating .score {
  text-align: right;
  width: 3rem;
}

.stars .star {
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url('../img/star-100.png');
  background-size: contain;
}

.star-rating .property {
  vertical-align: top;
  line-height: 24px;
  margin-right: auto !important;
}

.star.star-25 {
  background-image: url('../img/star-25.png');
}

.star.star-50 {
  background-image: url('../img/star-50.png');
}

.star.star-75 {
  background-image: url('../img/star-75.png');
}


/* font sizes with media queries */
h1 {
  font-size: 2.8rem;
}

.static-page {
  margin-top: 2rem;
}

.news-article h2 {
  font-size: 1.6rem;
}

h1 + h2.text-muted,
h1 + .h2.text-muted {
  font-size: 1.6rem;
}


.news-article h3,
.news-article .h3 {
  font-size: 1.2rem;
  font-weight: bold;
}

.news-article h4,
.news-article .h4 {
  font-size: 1.1rem;
  font-weight: bold;
}

.news-article blockquote {
  border-left: solid 1px #E41E0F;
  position: relative;
  padding: 40px;
  color: #444;
  margin-bottom: 1rem;
  background-color: rgba(241, 241, 241, 0.5);
  overflow: hidden;
}


.news-article blockquote::before {
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 20rem;
  color: rgba(0, 0, 0, 0.02);
  position: absolute;
  top: -45px;
  left: -15px;
  line-height: 1;
  pointer-events: none;
}

.news-article blockquote br {
  display: block;
  margin: 0.5rem 0;
}

.news-article blockquote > p {
  margin-bottom: 0;
}
.news-article code {
  font-weight: bold;
  font-size: 100%;
}

code {
  font-weight: bold;
  font-size: 100%;
}

@media (min-width: 992px) {
  h1 {
    font-size: 3.5rem;
    font-weight: bold;
  }

  h1 + h2.text-muted,
  h1 + .h2.text-muted {
    font-size: 1.75rem;
    line-height: 2.5rem;
    color: #868c8c !important;
  }

  .news-article h2,
  .news-article .h2 {
    font-size: 2.2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

  .news-article h3 {
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.8rem;
  }
}

@media (max-width: 767.98px) {
  /* break a media object on phones */
  .media {
    display: block;
  }
}

/* left-floated images in a media object make blocks and set a font
so if broken image, they still sit in their defined width rather than
 overflow */
.media > a > img.mr-3 {
  display: block;
  font-size: 10px;
  line-height: 12px;
}


/* Main site logo and navigation */
#top-header {
  position: relative;
  text-align: center;
}

#top-header a {
  border-bottom: none;
}

@media (min-width: 992px) {
  #top-header {
    text-align: left;
    display: flex;
    justify-content: left;
  }
}
#pf-bomb {
  position: absolute;
  right: 10px;
  z-index: 1;
  bottom: -92px;
  opacity: 1;
  width: 200px;
  height: auto;
}

#site-search {
  display: block;
  margin: 10px 10px 0;
  padding-bottom: 10px;

}
#site-search input {
  padding: 10px;
  width: 100%;
  border: solid 1px #ccc;
}

@media (min-width: 991px) {
  #site-search {
    width: 400px;
    min-height: auto;
    position: absolute;
    bottom: 0;
    margin-bottom: 1rem;
    right: 0;
  }
}


#region-switcher {
  position: fixed;
  height: 34px;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: #222;
  color: #fff;
  padding: 6px 12px;
  font-size: 0.85rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#region-switcher form {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
  max-width: 300px;
}

#region-switcher label {
  color: #fff;
  margin: 0;
  white-space: nowrap;
  font-weight: bold;
}

#region-switcher select {
  flex: 1;
  max-width: 260px;
  height: auto;
  padding: 2px 6px;
  font-size: 0.85rem;
}

body.has-region-override {
  padding-bottom: 34px;
}


#site-nav {
  background-color: transparent;
  flex: 1;
}

.navbar-light .navbar-nav .nav-link {
  text-transform: uppercase;
  transition: all 0.2s ease;
  font-size: 0.8rem;
  color: black;
  font-weight: bold;
  padding-right: 10px;
  padding-left: 10px;
  margin-left: 1px;

  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}


.navbar-light .navbar-nav a:hover {
  background-color: #E41E0F;
  color: white !important;
}

.navbar-light .navbar-nav .navbar-active {
  background-color: #E41E0F;
  color: white !important;
}

.navbar-light .navbar-nav a.nav-link-learn-poker:hover {
  background-color: #3498DB;
  color: white !important;
}

.navbar-light .navbar-nav .nav-link-learn-poker.navbar-active {
  background-color: #3498DB;
  color: white !important;
}

.navbar-light .navbar-nav a.nav-link-the-rail:hover {
  background-color: #16a085;
  color: white !important;
}

.navbar-light .navbar-nav .nav-link-the-rail.navbar-active {
  background-color: #16a085;
  color: white !important;
}


.navbar-light .navbar-nav a.search-icon-trigger:hover {
  background-color: transparent;
}
.navbar-light .navbar-nav a.search-icon-trigger:hover svg {
  stroke: #E41E0F;
}

.search-icon-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-icon-trigger svg {
  transition: all 0.2s ease;
}

.search-icon-trigger:hover svg {
  stroke: white;
}

/* Search Modal Styling */
#searchModal .modal-header {
  background-color: #E41E0F;
  color: white;
  border-bottom: none;
}

#searchModal .modal-header .close {
  color: white;
  opacity: 0.8;
}

#searchModal .modal-header .close:hover {
  opacity: 1;
}

#searchModal .form-control-lg {
  font-size: 1.1rem;
  padding: 0.75rem 1rem;
}

#searchModal .btn-primary {
  background-color: #E41E0F;
  border-color: #E41E0F;
}

#searchModal .btn-primary:hover {
  background-color: #c31a0c;
  border-color: #c31a0c;
}

/* Mobile responsive adjustments for search icon */
@media (max-width: 767.98px) {
  .search-icon-trigger {
    padding: 10px 15px !important;
    width: 100%;
    border-width: 1px;
  }
}

/* repeat of section navigation, only displayedo n mobile */
.mob-section-nav {
  background-color: #ccc;
}

@media (max-width: 767.98px) {
  .mob-section-nav {
    display: block;
  }
}

.section-nav {
  background-color: rgba(22, 20, 19);
}

.section-nav-bottom {
  border-bottom: solid 1px #666;
  z-index: 2;
  position: relative;
}

.section-nav .navbar {
  margin-left: 150px;
}


.section-nav .navbar li {
  margin: 15px 0;
  padding: 0 5px;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.section-nav .navbar .nav-link {
  padding: 0 10px;
}


@media (min-width: 992px) {
  .section-nav .navbar li:not(:last-child) {
    border-right: solid 1px #666;
  }
}

.section-nav .navbar a:hover,
.section-nav .navbar a:focus {
  color: #E41E0F !important;
}

.section-nav .navbar .navbar-active {
  color: #E41E0F !important;
}

.section-nav .navbar.navbar-learn-poker a:hover,
.section-nav .navbar.navbar-learn-poker .navbar-active,
.section-nav .navbar.navbar-learn-poker a:focus {
  color: #3498DB !important;
}

.breadcrumb-trail {
  background-color: #000;
  display: block;
  padding: 10px 0;
  z-index: 3;
  position: relative;
  border-bottom: 1px solid #666;
}

.breadcrumb-trail .container {
  display: block;
}


#featured-content .container {
  padding-top: 20px;
  padding-bottom: 20px;
}

#featured-content .breadcrumb-trail .container {
  padding-top: 10px;
  padding-bottom: 10px;
}

.breadcrumb {
  margin-bottom: 0;
}

.breadcrumb-trail .breadcrumb {
  background-color: transparent;
  font-size: 0.9rem;
  padding: 0;
}

@media (min-width: 768px) {
  .breadcrumb-trail {
    border: none;
    background-color: transparent;
    left: 0;
    right: 0;
  }

  #featured-content h1 {
    margin-bottom: 30px;
  }

  #featured-content .container {
    padding-top: 30px;
    padding-bottom: 40px;
  }


  #featured-content .breadcrumb-trail .container {
    padding-top: 20px;
    padding-bottom: 0;
  }


  #featured-content .breadcrumb-trail + .container {
    padding-top: 30px;
  }

  .breadcrumb-trail .breadcrumb {
    background-color: rgba(44, 62, 80, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 auto;
    font-size: 1rem;
    padding: .75rem 1rem;
  }

}

.breadcrumb-trail .breadcrumb > li {
  display: inline-block;
}

.breadcrumb-trail .breadcrumb > li span,
.breadcrumb-trail .breadcrumb > li a {
  color: #959595;
  border-bottom: none;
}



.breadcrumb-trail .breadcrumb > li .active,
.breadcrumb-trail .breadcrumb > li a:hover {
  color: #fff;
  border-bottom: 1px #fff dotted;
}

.breadcrumb-trail .breadcrumb .dropdown-menu li a:active,
.breadcrumb-trail .breadcrumb .dropdown-menu li a:hover {
  border-bottom: none;
}


/* in between each LI of breadcrumb, add content raquo; */
.breadcrumb-trail .breadcrumb > li + li::before {
  content: "\00bb";
  display: inline-block;
  color: #fff;
  margin: 0 4px;
}

/* for children, add a nice / between each item */
.breadcrumb-trail .breadcrumb > li.deeper + li.deeper::before {
  content: "/";
  display: inline-block;
  margin: 0 4px;
}

@media (min-width: 768px) {
  .breadcrumb-trail .breadcrumb > li + li::before {
    margin: 0 10px;
  }
  .breadcrumb-trail .breadcrumb > li.deeper + li.deeper::before {
    margin: 0 10px;
  }
}



@media (max-width: 767.98px) {
  .navbar-light .container {
    justify-content: flex-end;
  }
  .navbar-light .nav-link {
    text-align: center;
    font-size: 1.1rem;
    border-bottom: solid 1px rgba(119, 119, 119, 0.2);
    padding: 10px;
  }


  .navbar-light .dropdown.show .nav-link {
    border-bottom-color: transparent;
  }

  .navbar-light .nav-link:after {
    display: block;
    float: right;
    margin-top: 0.7rem;
    color: rgba(119, 119, 119, 0.5);
    /* animate the transform rotation */
    transition: transform 0.25s ease;
  }

  .navbar-light .dropdown.show .nav-link:after {
    transform: rotate(180deg);
  }

}

.dropdown-menu.show {
  margin-top: 0.5em;
  background-color: #161413;
  border: none;
  /* add a dropshadow */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.dropdown-menu.show li {
  margin: 0;
}
.dropdown-menu.show li {
  border: none !important;
}
.dropdown-menu.show li a:hover {
  color: #fff !important;
}

.dropdown-menu.show .dropdown-item {
  color: #fff;
}

/* Content areas */
#top-content,
#featured-content {
  z-index: 2;
  position: relative;
  background-color: #161413 !important;
  color: #fff !important;
}

#top-content .hl-box,
#featured-content .hl-box {
  max-width: 1140px;
  border: none;
  margin: 0 auto;
}

.btn-xl {
  padding: 0.5rem 1rem;
  font-size: 2rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

/* review table with progress bars */
.table-review td:last-child {
  width: 70%;
}

.table-review .progress {
  height: 30px;
  background-color: rgb(215, 219, 220);
}

.table-review .progress-bar {
  font-size: 14px;
}

/* video popup player */
.btn-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  cursor: pointer;
  background: repeating-linear-gradient(-55deg, #ddd, #ddd 10px, #eee 10px, #eee 20px);
  opacity: 0.3;
}

.btn-overlay-light {
  opacity: 0.1;
}

.btn-overlay:hover {
  transition: opacity 0.2s;
  opacity: 0;
}

#videoModal .modal-dialog {
  max-width: 1080px;
  margin: 30px auto;
}

#videoModal .modal-body {
  position: relative;
  padding: 0;
}

#videoModal .close {
  position: absolute;
  right: -30px;
  top: 0;
  z-index: 999;
  font-size: 2rem;
  font-weight: normal;
  color: #fff;
  opacity: 1;
}


/* old style used for POTW articles */
.top-stories-small {
  max-width: 200px;
  height: auto;
  margin: 0 0 10px 10px;
  float: right;
}


abbr.published[title], abbr.published[data-original-title], abbr.updated[title], abbr.updated[data-original-title] {
  text-decoration: none;
  cursor: inherit;
}


/* homepage widgets */
.card-news-top {
  height: 350px;
}

.card-news-top h2 {
  font-size: 3.5rem;
}

.card-news-top .card-img-overlay {
  overflow: hidden;
}

.card-homepage .card-body {
  padding: 12px;

}

/* when hovering over a card, transform it so it pops 'bigger' towards the user, with a transition */
.card-homepage:hover {
  transform: scale(1.02);
  transition: transform 0.1s;
}

.card-homepage h2.card-title {
  font-size: 1.5rem;
  font-weight: bold;
}

.card-homepage h2.card-title a {
  border-bottom: none;
}

@media (min-width: 992px) {
  .card-homepage:not(:first-child) {
    border-left: none;
  }
}

.homepage-podcasts .podcast-image {
  display: block;
  max-height: 120px;
  overflow: hidden;
}

.homepage-podcasts .card-body {
  padding: 8px;
  font-size: 14px;
}


/* ratio boxes - element should have background-image set */
/* https://css-tricks.com/aspect-ratio-boxes/ */
.ratio-box {
  height: 0;
  overflow: hidden;
  background-size: contain;
  background-repeat: no-repeat;
}

.ratio-box-4-by-3 {
  padding-top: 75%;
}

.ratio-box-16-by-9 {
  padding-top: 56.25%;
}

.ratio-box-2-by-1 {
  padding-top: 50%;
}

.card-news-top .card-img-overlay .card-subtitle {
  text-overflow: ellipsis;
}

.card-news-top .h4 span {
  background-color: black;
  padding: 0.3rem 0;
  line-height: 2.8rem;
}


@media (min-width: 992px) {
  .row-non-poker ul:not(:first-child) {
    border-left: none;
  }
}

.row-non-poker .news-list {
  background: #f5f5f5;
  border: 1px solid rgba(0,0,0,.125)
}

@media (min-width: 992px) {
  .row-non-poker .col:not(:first-child) .news-list {
    border-left: none;
  }
}

.row-non-poker li {
  border-bottom: 1px dotted rgba(0,0,0,.125) !important;
}

.row-non-poker li:last-child {
  border-bottom: none !important;
}

.latest-on-pro {
  background: url("../img/pro-homepage-bg-light.jpg") no-repeat top center;
}

.newsletter-signup {
  background-size: cover;
  background: url("../img/newsletter-bg.jpg") no-repeat top right;
}

.sports101 {
  background: url("../img/sports101.jpg") no-repeat top left;
}

.sports101 li {
  margin: 0;
  padding: 0.75rem 0;
  border-top: dotted 1px #2CC3E8;
}

.latest-on-f5 {
  background: url("../img/f5-bg.gif") repeat top left;
}

.latest-pfpod {
  background: url("../img/pf-pod.jpg") no-repeat bottom right;
}

.latest-on-f5 li.media {
  border-bottom: #2CC3E8 dotted 2px;
}


/* News articles */
.image-credit {
  font-size: 75%;
  line-height: 1.4;
}

.image-credit a {
  color: #6e7777 !important;
}

.news-article figure .img-fluid {
  width: 100%; /* stretches to full width */
}

.news-article .media-embed {
  margin-bottom: 1rem;
}

/* borrowed from .embed-responsive-16by9 */
.media-embed-youtube::before, .media-embed-vimeo::before, .media-embed-twitch::before {
  padding-top: 56.25%;
}

.media-embed-doc iframe {
  width: 100%;
  height: 500px;
}

.news-article table {
  border: 1px solid #dee2e6;
}

.news-article table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  background-color: transparent;
}

.news-article table {
  background-image: url('../img/table-watermark.png');
}

.news-article table {
  border-collapse: collapse;
}

.news-article tbody tr:nth-of-type(odd) {
  background-color: rgba(236, 240, 241, 0.7);
}

.news-article th, .news-article td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.news-article .article-message {
  color: #95a5a6 !important;
  text-align: right;
  margin-bottom: 1rem;
  font-style: italic;
}

.news-article .article-message a {
  color: inherit;
  border-bottom: dotted 1px #95a5a6;
  font-weight: bold;
}

.news-article .article-message a:hover {
  text-decoration: none;
  color: #E41E0F;
}

.news-article aside.read-more {
  /* create a drop shadow down and to the right */
  box-shadow: 3px 3px 5px rgba(0,0,0,0.5);

  overflow: hidden; /* clip children to border radius */
  margin: 0 0 15px 15px;
  background-color: white;
  border: 1px solid #E41E0F;
  float: right;
  width: 302px;
  border-radius: 5px;
}

@media only screen and (max-width: 500px) {
  .news-article aside.read-more {
    float: none;
    margin: 0 auto 15px auto;
  }

}

.news-article aside.read-more span {
  display: block;
  border-bottom: solid 1px #E41E0F;
  background-color: #161413;
  text-align: center;
  padding: 10px 0;
  margin-bottom: 0;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 14px;
}

.news-article aside.read-more span a {
  color: white;
  border-bottom: none;
}

.news-article aside.read-more span a:hover {
  color: white;
}

.news-article aside.read-more img {
  width: 300px;
  height: auto;
}


.news-article .inlineimage-right {
  margin: 0 0 10px 20px;
}

.news-article .inlineimage-left {
  margin: 0 20px 10px 0;
}

.rg-message {
  text-align: center;
  padding: 1rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  margin-bottom: 1em;
  margin-top: 1rem;
}

#featured-content .rg {
  color: #6e7777;
  font-style: italic;
  text-align: center;
  margin-top: 1rem;
}

@media (min-width: 992px) {
  .lander #page-body .rg-message {
    /* blow it out like the headings */
    margin-top: 4rem;
    margin-left: -8.3333333333%;
    margin-right: -8.3333333333%;
  }
}


/* this ofsets headings with ID anchors so that jumping to them goes low enough so they
  are not obscured with a floating navbar */
.news-article h2[id],
.news-article h3[id],
.news-article h4[id] {
  padding-top: 90px !important;
  margin-top: -60px !important;
}

.news-article .flag-l {
  margin-top: -12px;
  margin-bottom: -12px;
}

.news-article .flag-m {
  width: 48px;
  height: 48px;
  margin-top: -8px;
  margin-bottom: -8px;
}

.news-article .flag-s {
  width: 24px;
  height: 24px;
}


/* pull quotes */
.pull-quote {
  quotes: "“" "”" "‘" "’";
  text-indent: -0.3em; /* sets the opening quote outside the box */
  text-align: left;
  display: block;
  width: 50%;
  float: right;
  font-size: 30px;
  line-height: 38px;
  margin: 0 0 0 20px;
  padding: 10px 0 10px 10px;
  font-style: italic;
}

.pull-quote:before {
  content: open-quote;
}

.pull-quote:after {
  content: close-quote;
}

.pull-quote.inline {
  margin: 20px 0 20px 20px;
}

@media only screen and (max-width: 979px) {
  .pull-quote {
    float: none;
    display: block;
    width: auto;
    font-size: 26px;
    line-height: 34px;
    margin: 20px !important;
    padding-right: 10px;
  }

}



@media only screen and (max-width: 768px) {
  .news-article .inlineimage img {
    max-width: 300px;
    height: auto;
  }
}

/* a large floated image is 400 wide, so we should break float at 500 so text not squashed on a float */
@media only screen and (max-width: 500px) {
  .news-article .inlineimage {
    float: none !important;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
    text-align: center;
    height: auto;
    display: block;

  }
  .news-article .inlineimage img {
    max-width: 100%;
  }
}

@media only screen and (max-width: 490px) {
  .pull-quote {
    font-size: 20px;
    line-height: 24px;
  }

}

.graphsnapshot {
  padding: 40px 0;
}


/* pill boxes on landing pages */

.pill-box {
  transition: transform 0.3s ease;
}
.pill-box:hover {
  transform: translateY(-5px);
}

.pill-box .category-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 0.25rem;
  transition: background 0.3s ease;
}
.pill-box:hover .category-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 60%, rgba(0,0,0,0.2) 100%);
}

/* Special defaults for landing page tables */
.table-lander .badge {
  font-size: 14px;
  display: block;
  margin-bottom: 0.5rem;
}

.table-lander ul {
  list-style-type: none;
  padding-left: 0;
}

.table-lander li {
  margin-left: 1.6rem;
  margin-bottom: 0.2rem;
}

.table-lander li:before {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  content: "\2714";
  font-size: 18px;
  font-weight: bold;
  margin-left: -1.6rem;
  margin-right: 0.6rem;
  color: #E41E0F;
}

/* spreaker articles */
.play-from-here {
  width: 35px;
  height: 36px;
  background-image: url('../img/podcast-play.png');
  display: block;
  float: left;
  border-bottom: 0;
  margin-right: 10px;
}

/* background takeovers */
.body-takeover {
  overflow-x: hidden;
}

.body-takeover {
  background-color: black;
}

.body-takeover #top-header,
.body-takeover #page-body {
  background-color: white;
}

.body-takeover #site-nav {
  background-color: transparent;
  padding: 0 !important;
}

.body-takeover #site-nav .container {
  background-color: #eee;
}

.homepage.body-takeover #featured-content {
  display: none;
}

.homepage #page-body {
  margin-top: 0 !important;
  padding-top: 0;
}

.homepage-top {
  background-image: url('../img/abstract-bg-3.jpg');
}
.homepage-top a {
  border-bottom: none;
}

.homepage-top .position-relative:hover {
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

.homepage-top .position-relative:hover .stretched-link {
  color: #E41E0F !important; /* Golden yellow accent */
  text-shadow: 0 0 8px rgba(255, 193, 7, 0.3);
  transition: all 0.25s ease;
}


.homepage-top .position-relative:hover img {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.2);
  transition: all 0.25s ease;
}


.homepage .row-below-fold .position-relative:hover img {
  transform: scale(1.1);
  filter: brightness(1.1);
  transition: all 0.3s ease;
}

.homepage .row-below-fold .position-relative:hover .h5 {
  color: #ffc107 !important;
  transition: color 0.3s ease;
}


.homepage .pf-guides {
  margin-top: 12px;
}

.homepage .pf-guides img:hover {
  transform: scale(1.02);
  transition: all 0.25s;
}

.homepage .row-below-fold h2 {
  font-weight: bold;
  line-height: 2rem;
}

.homepage .row-below-fold h2 a {
  border-bottom: none;
}

.homepage .latest-on-f5,
.homepage .latest-on-pro,
.homepage .pf-guides,
.homepage .row-below-fold .media,
.homepage .row-below-fold .embed-responsive,
.homepage .row-below-fold img {
  border-radius: 4px;
}


.body-takeover #featured-content .container {
  background-color: black;
}


#full-takeover {
  position: absolute;
  top: 0;
  z-index: 0;
}


/* One single image takeover */
@media (max-width: 799.98px) {

  #full-takeover {
    left: 0;
    right: 0;
  }

  #full-takeover img.desktop {
    display: none;
  }

  #full-takeover .mobile {
    width: 100%;
    aspect-ratio: 2/1;
    background-repeat: no-repeat;
    background-position: top left;
    background-size: cover;
  }

  /* 2/1 aspect ratio of top image; we add same amount of a spacer at top of page */
  .body-takeover #all-body::before {
    pointer-events: none;
    position: relative;
    content: "";
    display: block;
    width: 100%;
    aspect-ratio: 2/1;
  }

}

@media (min-width: 800px) {
  /* center the image even tho absolutely positioned */
  #full-takeover {
    left: 50%;
    transform: translateX(-50%);
  }
  #full-takeover .mobile {
    display: none;
  }

  /* Fixed top padding matches height of top bar of bgt */
  .body-takeover #all-body {
    padding-top: 129px;
    max-width: 1140px;
    margin: 0 auto;
  }

  .body-takeover #top-header,
  .body-takeover .section-nav,
  .body-takeover .section-nav-bottom,
  .body-takeover #featured-content,
  .body-takeover #page-body {
    position: relative;
  }
  /* Ascending z-index so each section paints above the ones below it in the DOM —
     otherwise nav dropdowns from .section-nav are covered by #featured-content / #page-body. */
  .body-takeover #top-header        { z-index: 6; }
  .body-takeover .section-nav       { z-index: 5; }
  .body-takeover .section-nav-bottom{ z-index: 4; }
  .body-takeover #featured-content  { z-index: 3; }
  .body-takeover #page-body         { z-index: 2; }
}



@media (max-width: 991.98px) {
  .page-nav .form-inline {
    left: 0;
    bottom: 0;
    right: 0;
    padding: 5px 10px;
    background-color: rgb(22, 20, 19);
    position: fixed;
    z-index: 3;
  }

  /* if the region switcher is fixed to bottom, offset this button */
  body.has-region-override .page-nav .form-inline {
    bottom: 34px;
  }
}


.page-nav {
  /*noinspection CssInvalidPropertyValue*/
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0;
  bottom: auto;
  z-index: 3;
  border-bottom: solid 1px #aaa;
}

.page-nav .navbar-toggler {
  /* only shows on mobile */
  display: none;
  align-items: center;
  width: 100%;
  border: none;
  margin: 2px;
  padding: 0;
  color: rgb(33, 37, 41);
}

.page-nav .navbar-toggler .toggler-header {
  flex-grow: 1;
  font-weight: bold;
  font-size: 1rem;
  text-align: left;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.page-nav .navbar-toggler .navbar-toggler-icon {
  flex-grow: 0;
  margin: 5px;
  width: 54px;
  height: 38px;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 4px;
  background-size: auto;
}

.page-nav .nav-links {
  overflow-x: hidden;
}
.page-nav .navbar {
  padding: 0;
}

.page-nav .jump-to-top {
  border-radius: 50% !important;
  position: absolute;
  right: 0;
  top: 125%;
  opacity: 0.35;
  font-size: 2.3rem;
  text-align: center;
  width: 4rem;
  height: 4rem;
  color: #aaa;
  background-color: #fff;
  border: solid 1px #aaa;
  transition: all 500ms;
}

.page-nav .jump-to-top:hover {
  opacity: 0.6;
  color: #b3180c;
  border-color: #b3180c;
}

.page-nav .nav-link {
  padding: 20px !important;
  margin: 0 !important;
  text-align: center;
  font-size: 1rem;
  border-top: solid 2px transparent;
  border-bottom: solid 2px transparent;
  white-space: nowrap;
}

.page-nav a.nav-link.active,
.page-nav a.nav-link:hover {
  color: black !important;
  background-color: #f6f9fa;
  border-color: #f6f9fa;
}

.page-nav a.nav-link.active {
  border-bottom-color: #e74c3c;
}

.page-nav a.btn {
  white-space: nowrap;
}

.page-nav .form-inline .btn {
  margin: 3px 0;
}

@media (max-width: 767.98px) {
  /* on smaller devices, the nav is hidden and just image is shown - make it full width */
  .page-nav .navbar-toggler {
    display: flex;
    line-height: 1.5rem;
  }
  .page-nav .form-inline {
    width: 100%;
  }

  .page-nav .nav-link {
    padding: 10px 15px !important;
    width: 100%;
    border-width: 1px;
  }
  .page-nav .jump-to-top {
    display: none;
  }
}

/* site footer */
footer a, footer strong {
  color: #758181;
  text-decoration: none;
  border-bottom: none;
}

footer a:hover {
  border-bottom: dotted 1px #95a5a6 !important;
}


/* ------------ responsive tables -------------------*/
.r-table {
  color: rgb(33, 37, 41) !important;
}

.r-head {
  display: none;
}

.r-head > div, .r-row > div {
  padding: 0.5rem;
  text-align: center;
}

.r-row {
  margin-bottom: 1rem;
  border-radius: 0.25rem !important;
  border: 2px solid #dee2e6;
  background-color: rgba(236, 240, 241, 0.7);
}

.r-row {
  background-color: white;
}


@media (min-width: 992px) {
  .r-table {
    display: table;
    margin-bottom: 1.5rem;
    border: 1px solid #dee2e6;
  }

  .r-row {
    background-color: #fff;
  }

  .r-row:nth-of-type(2n) {
    background-color: #f2f2f2;
  }

  .r-head, .r-row {
    display: table-row;
    margin-bottom: 0;
  }

  .r-head > div, .r-row > div {
    display: table-cell;
    vertical-align: middle;
  }

  .r-head > div, .r-row > div {
    border-bottom: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6;
    padding: 0.75rem;
  }

}

.max-vh {
  max-height: 80vh;
  overflow-y: auto;
}

.r-head > div {
  font-size: 0.8rem;
  text-transform: uppercase;
  text-align: center;
  background-color: #2C3E50;
  color: #fff;
}

.r-row {
  font-size: 1.1rem;
}

.r-row small {
  font-size: 0.8rem;
}

.r-row .text-lg {
  font-size: 1.2rem;
}

.r-row .text-xl {
  font-size: 1.6rem;
}

/* specifics for comparison table */
.r-row .site {
  width: 100%;
  max-width: 300px;
  padding: 10px;
  margin: 0 auto;
}

.r-row .site a,
.r-row .site a:hover {
  border-bottom: none !important;
}

.r-row .site img {
  width: 100% !important;
  height: auto;
  border-radius: 0 0 0.25rem 0.25rem;
  border: 1px solid #E74C3C !important;
}

.r-row .site .badge {
  display: block;
  font-size: 14px;
  margin: 0;
  text-transform: uppercase !important;
  color: #fff;
  background-color: #E74C3C;
  padding: 0.5em;
  text-align: center;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* Review box v2 designs --- tweaks for new version of comparison table --- */
#featured-content {
  background-color: #222;
  background-image: url('../img/abstract-bg-2.jpg');
}

/* no image on homepage */
.homepage #featured-content {
  background-image: none;
  background-color: #000 !important;
}

#featured-content:has(.bg-abstract-1) {
  background-image: url('../img/abstract-bg-1.jpg');
}
#featured-content:has(.bg-abstract-1-fade) {
  background-image: url('../img/abstract-bg-fade.jpg');
  background-color: #000 !important;
}

#featured-content:has(.bg-abstract-2) {
  background-image: url('../img/abstract-bg-2.jpg');
}

#featured-content:has(.bg-abstract-3) {
  background-image: url('../img/abstract-bg-3.jpg');
}

#featured-content:has(.bg-abstract-4) {
  background-image: url('../img/abstract-bg-4.jpg');
}

#featured-content:has(.bg-poker-1) {
  background-image: url('../img/poker-bg-1.jpg');
}

#featured-content:has(.bg-poker-2) {
  background-image: url('../img/poker-bg-2.jpg');
}

#featured-content:has(.bg-poker-3) {
  background-image: url('../img/poker-bg-3.jpg');
}

.lander-box.v2 {
  margin-top: 20px;
}

.lander-box.v2 .rg {
  margin-top: 0 !important;
  padding-bottom: 0 !important;
}

.lander-box.v2 a:hover img {
  background-color: inherit !important;
}

.lander-box.v2 img {
  transition: transform .2s, -webkit-transform .2s;
}

.lander-box.v2 img:hover {
  /*noinspection CssUnknownProperty*/
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.lander-box.v2 .btn-success {
  transition: transform .2s, -webkit-transform .2s;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.lander-box.v2 .btn-success:hover {
  /*noinspection CssUnknownProperty*/
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  background-color: rgb(24, 188, 156);
}

.lander-box.v2 .btn-success:focus {
  background-color: rgb(24, 188, 156);
}

.lander-box.v2 .ticktags {
  margin: -2rem 0 1rem 0;
}

.lander-box.v2 .bonus-intro {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 1rem;
  color: rgb(24, 188, 156);
}

.lander-box.v2 .ticktag::before {
  left: 0;
  top: -5px;
  font-size: 22px;
}

.lander-box.v2 .ticktag {
  padding-left: 25px;
  padding-right: 25px;
  margin-right: 0;
  margin-bottom: 0;
  color: #ccc;
}

.lander-box.v2 .ticktag strong {

  color: rgb(24, 188, 156);
  font-size: inherit;
}

.lander-box.v2 .card-deck .card {
  border: solid 1px #444;
  transition: all 0.2s;
  background-color: transparent;
}

.lander-box.v2 .card-deck .card .card-body {
  padding-top: 0;
  padding-bottom: 0;
}

.lander-box.v2 .card-deck .card:hover {
  /*noinspection CssUnknownProperty*/
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  border: solid 1px #aaa;
  background-color: black;
  box-shadow: none;
}

.lander-box.v2 .rating-bar {
  margin-bottom: 10px;
}

.lander-box.v2 .rating-bar > div {
  color: #999;
  font-size: 11px;
  margin-top: 5px;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.lander-box.v2 .rating-bar > div.progress {
  width: 100%;
  height: 5px;
  margin: 0;
  background-color: #444;
}

.lander-box.v2 .rating-bar .progress-bar {
  color: transparent;
}

.lander-box.v2 p {
  color: #ccc;
}

.lander-box.v2 em {
  color: white;
  font-weight: bold;
  font-style: normal;
}

.lander-box.v2 img {
  float: right;
  max-width: 200px;
  margin-left: 20px;
  margin-bottom: 20px;
  height: auto;
}

.lander-box.v2 .row > div {
  padding: 0;
}

.lander-box.v2 > .row > div:nth-child(2) {
  padding-left: 1.5rem;
}

.lander-box.v2 > .row > div {
  padding: 0.5rem;
}

.lander-box.v2 .rg p {
  margin-bottom: 0;
}

.lander-box.v2 .rg a {
  color: inherit;
  border-bottom: dotted 1px #95a5a6;
}

.lander-box.v2 .card-deck .card a {
  color: white;
}

.lander-box.v2 .card-header {
  border: none;
}

.lander-box.v2 .card {
  background-color: transparent;
  border: solid 1px #444;
  padding: 10px;
}

.lander-box.v2 .card-footer,
.lander-box.v2 .card-body,
.lander-box.v2 .card-header {
  padding: 0.5rem !important;
}

.lander-box.v2 .card-deck .card-body {
  font-size: 16px;
  color: #ccc;
}

.lander-box.v2 .card-deck .card .bonus,
.lander-box.v2 .card-deck .card:hover .bonus {
  padding: 0;
  color: rgb(232, 62, 140) !important;
}

.lander-box.v2 .bonus-boxes .card .bonus::after,
.lander-box.v2 .card-deck .card .bonus::after {
  background-color: inherit;
  color: rgb(232, 62, 140) !important;
}

.lander-box.v2 .card-deck .card:hover code {
  color: rgb(232, 62, 140) !important;
}

.lander-box.v2 .card-deck .card-header {
  color: #aaa;
}

.lander-box.v2 .card-deck .text-danger {
  color: #fff !important;
}

.lander-box.v2 .list-group-item {
  background-color: transparent;
  padding: 0 0.5rem !important;
  border: none;
}

@media (max-width: 991.98px) {
  .lander-box.v2 h1 {
    text-align: left;
  }

  .lander-box.v2 .ticktag::before {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .lander-box.v2 img {
    display: none;
  }
  .lander-box.v2 > .row > div:nth-child(2) {
    padding-left: 0;
  }
  .lander-box.v2 .rg {
    font-size: 0.9rem;
  }
  .lander-box.v2 .btn-success {
    display: none;
  }
  .lander-box.v2 > .row > div:nth-child(2) {
    display: none;
  }
  .lander-box.v2 .ticktag {
    padding-left: 23px;
    padding-right: 20px;
  }
}


@media (max-width: 575.98px) {
  .lander-box.v2 h1 {
    font-size: 2.5rem;
  }
  .lander-box.v2 .ticktags {
    background-color: #000;
    padding: 15px 10px;
  }
  .lander-box.v2 .ticktag {
    padding-left: 0;
    padding-right: 8px;
  }
  .lander-box.v2 .ticktag strong {
    font-weight: normal;
  }
}




/* Table-2 designs --- tweaks for new version of comparison table --- */
.r-table.v2 .r-row {
  font-size: 16px;
}

.r-table.v2 .r-row .site {
  vertical-align: top;
}

.r-table.v2 .r-row .text-xl {
  font-size: 1.4rem;
}

.r-table.v2 .r-row .bonus .my-2 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.r-table.v2 .r-row .bonus .badge {
  background-color: transparent;
  color: #18BC9C;
  border-bottom: solid 1px #18BC9C;
  margin-bottom: 10px;
  font-size: 14px;
}

.r-table.v2 .r-row p {
  line-height: 1.5;
  margin-bottom: 0.125rem !important;
}

.r-table.v2 .r-row .site img {
  padding: 20px !important;
  border: none !important;
  background-color: transparent !important;
  border-bottom-left-radius: 4px !important;
  border-bottom-right-radius: 4px !important;
}


.r-table.v2 .r-row .site .badge {
  font-size: 12px;
  padding: 5px;
  font-weight: normal;
  color: white;
  border-bottom-left-radius: 4px !important;
  border-bottom-right-radius: 4px !important;
}

@media (max-width: 768px) {
  .r-table.v2 .r-row .site {
    max-width: 100%;
  }
  .r-table.v2 .r-row .site img {
    padding: 0 !important;
  }
}


.r-table.v2 .r-row li:before {
  color: #18BC9C; /* success */
}
.r-table.v2 .r-row .btn-cta {
  text-transform: uppercase;
  background-color: #18bc9c;
  border-color: #18bc9c;
}
.r-table.v2 .r-row .btn-cta:hover {
  background-color: #149a80;
  border-color: #128f76;
}


/* Table-3 designs --- Dec 2023 --- */

.r-table.v3 {
  display: block;
  border: none;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.r-table.v3 .r-row > div {
  padding: 0 10px;
}
.r-table.v3 .r-row {
  font-size: 1rem;
  position: relative;
}

.r-table.v3 .site {
  margin: 0;
  max-width: 100%;
  width: 100%;
  text-align: left;
}

.r-table.v3 .site img {
  height: 80px;
  padding: 0 !important;
  width: auto !important;
  margin: 20px 0 !important;
  display: block;
}

.r-table.v3 .site .text-sm {
  color: #666;
  max-width: 55%;
  margin-left: 1.4rem;
  margin-bottom: 0.5rem;
}

.r-table.v3 .r-head {
  display: none;
}

.r-table.v3 .badge {
  display: none;
}

.r-table.v3 img {
  border: none !important;
  padding: 10px;
}

.r-table.v3 .rating-circle {
  box-shadow: none;
  border: none !important;
  border-radius: inherit !important;
  background-color: transparent;
  height: auto;
  width: auto;
}

.r-table.v3 .rating-circle .score {
  font-size: 1.5rem;
}

.r-table.v3 .highlights {
  width: 100%;
  margin: 0;
}

.r-table.v3 .bonus {
  position: absolute;
  top: 20px;
  right: -10px;
  max-width: 40%;
  width: 140px;
}

.r-table.v3 .bonus .text-xl {
  /* US sportsbooks has a text-based bonus information rather than rating */
  text-transform: uppercase;
  font-size: 1.2rem;
  line-height: 1.3rem;

}

.r-table.v3 .signup .btn-cta {
  text-transform: uppercase !important;
  white-space: nowrap;
  font-size: 1rem !important;
  background-color: #18bc9c;
  border-color: #18bc9c;
}

.r-table.v3 .btn-cta:hover {
  color: #fff;
  background-color: #149a80;
  border-color: #128f76;
}

.r-table.v3 .signup {
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.r-table.v3 .signup a:not(.btn) {
  color: #666;
}

.r-table.v3 .signup a:not(.btn) + * {
  margin-top: 0.5rem;
}

.r-table.v3 .signup p {
  margin-bottom: 0.25rem !important;
  font-size: 0.8rem;
}

.r-table.v3 .signup p strong {
  font-weight: normal;
}

.r-table.v3 .signup code {
  font-size: 0.9rem;
}

.r-table.v3 .signup .btn {
  margin-bottom: 0.5rem !important;
}

.r-table.v3 li::before {
  font-size: 1rem;
}

.r-table.v3 .bonus .text-muted,
.r-table.v3 .highlights .text-muted {
  display: none;
}

@media (min-width: 768px) {
  .r-table.v3 .r-row > div {
    padding: 0.5rem;
  }

  .r-table.v3 .bonus .text-muted,
  .r-table.v3 .highlights .text-muted {
    display: block;
  }

  .r-table.v3 .r-row {
    border-radius: 0.25rem !important;
    background-color: #fafafa;
    margin-bottom: 10px;
    border-color: transparent;
    display: flex;
    align-items: center;
    width: 100%;
    transition: transform .3s, -webkit-transform .3s;
    /* cursor: pointer; */
  }

  .r-table.v3 .r-row:hover {
    /*noinspection CssUnknownProperty*/
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
  }

  .r-table.v3 .r-head {
    background-color: black;
  }

  .r-table.v3 p.text-muted {
    color: #ccc !important;
  }

  .r-table.v3 p.text-xl {
    font-size: 1.2rem;
    text-transform: uppercase;
  }

  .r-table.v3 .r-head > div,
  .r-table.v3 .r-row > div {
    background-color: transparent;
    border: none;
  }
  .r-table.v3  .site {
    max-width: 200px;
  }

  .r-table.v3 .site img {
    width: 100% !important;
    height: auto !important;
    padding: 0 10px !important;
    margin: 0 !important;
  }

  .r-table.v3 .site .text-sm {
    margin-left: 0;
    margin-top: 0.5rem;
    max-width: 100%;
    text-align: center;
  }

  .r-table.v3 .highlights {
    max-width: inherit;
  }

  .r-table.v3 .highlights ul {
    margin: 1rem 0 1rem 0;
  }
  .r-table.v3 .highlights li {
    margin-bottom: 0.25rem;
  }


  .r-table.v3 .r-row .highlights .text-success {
    color: inherit !important;
  }

  .r-table.v3 .rating-circle .score {
    font-size: 2rem;
    line-height: 3rem;
  }

  .r-table.v3 .r-row .bonus {
    width: 15%;
    position: inherit;
    top: inherit;
    right: inherit;
  }

  .r-table.v3 .r-row .highlights {
    width: 40%;
  }

}

@media (min-width: 992px) {
  .r-table.v3  .site {
    max-width: 250px;
  }
}

/* ---------------------------------------------------------------- */

@media (min-width: 768px) {
  /* on tablets, we do floating logos */
  .r-row .site {
    float: right;
  }
  .r-row .bonus {
    clear: both;
    background-color: #f2f2f2;
    margin: 10px;
  }
}

@media (min-width: 992px) {
  /* fixed width cells */
  .r-head .site, .r-row .site             { width: 20% }
  .r-head .highlights, .r-row .highlights { width: 35% }
  .r-head .bonus, .r-row .bonus           { width: 20% }
  .r-head .signup, .r-row .signup         { width: 25% }

  /* remove some of the tablet specific stuff */
  .r-row .site {
    float: none;
  }
  .r-row .bonus {
    background-color: inherit;
  }
}

.latest-updates {
  padding: 1.5rem !important;
  background-color: rgba(33,103,230,.05);
}

.latest-updates-more {
  padding: 0 !important;
  background-color: transparent;
  margin-bottom: 4rem;
}

.latest-updates ul {
  padding-left: 0;
  position: relative;  /* needed so absolute positioned aside is relative to teh box */
  list-style: none;
  margin-bottom: 0;
}

.latest-updates li {
  border-top: dotted 1px #aaa;
  margin: 0 !important;
  padding: 1rem 1rem 1rem 4rem;
}


.latest-updates li .dt {
  width: 4rem;
  margin-left: -4rem;
  text-align: left;
  position: absolute;

  margin-top: 0.1rem;
  font-size: 90%;
  color: #999;
  text-transform: uppercase;
}

.latest-updates li:first-child {
  border-top: none;
}

.latest-updates-history li .dt {
  width: 3.5rem;
  margin-left: -3.5rem;
  margin-top: 0.1rem;
  font-size: 90%;
  color: #999;
  text-transform: uppercase;
  display: inline-block;
}

.key-takeaways {
  padding: 1rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  margin-bottom: 1em;
}

.key-takeaways .h3 {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  color: #6c757d;
}

.key-takeaways ul {
  margin-bottom: 0;
  padding-left: 20px;
}

.key-takeaways li {
  margin-top: 1rem !important;
  list-style: none;
}

.key-takeaways li:before {
  font-family: inherit;
  content: "\2014"; /* mdash character */
  font-size: 18px;
  font-weight: normal;
  margin-left: -1.6rem;
  margin-right: 0.6rem;
  color: #6c757d; /* grey color matching the heading */
}


ul.checks,
.r-row ul {
  list-style-type: none;
  padding-left: 0;
}

ul.checks li,
.r-row li {
  margin-left: 1.6rem;
}

ul.checks li {
  margin-top: 0.3rem;
  margin-bottom: 0.3rem;
}

ul.checks li:before,
.r-row li:before {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  content: "\2714";
  font-size: 22px;
  font-weight: bold;
  margin-left: -1.6rem;
  margin-right: 0.6rem;
  color: #E41E0F;
}

ul.checks-success li:before {
  color: #18BC9C;
}

ul.checks-info li:before {
  color: #3498DB;
}

ul.checks-warning li:before {
  color: #FAA31B;
}

ul.checks-sm li:before {
  font-size: 20px;
}

.r-row ul {
  text-align: left;
}

.r-row p {
  margin-bottom: 0.25rem;
}

.hl-box {
  margin-bottom: 1.5rem;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
  display: block;
  border: 1px solid #e74c3c;
}

.hl-box.hl-success {
  border: 1px solid #18BC9C;
  box-shadow: 0 0 5px #18BC9C;
}

.hl-box.hl-box-fill .hl-pic-fill {
  float: right;
  max-width: 60%;
  padding: 1.5rem;
}

@media (min-width: 991.98px) {
  .hl-box {
    display: flex;
  }
  .hl-box.hl-box-fill {
    display: block;
  }

  .hl-box.hl-box-fill .hl-pic-fill {
    align-self: center;
    max-width: 40%;
  }
  .hl-box.hl-box-fill {
    display: flex;
  }

  .hl-box.hl-box-fill .hl-pic-fill {
    float: none;
  }
}


.hl-box-fill .hl-pic-fill img {
  width: 100%;
  height: auto;
}



.hl-box .hl-pic {
  background-color: #000;
  background-image: url('../img/phone-bg.jpg');
  background-size: cover;
  flex-grow: 1;
  display: flex;
  align-self: stretch;
}

.hl-box .hl-pic a {
  border: none !important;
  align-self: center;
  text-align: center;
  flex-grow: 1;
  padding: 2rem 1rem;
}

.hl-box .hl-pic-empty {
  height: 100%;
  min-width: 350px;
  min-height: 200px;
  background-position: center;
}

.hl-box .hl-pic img {
  aspect-ratio: 8 / 3;  /* to improve CLS */
  height: auto !important;
  max-width: 250px !important;
  min-width: 150px !important;
  padding: 0.5rem !important;
}

.hl-box .hl-info {
  flex-grow: 1;
  padding: 1.5rem;
}

.hl-box .hl-pic.hl-pic-full a {
  padding: 0;
  height: 100%;
}

.hl-box .hl-pic.hl-pic-full img {
  height: 100% !important;
  width: 100% !important;;
  object-fit: cover;
  aspect-ratio: auto !important;;
  max-width: initial !important;;
  min-width: initial !important;;
  padding: 0 !important;
}


@media (max-width: 767.98px) {
  .hl-box .hl-info {
    padding: 0.8rem;
    font-size: 15px;
  }
  .hl-box .hl-info .btn-lg {
    font-size: 1.2rem;
  }
  .hl-box .hl-info .text-xl {
    font-size: 1.3rem;
    line-height: 1.8rem;
  }
}

/* CTA button defaults to red (btn-danger), large and full width (btn-block) */
.r-row .btn-cta {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
  border-radius: 0.3rem;
  color: #fff;
  background-color: #E74C3C;
  border-color: #E74C3C;
}

.r-row .btn-cta:hover {
  color: #fff;
  background-color: #e12e1c;
  border-color: #d62c1a;
}


/* -------------- RATING CIRCLES ---------------------------------- */
.rating-circle {
  clear: both;
  text-align: center;
  background-color: #fff;
  border-radius: 50% !important;
  border: 4px solid #18BC9C !important;
  width: 150px;
  height: 150px;
  font-size: 0.6rem;
  line-height: 1.5rem;
  text-transform: uppercase;
  color: #777;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.rating-circle .score {
  color: #000;
  font-size: 2rem;
  line-height: 2.5rem;
}



/* --------------- 2022 NEWSLETTER ---------------------------------------------------------- */

.newsletter-body #page-body {
  padding-bottom: 0 !important;
  display: none;
}

.newsletter-body footer {
  margin-top: 0 !important;
}

.newsletter {
  background-color: #919fb9;
  background-image: url(../img/gto-newsletter-background.jpg);
  background-size: cover;
  color: white;
  font-size: 120%;
  padding: 100px 0 300px 0;
}

.newsletter h1 {
  font-size: 4rem;
  color: white;
}


.newsletter h1 em {
  font-style: normal;
  color: #ffbc01;
}

.newsletter-content {
  background-color: rgba(108, 126, 161, 0.8);
  padding: 4rem 10rem;
}

.newsletter p {
  margin-bottom: 1.25rem;
}

/* --------------- LANDING PAGE CSS ---------------------------------------------------------- */
.hero {
  text-align: center;
  font-size: 1.3rem;
}
.hero h1, .hero .h1 {
  font-size: 3.2rem;
  font-weight: bold;
}
.hero h2, .hero .h2 {
  font-size: 2rem;
}
.hero h3, .hero .h3 {
  font-size: 1.5rem;
}
.hero .text-sm {
  font-size: 1.2rem;
}
.hero figure {
  margin-bottom: 0;
}
.hero figcaption {
  font-size: 0.9rem;
}


@media (min-width: 992px) {
  .hero {
    font-size: 1.4em;
  }
  .hero h1, .hero .h1 {
    font-size: 4.5rem;
    font-weight: bold;
  }
  .hero h2, .hero .h2 {
    font-size: 3rem;
  }
  .hero h3, .hero .h3 {
    font-size: 2rem;
  }
  .hero figure {
    margin-bottom: -3.45rem;
  }
  .hero figcaption {
    margin-right: 1.5rem;
    margin-top: -3.5rem;
    padding-bottom: 0.5rem;
    font-size: 1rem;
  }
}

/* for a #featured-content that contains .hero-learn, change the background image */
#featured-content:has(.hero-learn) {
  background-image: url('../img/hero-learn-bg.jpg');
}

.page-body {
  /* ensure any scrolling happens in the article, not the whole page */
  overflow-y: auto;
  overflow-x: hidden;
}

.body-newsarticle #featured-content {
  padding-bottom: 80px;
}

.body-newsarticle .title-prefix {
  letter-spacing: 0.15em;
  font-weight: normal;
  display: flex;
  align-items: center;
  text-align: center;
  color: #E41E0F;
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.body-newsarticle .title-prefix::before,
.body-newsarticle .title-prefix::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: #E41E0F;
}

.body-newsarticle .title-prefix::before {
  margin-right: 1rem;
}

.body-newsarticle .title-prefix::after {
  margin-left: 1rem;
}

.body-newsarticle #page-body {
  margin-top: -100px;
}

.news-article figure img {
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
}
.news-article .figure-img {
  margin-bottom: 40px;
}


/* YT shorts */
.yt-short::before {
  padding-top:177.7777777778%
}

.homepage-shorts .yt-short img {
  /* let the image expand out left and right equally; just showing the middle section which has the actual thumbnail at this ratio */
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 50% 50%;
}

/* When user mouses over, zoom into it by 5% */
.homepage-shorts .yt-short:hover {
  transform: scale(1.05);
  z-index: 2;
  position: relative;
  transition: transform 0.1s;
}


.social-share {
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
  z-index: 10;
}

/* small headings on sidebars of article */
.article-side small {
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  color: #6c757d;
  display: inline-block;
}

.byline {
  font-size: 16px;
}

.byline > div {
  display: inline-block;
}

.byline > div {
  margin: 0 1rem;
}

@media (min-width: 992px) {
  .byline > div {
    margin-bottom: 1rem;
    margin-left: 0;
    margin-right: 0;
    display: block;
  }

  .article-side small {
    display: block;
  }

}


.byline .headshot img {
  width: 100%;
  height: auto;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ccc;
  padding: 2px;
}

.byline .headshot img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

/*
p(callout). *Look out for these key takeaways!* Throughout, you'll find the most useful information highlighted in these blue boxes.
*/
.callout {
  padding: 20px;
  border-left: rgba(52, 152, 219) 10px solid;
  background-color: rgba(52, 152, 219, 0.1);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem !important;
}

.callout br {
  display: none;
}

.callout ul, .callout ol {
  margin: 0.5rem 0;
}

.callout li {
  margin-bottom: 0.25rem;
}

.callout > strong:first-child {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.callout a {
  border-bottom-color: #3498db;
}
.callout a:hover {
  color: #46aff6
}

.callout li::marker {
  font-weight: bold;
}

.callout a,
.callout strong,
.callout li::marker {
  color: #3498db;
}

.callout-success {
  border-color: #18BC9C;
  background-color: rgba(24, 188, 156, 0.1);
}

.callout-success a {
  border-bottom-color: #18BC9C;
}
.callout-success a:hover {
  color: #1cdcb7
}
.callout-success a,
.callout-success li::marker,
.callout-success strong {
  color: #18BC9C;
}

.callout-warning {
  border-color: #f39c12;
  background-color: rgba(243, 156, 18, 0.1);
}

.callout-warning a {
  border-bottom-color: #f39c12;
}
.callout-warning a:hover {
  color: #f5ad3c
}

.callout-warning a,
.callout-warning li::marker,
.callout-warning strong {
  color: #f39c12;
}

.callout-danger {
  border-color: #e74c3c;
  background-color: rgba(231, 76, 60, 0.1);
}

.callout-danger a {
  border-bottom-color: #e74c3c;
}
.callout-danger a:hover {
  color: #f17569
}

.callout-danger a,
.callout-danger li::marker,
.callout-danger strong {
  color: #e74c3c;
}


/* Lander-specific stuff */
.lander h3.border-bottom {
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}


.lander .news-article h2 {
  text-transform: uppercase;
  border-bottom: solid 1px black;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;

  /* this does the offset for navbar - plus a bit more */
  padding-top: 90px !important;
  margin-top: -60px !important;
}

.lander .news-article h3 {
  font-size: 1.4rem;
  line-height: 1.6rem;
  font-weight: normal;
  margin-top: 3rem;
}

.lander .news-article h4 {
  font-size: 1.2rem;
  line-height: 1.4rem;
  font-weight: normal;
}


/*full blowout elements that are normal on mobile */
@media (min-width: 992px) {
  .lander .news-article h3 {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }

}

.lander .news-article li {
  margin-bottom: 0.5rem;
}

/*full blowout elements that are normal on mobile */
@media (min-width: 992px) {
  .lander #page-body .graphsnapshot,
  .lander #page-body .pullout
  {
  }
}

.news-article {
  font-size: 17px;
}

.news-article .article-body {
  /* margin: 0 2rem; */
}

.news-article .rating-circle {
  float: right;
  margin-bottom: 20px;
  margin-left: 20px;
}

.lander-box a {
  border-bottom: none;
}

.inlineimage a, .inlineimage a:hover {
  border-bottom: none;
}

.lander-box h1 {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
}

.lander-box h1.text-lg {
  font-size: 2.25rem;
}

.lander-box h2 {
  font-size: 1.5rem;
  text-transform: uppercase;
  text-align: center;
}

.lander-box .ticktags {
  text-align: center;
}

/* override some old styles with glowing borders */
.lander-box a img {
  border: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
  transition: background-color 0.15s ease-in-out;
}

.lander-box a:hover img {
  background-color: rgba(24, 188, 156, 0.1) !important;
}

.lander-box .rating-circle {
  margin: 0 auto 0 auto;
}

.lander-box .rg {
  margin-top: -1rem;
  padding-bottom: 1rem;
  font-size: 100%;
  font-weight: 400;
  text-align: center;
  font-style: italic;
  color: #6e7777;
}

/* default some padding so we dont have to repeat for each review box */
.lander-box .row {
  padding: 1rem;
}

.lander-box .row > div {
  padding: 1rem 0.5rem;
}

.lander-box .row:first-child {
  padding-bottom: 0 !important;
}

.lander-box .row:first-child > div {
  padding-bottom: 0 !important;
}

.lander-box .row:last-child {
  padding-top: 0 !important;
}

.lander-box .list-group-item {
  padding: 0 1.25rem;
  font-size: 0.9rem;
}

.lander-box .list-group-item .score {
  font-weight: bold;
  color: #18BC9C;
}

.lander-box .card-deck {
  margin-top: 0;
  flex-direction: column; /* stops them stacked by default */
}

.bonus-boxes .card {
  height: 100% !important;
}

.bonus-boxes .card,
.lander-box .card-deck .card {
  border: dotted 3px #18BC9C;
  margin-bottom: 15px;
  transition: all 500ms;
}

.bonus-boxes .card a,
.lander-box .card-deck .card a {
  border-bottom: 0;
  color: black;
}

.bonus-boxes .card-footer,
.lander-box .card-deck .card-footer {
  padding: 0;
}

.bonus-boxes .card .bonus,
.lander-box .card-deck .card .bonus {
  padding: 0.75rem 1.25rem;
  display: block;
  position: relative;
}

.bonus-boxes .card .bonus > *,
.lander-box .card-deck .card .bonus > * {
  transition: color 200ms;
  z-index: 2;
  position: relative;
  font-weight: bold;
  color: #18BC9C;
}


.card code {
  color: rgb(232, 62, 140) !important;
}

.bonus-boxes .card:hover .bonus > *,
.bonus-boxes .card:hover code,
.lander-box .card-deck .card:hover .bonus,
.lander-box .card-deck .card:hover code {
  color: white !important;
}

.bonus-boxes .card .bonus::after,
.lander-box .card-deck .card .bonus::after {
  position: absolute;
  left: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #18BC9C;
  z-index: 1;
  content: '';
  transition: left 0.25s;
}

.bonus-boxes .card:hover .bonus::after,
.lander-box .card-deck .card:hover .bonus::after {
  left: 0;
}


.bonus-boxes .card:hover,
.lander-box .card-deck .card:hover {
  border: solid 3px #18BC9C;
  box-shadow: 0 0 25px #18BC9C;
}

/* changes for muted boxes */
.bonus-boxes .card.card-muted,
.lander-box .card-deck .card.card-muted {
  border-color: #aaa;
}
.bonus-boxes .card.card-muted:hover,
.lander-box .card-deck .card.card-muted:hover {
  box-shadow:  0 0 0 #aaa;
}
.bonus-boxes .card.card-muted .bonus > *,
.lander-box .card-deck .card.card-muted .bonus > * {
  color: #aaa;
}
.bonus-boxes .card.card-muted .bonus::after,
.lander-box .card-deck .card.card-muted .bonus::after {
  background-color: #aaa;
}

.bonus-boxes .card.card-muted > img,
.lander-box .card-deck .card.card-muted > img {
  filter: grayscale(100%) contrast(50%);
}
.bonus-boxes .card.card-muted .card-header,
.lander-box .card-deck .card.card-muted .card-header,
.bonus-boxes .card.card-muted .card-body,
.lander-box .card-deck .card.card-muted .card-body {
  color: #6e7777 !important;
}

/*----------------------------- */

.bonus-boxes .card:hover a,
.lander-box .card-deck .card:hover a {
  color: white !important;
}

.lander-box .card-deck .bonus > code {
  font-size: 1.2rem;
}

.bonus-boxes .card:last-child,
.lander-box .card-deck .card:last-child {
  margin-bottom: 0;
}

/* between small and very small - stack the cards */
@media (min-width: 576px) and (max-width: 767.98px) {
  .bonus-boxes,
  .lander-box .card-deck {
    flex-direction: row;
  }
  .bonus-boxes .card,
  .lander-box .card-deck .card {
    margin-bottom: 0;
  }
}


.small p {
  margin-bottom: 0.5rem;
}


/* same again for large displays */
@media (min-width: 992px) {
  .bonus-boxes,
  .lander-box .card-deck {
    flex-direction: row;
  }
  .bonus-boxes .card,
  .lander-box .card-deck .card {
    margin-bottom: 0;
  }
}


/* extra-wide screens */
@media (min-width: 1400px) {
  /* black boxes comparison tables pulled out too */
  .lander .r-table {
    margin-left: -8.3333333333%;
    margin-right: -8.3333333333%;
  }
}

.news-article table.inset-table {
  /* don't need the margin on inset table has the div above it has taken the class */
  margin-bottom: 0;
}


.data-table {
  border-width: 1px;
  border-radius: 0.5rem;
  border-style: solid;
  border-color: #e5e7eb;
  overflow-y: auto;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
  .data-table {
    margin: 1.5rem -175px;
  }
}

.data-table table {
  border: none;
  background-image: none;
  margin-bottom: 0;
}

.data-table table .nowrap {
  white-space: nowrap;
}

.data-table table tr:first-child {
  overflow: hidden;

  background-color: rgba(236,240,241) !important;
  border-radius: 0.5rem;
  border-width: 1px;
}

.data-table th.w-10 { width: 10%; }
.data-table th.w-20 { width: 20%; }
.data-table th.w-30 { width: 30%; }
.data-table th.w-40 { width: 40%; }
.data-table th.w-50 { width: 50%; }

.data-table th {
  border: none;
  font-size: 13px;
  text-transform: uppercase;
}
.data-table table tbody tr:nth-of-type(2n+1) {
  background-color: rgba(236,240,241,.2);
}
.data-table td {

}

/* wide screens */
@media (min-width: 992px) {

  /* on large displays, we do an 8-col width, but with options to break out */
  .lander {
    overflow-x: hidden;
  }

  /* h2s are pulled out by default */
  .lander #page-body h2 {
    margin-left: -8.3333333333%;
    margin-right: -8.3333333333%;
  }

  /* in articles, pull out to right */
  .lander #page-body .rating-circle {
    margin-right: -8.3333333333%;
  }

  .lander .full-width {
    margin-top: 40px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }

  .lander-box h1, .lander-box h2, .lander-box .ticktags {
    text-align: left;
  }
}

/* XL screens */
@media (min-width: 1200px) {
  .lander-box h1 {
    font-size: 3.5rem;
  }

  .lander-box h1.text-lg {
    font-size: 3rem;
  }
}

.glow-white {
  box-shadow: 0 0 5px #fff;
}

.glow-success {
  box-shadow: 0 0 5px #18BC9C;
}

.glow-danger {
  box-shadow: 0 0 5px #E74C3C;
}

.btn-lg.glow-danger {
  box-shadow: 0 0 15px #E74C3C;
}



.tick {
  display: inline-block;
  position: relative;
  font-size: 3rem;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #18BC9C;
}


.tick:before {
  content: "\2714";
}

/* show menu on hover; remove carat */
@media (min-width: 768px) {
  nav .dropdown-toggle::after {
    margin-left: 0.5em;
    font-size: 1.5em;
    vertical-align: 0.15em;
  }
}

.dropdown-header {
  text-transform: uppercase;
  font-size: .75rem;
  font-weight: bold;
  color: hsl(4, 88%, 38%);
  overflow: hidden;
  text-overflow: ellipsis;
}
.dropdown-item {
  color: #565f60;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropdown-item.starred:before {
  font-size: 1.5rem;
  content: "\2605";
  position: absolute;
  right: 1rem;
  top: -0.25rem;
  color: #E41E0F;
}

/* for accessibility, on mobile we add lots of spacing between hit targets */
.dropdown-item,
.dropdown-item.starred:before {
  padding-top: 14px;
  padding-bottom: 14px;
}

@media (min-width: 768px) {
  .dropdown-item {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .dropdown-item.starred:before {
    padding-top: 4px;
    padding-bottom: 4px;

  }
}

.ticktag {
  font-size: 0.9rem;
  white-space: nowrap;
  position: relative;
  margin: 0 10px 10px 0;
  display: inline-block;
  border-radius: 0 5px 5px 0;
  padding-right: 30px;
}
.ticktag strong {
  font-size: 1rem;
}

.ticktag:before {
  position: absolute;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  content: "\2714";
  color: #18BC9C;
  font-size: 30px;
  font-weight: bold;
  right: 0;
  top: -10px;
}



/* -------------- image galleries ------------------------------ */



.image-gallery {
  padding: 60px 0;
  margin-top: 2em;
}

.image-gallery h3 {
  font-size: 40px !important;
  font-weight: 300 !important;
  text-align: center !important;
  margin-bottom: 30px !important;
}

.carousel {
  display: none;
}

.carousel.slick-slider {
  display: block;
}

.slick-track {
  display: flex !important;
  align-items: center;
}

.slick-slide {
  max-width: 700px;
  position: relative;
}

.slick-slide .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  cursor: pointer;
  background: #000;
  opacity: 0.7;
  pointer-events: none;
  transition: opacity 500ms;
}

.slick-slide.slick-current .overlay {
  opacity: 0
}


.slick-slide .caption {
  opacity: 0;
  transition: opacity 1000ms;
  font-size: 1.2rem;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  text-align: center;
}

.slick-slide.slick-current .caption {
  opacity: 1;
}

.slick-slide img {
  height: auto;
  width: 100%;
}

