@charset "UTF-8";
/*-----------------------------------------------------------------------------------*/
/*	1	Basics
/*-----------------------------------------------------------------------------------*/
/*	1.1	Base
/*-----------------------------------------------------------------------------------*/
* { margin: 0; padding: 0; }

*, *:before, *:after {box-sizing:  border-box !important;}

html { min-height: 100%; height: 100%; overflow-y: auto; overflow-y: scroll; margin: 0; }

body { min-height: 100%; height: 100%; background: url(/wp-content/uploads/2020/11/card.jpg) no-repeat; background-attachment:fixed; color: #555; font: normal 15px "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; font-weight: 300; -webkit-font-smoothing: antialiased; }

section, main { overflow: hidden; max-width: 100%; }

#wrap { min-height: 100%; height: 100%; }

:focus { outline: 0; }

.inline  { display: inline-block; }

.text-left { text-align: left; }

.text-right { text-align: right; }

.text-center { text-align: center; }

.justify { text-align: justify; }

.lowercase { text-transform: lowercase; }

.uppercase { text-transform: uppercase; }

.capitalize { text-transform: capitalize; }

.plain { text-transform: none; }

article, aside, details, div, figcaption, figure, footer, header, hgroup, menu, nav, section, summary { display: block; }

ul, ol, dl, p, figure, table, pre, h1, h2, h3, h4, h5, h6, legend, blockquote, code { margin-bottom: 20px; }

img, figure { max-width: 100%; height: auto; }

figure { overflow: hidden; clear: both; }

ol, ul { list-style: none; }

ul { list-style: disc outside; margin: 0 0 25px 48px; padding: 0; }

ol { list-style-type: decimal; margin: 0 0 25px 48px; }

p { font-color: #555; line-height: 1.6em; margin: 0 0 20px; }

blockquote, p { quotes: none; }

dfn, em, i, .em { font-style: italic; }

b, strong { font-weight: 600; }

small { font-size: 0.8em; }

mark { background: #ff0; color: #000; font-style: italic; font-weight: bold; }

blockquote { margin: 1em 40px; padding: 10px 20px; border-left: 5px solid #EEE; }

code { clear: both; overflow: auto; padding: 1px 4px; white-space: pre-wrap; border-radius: 3px; background-color: #F9F9F9; border: 1px solid transparent; border-color: #ececec; }

pre { white-space: pre; white-space: pre-wrap; word-wrap: break-word; }

pre code { background-color: transparent; border: none; }

dt { font-weight: bold; }

dd { margin-bottom: 15px; padding-left: 0.5em; }

h1, h2, h3, h4, h5, h6 { color: #060606; font-style: normal; font-weight: 300; line-height: 1.17em; margin: 0 0 14px; }

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { color: #060606; font-weight: 300; font-style: normal; font-weight: 300; line-height: 1.17em; }

h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover { color: #060606; font-weight: 300; font-style: normal; font-weight: 300; line-height: 1.17em; }

h1 { font-size: 2.2em; text-transform: uppercase; letter-spacing: 0.20em; }

h2 { font-size: 1.7em; text-transform: uppercase; letter-spacing: 0.20em; }

h3 { font-size: 1.4em; text-transform: uppercase; letter-spacing: 0.20em; }

h4 { font-size: 1.2em; text-transform: uppercase; font-weight: 400; }

h5 { font-size: 1em; font-weight: 400; }

h6 { font-size: 0.9em; text-transform: uppercase; font-weight: 400; }

a { color: #4671fb; text-decoration: none; cursor: pointer; }

a, a:visited, a:hover, a:focus { font-weight: 400; text-decoration: none; }

a:focus { outline: none; }

@media(max-width: 768px) { 
  h1 { font-size: 32px; }
  h2 { font-size: 26px; } 
}
@media(max-width: 550px) { blockquote { margin: 1em 20px; } }

/*  1.2 Fonts
/*-----------------------------------------------------------------------------------*/
@font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 300; src: local("Open Sans Light"), local("OpenSans-Light"), url(http://fonts.gstatic.com/s/opensans/v10/DXI1ORHCpsQm3Vp6mXoaTZS3E-kSBmtLoNJPDtbj2Pk.ttf) format("truetype"); }
@font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 400; src: local("Open Sans"), local("OpenSans"), url(http://fonts.gstatic.com/s/opensans/v10/cJZKeOuBrn4kERxqtaUH3SZ2oysoEQEeKwjgmXLRnTc.ttf) format("truetype"); }
@font-face { font-family: 'Raleway'; font-style: normal; font-weight: 700; src: local("Raleway Bold"), local("Raleway-Bold"), url(http://fonts.gstatic.com/s/raleway/v9/JbtMzqLaYbbbCL9X6EvaI8DdSZkkecOE1hvV7ZHvhyU.ttf) format("truetype"); }
/*-----------------------------------------------------------------------------------*/
/*	2	Forms
/*-----------------------------------------------------------------------------------*/
/*	2.1	Buttons
/*-----------------------------------------------------------------------------------*/
.btn { display: inline-block; margin-bottom: 0; margin-right: 8px; font-weight: bold; text-align: center; text-transform: uppercase; vertical-align: middle; cursor: pointer; background-image: none; background: transparent; white-space: nowrap; padding: 12px 24px; font-size: 11px; font-family: "Raleway", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; line-height: 1; letter-spacing: 1px; border: 2px solid #FFF; color: #FFF; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; border-radius: 3px; transition: all ease-in-out .15s; -o-transition: all ease-in-out .15s; -webkit-transition: all ease-in-out .15s }

.btn:hover { background: #000; color: #333; }

.btn-primary { background: #4671fb; border-color: #4671fb; }

.btn-primary:hover { background: #000; border-color: #000; color: #FFF; }

.btn-white { color: #4671fb; background: #fff; border-color: #fff; }

/*  2.2 Fields
/*-----------------------------------------------------------------------------------*/
.field, .search-field, input[type="password"], textarea { margin-bottom: 20px; display: block; width: 100%; max-width: 100%; height: 34px; padding: 6px 12px; font-size: 14px; line-height: 1.42857143; color: #555; background-image: none; border-radius: 3px; -webkit-box-shadow: none; box-shadow: none; -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s; -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; font-weight: 300; background-color: rgba(0, 0, 0, 0.01); border: 1px solid #F5F5F5; -webkit-appearance: none; -moz-appearance: none; }

.search-field { margin-bottom: 0; }

label { font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; font-weight: 400; }

textarea { height: auto; }

textarea.field { height: auto; }

.contact-captcha { margin-bottom: 20px; }

.recaptchatable { border-radius: 3px !important; border-color: #ececec !important; }

/*	2.3	Alerts
/*-----------------------------------------------------------------------------------*/
.alert, #buddypress div#message p { padding: 12px; margin-bottom: 10px; border: 1px solid transparent; border-radius: 4px; color: #FFF; font-weight: 500; }

.alert-red { background-color: #EA5D5D; border-color: #EA5D5D; }

.alert-green { background-color: #7ad03a; border-color: #7ad03a; }

.alert-yellow, #buddypress div#message p { background-color: #FFCC50; border-color: #FFCC50; }

.alert-grey { background-color: #F5F5F5; border-color: #F5F5F5; color: #929292; }

/*-----------------------------------------------------------------------------------*/
/*	3.	Header
/*-----------------------------------------------------------------------------------*/
.navbar-brand { padding-top: 30px; }

.navbar-brand img { max-height: 80px; width: auto; max-width: 275px; }

.image-logo .navbar-brand { padding-top: 0; }

.navbar-default .navbar-brand { letter-spacing: 1px; font-weight: bold; }

.navbar-nav > li > a { padding-top: 30px; padding-bottom: 30px; }

.navbar { min-height: 81px; font-family: "Raleway", "Open Sans", "Helvetica Neue", Helvetica, Arial; margin-bottom: 35px; box-shadow: 0 0 3px #E1DEDE; }

.navbar-default { background-color: #FFF; border-bottom: 0; border-radius: 0 }

.navbar-fixed-top { border-bottom: 0; }

.navbar-default .navbar-nav > li > a { text-transform: uppercase; font-size: 11px; }

.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus { background-color: transparent; font-weight: bold; color: #555; border-color: rgba(255, 255, 255, 0.2); }

.dropdown-menu { -webkit-box-shadow: none; box-shadow: none; border-bottom-left-radius: 0; border-bottom-right-radius: 0; border: 1px solid #3d3d3d; background-color: #262626; }

.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus { background-color: #FFF; }

.dropdown-header { color: #999; font-size: 9px; padding: 3px 0 6px; text-transform: uppercase; letter-spacing: 1px; }

.dropdown-menu > li > a { color: rgba(255, 255, 255, 0.6); padding: 6px 15px; font-family: "Helvetica Neue", Helvetica, Arial; font-weight: 400; }

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus { background-color: transparent; color: #FFF;}

.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus { background-color: transparent; }

.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus, .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { background: transparent; color: #FFF; }

.nav .open > a, .nav .open > a:hover, .nav .open > a:focus { border-color: rgba(255, 255, 255, 0.2); }

.navbar-toggle { margin-top: 23px; margin-bottom: 23px; border: none; }

.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { background-color: transparent; }

.navbar-default .navbar-toggle .icon-bar { background-color: #333; }

.navbar-collapse { border-top: 0; }

.navbar-nav { margin-top: 0; margin-bottom: 0; }

.topbar { background-color: #000; height: 32px; display: none; }

.topbarnav ul { list-style: none; margin: 0 0 0; }
.topbarnav ul li { float: left; display: inline-block; height: 32px; line-height: 32px; margin-right: 7px; font-size: 14px; }
.topbarnav a { color: #929292; font-weight: 400; }

.search-container { margin-top: 23px; }

.mobile-search-icon { display: none; position: relative; float: right; margin-right: 12px; padding: 6px 10px 9px 0; margin-top: 23px; margin-bottom: 23px; border: none; background: transparent; color: #000; font-size: 15px; }

@media (max-width: 420px) { .filtersearch input, .filtersearch select { display: block; width: 100% !important; max-width: 100% !important; } 
.filtersearch input { margin-bottom: 15px; } }
@media (min-width: 768px) { .navbar-nav { float: right; padding-left: 15px; } }
@media (max-width: 767px) { .navbar { margin-bottom: 15px; font-family: "Helvetica Neue", Helvetica, Arial; }
  .navbar-default .navbar-nav > li > a { font-size: 14px; }
  .navbar-nav > li > a { padding: 12px 0; border-bottom: 1px dotted rgba(255, 255, 255, 0.2); }
  .topnav{ background-color: #262626; padding: 20px 30px 30px;}
  .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus { background-color: #262626; color: #FFF; }
  .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus { color: #FFF; font-weight: normal; }
  .navbar-nav .open .dropdown-menu > li > a, .navbar-nav .open .dropdown-menu .dropdown-header { padding-left: 0; padding-right: 0; }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { color: #FFF; }
  .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus { color: #FFF; }
  .navbar-default .navbar-nav > li > a { color: rgba(255, 255, 255, 0.6); text-transform: none;}
  .topbar { display: none !important; } }
@media (max-width: 991px) { .mobile-search-icon { display: block; }
  .search-container { display: none !important; } }
/*-----------------------------------------------------------------------------------*/
/*	4.	Content
/*-----------------------------------------------------------------------------------*/
/*	4.1	Pagination
/*-----------------------------------------------------------------------------------*/
nav.pagination { margin-bottom: 50px; }

nav.pagination li { display: inline; padding: 8px 13px; margin-right: 6px; background-color: #F9F9F9; border-radius: 3px; }
nav.pagination li a { color: #777; }
nav.pagination li a:hover { color: #FFF; }
nav.pagination li:hover { background-color: #4671fb; color: #FFF; }

.pagination { margin-bottom: 50px; }

.page-numbers { background: #FFFFFF; padding: 12px 18px; margin-right: 5px; }

.pagination a { color: #555; }

.pagination .current { background: #262626; color: #FFF; }

/*	4.2	Blog
/*-----------------------------------------------------------------------------------*/

@media (min-width: 768px) { aside.sidebar { padding-left: 0; }
  .content-right { float: right; padding-left: 30px; }
  .content-left { float: left; padding-right: 30px; } }
@media (max-width: 768px) { aside.sidebar { padding-left: 30px; padding-right: 30px; } }
/*	4.5	Footer
/*-----------------------------------------------------------------------------------*/

footer.footer { background: #1b1b1b; padding: 40px 0; }
footer a { color: #777; }
footer.footer p { margin-bottom: 0; color:white; }

.footer-copy b { font-weight: 400; }

.widget { margin-bottom: 30px; overflow: hidden; }

.widget ul, .widget ol { list-style: none; margin-left: 0; }
.widget h2 { font-size: 1.5em; }

.widget-title { font-size: 15px; line-height: 1.571428571428571em; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; font-family: "Raleway", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; }

.widget ul li { padding: 8px 0; }
.widget ul li a { color: #777; }

.widgetfooter .widget { margin-bottom: 30px; overflow: hidden; background: transparent; padding: 0 30px; border-radius: 0; border: 0; box-shadow: none; }

.widgetfooter { background: #262626; padding: 50px 0 20px; }

.widgetfooter .widget { padding: 0 0; }
.widgetfooter .widget .widget-title { color: #FFF; font-size: 1.35em; text-transform: uppercase; font-family: "Raleway", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; }
.widgetfooter .widget ul li { border-bottom: 0; padding: 8px 0; }

/*	4.4	Search
/*-----------------------------------------------------------------------------------*/
.searchpage article, .searchpage article.post, .searchpage article.page { border-radius: 0; padding: 0; background: transparent; box-shadow: none; margin-bottom: 30px; border-bottom: 2px solid #F6F6F6; }

.searchpage figure.thumbnail { display: none; }

.searchpage .post-footer { display: none; }
.searchpage .search-header { border-bottom: 1px solid #ececec; margin-bottom: 20px; padding-bottom: 15px; color: #777; overflow: hidden; }

.search-header h3.headtitle { margin-bottom: 0; margin-top: 3px; float: left; }
.search-header .search-form { float: right; }

.filtersearch input { width: auto; max-width: 172px; height: 32px; padding: 6px 12px; font-size: 14px; line-height: 1.42857143; color: #555; background-color: #fff; background-image: none; border: 1px solid #ececec; border-radius: 3px; -webkit-box-shadow: none; box-shadow: none; -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s; -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; font-weight: 300; }
.filtersearch select { padding-right: 35px !important; max-width: 160px; width: auto; float: right; height: 32px; padding: 6px 12px; font-size: 14px; line-height: 1.42857143; color: #555; background-color: #fff; outline: 0; display: inline-block; -webkit-appearance: none; -moz-appearance: none; appearance: none; cursor: pointer; text-indent: .01px; border: 1px solid #ececec; border-radius: 3px; -webkit-box-shadow: none; box-shadow: none; -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s; -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; font-weight: 300; background: url("../img/select-arrow.png") 100% 50% no-repeat; }

.modal-content { background-color: transparent; border: 0; border-radius: 0; -webkit-box-shadow: none; box-shadow: none; }

.modal-backdrop.in { opacity: 0.95; filter: alpha(opacity=95); }

.modal-backdrop { background-color: #29d9c2; }

.modal-search { margin-top: 45%; text-align: center; }

.modal-search > .search-form > label { width: 80%; }

.modal-search .search-field, .modal-search input[type="password"], .modal-search textarea { margin-bottom: 20px; display: block; width: 100%; max-width: 100%; height: 40px; padding: 6px 0; font-size: 16px; line-height: 1.42857143; color: #FFF; background-image: none; border-radius: 0; -webkit-box-shadow: none; box-shadow: none; -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s; -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; font-weight: 300; background-color: rgba(0, 0, 0, 0.01); border: 0; border-bottom: 2px solid #FFF; }
.modal-search .search-form ::-webkit-input-placeholder { /* WebKit browsers */ color: #FFF; }
.modal-search .search-form :-moz-placeholder { /* Mozilla Firefox 4 to 18 */ color: #FFF; opacity: 1; }
.modal-search .search-form ::-moz-placeholder { /* Mozilla Firefox 19+ */ color: #FFF; opacity: 1; }
.modal-search .search-form :-ms-input-placeholder { /* Internet Explorer 10+ */ color: #FFF; }

/*-----------------------------------------------------------------------------------*/
/*	5.	Posts
/*-----------------------------------------------------------------------------------*/
/*	5.1	Content
/*-----------------------------------------------------------------------------------*/
blockquote.post-quote > a { color: #777; font-size: 20px; }

article, article.post, article.page, .searchpage, .comments { padding: 22px; background: #FFF; box-shadow: 0 0 3px #E1DEDE; margin-bottom: 40px; width: 100%; }

article .thumbnail img { height: auto; }

figure.thumbnail { text-align: center; background: #DEDEDE; }

.post-tags { margin-top: 15px; margin-bottom: 0; border-top: 1px solid #ececec; padding-top: 6px; }

.post-meta { font-size: 0.8em; color: #777; font-weight: normal; margin-bottom: 20px; }

.entry-date, .post-meta .author a { color: #29d9c2; font-weight: 500; }

@media (max-width: 992px) { article, article.post, article.page { margin-bottom: 30px; } }

/*	5.2	Comments
/*-----------------------------------------------------------------------------------*/
.comments { margin-bottom: 50px; background: #FFF; padding: 15px; padding-top: 30px; }

.comments h3 { margin-bottom: 50px; }
.comments ol, .comments ul { margin-left: 0; list-style: none; }

.comment { width: auto; overflow: hidden; clear: both; }

.comment .comment { margin-left: 60px; }

.comment-avatar img { float: left !important; border-radius: 50%; }

.comment-body { padding-bottom: 0; border-bottom: 1px solid #ececec; margin-bottom: 20px; }

.comment-body .comment-meta { margin-bottom: 10px; }
.comment-body .comment-meta h5 { display: inline-block; margin-bottom: 0; }
.comment-body .comment-meta span { display: inline-block; font-size: 12px; font-style: italic; }
.comment-body .comment-meta span a { color: #777; }
.comment-body p { line-height: inherit; margin-bottom: 10px; }

p.form-submit { margin-bottom: 0; }

.depth-2 img, .depth-3 img, .depth-4 img, .depth-5 img, .depth-6 img, .depth-7 img{ max-width: 42px; max-height: 42px }
.depth-3 .comment, .depth-4 .comment, .depth-5 .comment, .depth-6 .comment, .depth-7 .comment { margin-left: 0; }

@media (min-width: 992px) { .comment-avatar { width: 17%; float: left; }
  .comment-body { width: 83%; float: left; }
  .comment-avatar img { margin-left: 10%; } }
@media (max-width: 992px) { .comment-avatar { width: 25%; float: left; }
  .comment-body { width: 75%; float: left; }
  .comment-avatar img { margin-left: 16%; }
  .depth-1 .comment { margin-left: 20px; }
  .depth-2 .comment, .depth-3 .comment, .depth-4 .comment, .depth-5 .comment, .depth-6 .comment, .depth-7 .comment { margin-left: 0; } }
@media (max-width: 655px) { .comment-avatar img { margin-left: 8% !important; max-height: 45px; max-width: 45px; } }
/*	5.3	Quote
/*-----------------------------------------------------------------------------------*/
.quote-icon i { color: #EEE; }

p.quote-author { margin: 20px 0 0; font-weight: 400; }

/*	5.4	Link
/*-----------------------------------------------------------------------------------*/
.post-link i { margin-bottom: 15px; color: #EEE; }
.post-link-title { margin-top: 20px; margin-bottom: 30px; }
@media (max-width: 768px) { .post-link .entry-title { font-size: 22px; } }

/*	5.5	Video
/*-----------------------------------------------------------------------------------*/
#video-frame { margin-bottom: 20px; }

/*	5.6	Audio
/*-----------------------------------------------------------------------------------*/
.wp-playlist, .wp-playlist-light { border: none !important; padding: 0 !important; margin: 0 !important; font-size: 14px; line-height: 1.5; }

.post-audio p { margin-bottom: 0 !important; }

/*-----------------------------------------------------------------------------------*/
/*  6.  WordPress
/*-----------------------------------------------------------------------------------*/
/*  6.1  WordPress
/*-----------------------------------------------------------------------------------*/
html #wpadminbar { z-index: 1999 !important; }

body#fixed { padding-top: 111px; }

img.alignright { float: right; margin: 0 0 1em 1em; }

img.alignleft { float: left; margin: 0 1em 1em 0; }

img.aligncenter { display: block; margin-left: auto; margin-right: auto; transition:2s all ease; border-radius:5%;padding-bottom:10px;}
img.aligncenter:hover{ border-radius:10%; filter: hue-rotate(60deg);}

.alignright { float: right; }

.alignleft { float: left; }

.aligncenter { display: block; margin-left: auto; margin-right: auto; }

.screen-reader-text, .search-submit { display: none; }

.wp-caption-text { display: inherit; }

.sticky { display: inherit; }

.gallery-caption { display: inherit; }

figcaption.wp-caption-text { padding: 8px 0 8px; border-bottom: 1px solid #ececec; text-align: center; }

.bypostauthor { display: inherit; }

@media (min-width: 783px) { body#fixed.logged-in .navbar-fixed-top { top: 32px; }
  .topsearchbar { display: none; } }
@media (max-width: 782px) { body#fixed.logged-in .navbar-fixed-top { top: 46px; } }
@media screen and (max-width: 600px) { #wpadminbar { position: fixed; } }
/*  6.2  Tables
/*-----------------------------------------------------------------------------------*/
table { border-collapse: collapse; border-spacing: 0; margin-bottom: 25px;width:100%; }

table caption { margin: 0 0 5px; font-size: 15px; font-variant: small-caps; }

thead { background: none repeat scroll 0% 0% #F3F3F3;
border-width: 0px 0px 1px;
border-style: none none solid;
border-color: -moz-use-text-color -moz-use-text-color #EEE;
-moz-border-top-colors: none;
-moz-border-right-colors: none;
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
border-image: none;
padding: 23px 20px;
font-family: "Open Sans","Helvetica Neue",Helvetica,Arial;
font-weight: normal;
font-size: 14px;
color: #262626; }

th, td { padding: 16px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -ms-box-sizing: border-box; box-sizing: border-box; }

th { border-bottom: 1px solid #e5e5e5; background: #f5f5f5; font-size: 15px; font-weight: bold; text-align: center; }

td { border: 1px solid #e5e5e5; }

.widget th, .widget td { padding: 5px 2px; }

/*-----------------------------------------------------------------------------------*/
/*  7.  BuddyPress
/*-----------------------------------------------------------------------------------*/
article.bp_members header { display: none; }

#buddypress #item-body form#whats-new-form { overflow: hidden; padding: 15px 0; border-bottom: 1px solid #ececec; margin-bottom: 20px; }

#buddypress div.item-list-tabs#object-nav { margin-top: 0; border: solid #ececec; border-width: 1px 0 1px 0; clear: left; margin: 0; padding: 10px 0; overflow: hidden; }

#buddypress div.item-list-tabs#subnav { margin-top: 0; border-bottom: 1px solid #ececec; clear: left; margin: 0 0 20px; padding: 10px 0; overflow: hidden; }

#buddypress div.message-search { margin-right: 0; }

.message-search #messages_search_submit { display: none; }

#buddypress div.item-list-tabs ul li.current a, #buddypress div.item-list-tabs ul li.selected a { background-color: #F5F5F5; padding: 7px 8px; border-radius: 2px; color: #555; opacity: .8; font-weight: 700; line-height: 17px; }

#buddypress div.item-list-tabs ul li a span { background: transparent; border-radius: 3px; border: 0; color: #666; margin-top: -3px; }

/*-----------------------------------------------------------------------------------*/
/*  8.  bbPress
/*-----------------------------------------------------------------------------------*/
.bbp-breadcrumb { text-transform: uppercase; }
#bbpress-forums ul.bbp-lead-topic, #bbpress-forums ul.bbp-topics, #bbpress-forums ul.bbp-forums, #bbpress-forums ul.bbp-replies, #bbpress-forums ul.bbp-search-results { border: 1px solid #e5e5e5; border-collapse: collapse; border-spacing: 0; margin-bottom: 25px; }
#bbpress-forums li.bbp-header, #bbpress-forums li.bbp-footer { border-bottom: 0; border-right: 0; border-top: 0; border-left: 0; background: #f5f5f5; font-size: 15px; font-weight: normal; text-align: left; padding: 12px; }
.bbp-footer, input#bbp_search_submit { display: none; }
#bbpress-forums div.odd, #bbpress-forums ul.odd { background: #FFF; }
#bbpress-forums div.bbp-reply-header { background: #F9F9F9; }

#bbpress-forums fieldset.bbp-form { border: 0; padding: 0 0; margin-bottom: 10px; }
#bbpress-forums div.wp-editor-container { border: 1px solid #ECECEC; }
#bbp_topic_title, input#bbp_search, input#bbp_topic_tags, input#tag-name, input#tag-slug, input#tag-existing-name { margin-bottom: 20px; display: block; max-width: 100%; height: 34px; padding: 6px 12px; font-size: 14px; line-height: 1.42857143; color: #555; background-image: none; border-radius: 3px; -webkit-box-shadow: none; box-shadow: none; -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s; -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; font-weight: 300; background-color: rgba(0, 0, 0, 0.01); border: 1px solid #F5F5F5; -webkit-appearance: none; -moz-appearance: none;}


.home-table,
.home-table-basic { margin: 10px 0 20px; font-family: 'Roboto', sans-serif; flex-basis: 100% }
.home-table table,
.home-table-basic table { width: 100% }
.home-table caption,
.home-table-title { font-family: 'Open Sans', sans-serif; font-size: 16px; line-height: 1.2; font-weight: 600; color: #575757; font-style: italic; padding: 0 0 10px; text-align: center }
.home-table caption strong,
.home-table-title strong { color: #000 }
.home-table caption:before,
.home-table-title:before { content: ''; position: relative; top: -1px; margin-right: 8px }
.home-table caption[class="_flag2"]:before,
.home-table-title[class="_flag2"]:before { margin-right: 2px; top: -2px }
.home-table caption .logo-netent-h,
.home-table caption .logo-isoftbet-h,
.home-table-title .logo-netent-h,
.home-table-title .logo-isoftbet-h { position: relative; top: -3px; margin: 0 5px 0 8px }
.home-table caption ._soft-logo { position: relative; top: -2px; margin: 0 5px; }
.home-table.numbered tbody { counter-reset: home-row }
.home-table.numbered tbody tr:not(.row-terms) { counter-increment: home-row; position: relative }
.home-table .home-highlight-item { display: block; padding-left: 10px; position: relative; font-size: 14px; line-height: 1; color: #4a4a4a; font-style: italic }
.home-table.flexed .home-highlight-item { flex-basis: 100%; }
.home-table .home-highlight-item:before { content: '\2022'; color: #ef5b3b; position: absolute; top: 0; left: 0 }
.home-table .home-highlight-item[data-prefix] { font-size: 12px; }
.home-table .home-highlight-item[data-prefix]:before { font-style: normal; position: static; display: block; font-weight: 700; }
.home-table .home-highlight-item + .home-highlight-item { margin-top: 5px }
.home-table.with-bonus-codes .home-highlight-item { font-style: normal; font-weight: 700; color: #ef5b3b; }
.home-table.with-bonus-codes .home-highlight-item:before { font-weight: 400; font-style: italic; color: #4a4a4a; }
.home-table .home-bonus-item { font-size: 19px; line-height: 1; color: #4b4b4b; font-weight: 500 }
.home-table .home-bonus-item strong { font-weight: 500; color: #ef5c3c }
.home-table .home-bonus-item > span { display: block; font-size: 16px; line-height: 1; font-weight: 400 }
.home-table .home-rating-item { font-size: 18px; line-height: 1; font-weight: 700; color: #767676; text-decoration: none }
.home-table .home-rating-item[data-suffix]:after,
.home-table .home-rating-item ~ a { font-size: 13px; font-weight: 500; color: #1f86b1; display: inline-block; text-decoration: none }
.home-table .home-rating-item[data-suffix]:hover:after,
.home-table .home-rating-item ~ a:hover { text-decoration: underline }
.home-table .home-rating-item strong { color: #3c3c3c }
.home-table .home-rating-item .hidden { display: inline-block; vertical-align: middle; font-size: 0; color: transparent; background: url(/wp-content/themes/atout/framework/img/home-rating.png) 50% no-repeat; width: 15px; height: 14px; position: relative; top: -1px; margin-left: -1px }
.home-table .home-rating-item[data-suffix] .hidden { margin-left: 4px; top: 0 }
.home-table .home-sw-dev { display: block; text-align: center; font-size: 20px; line-height: 1.2; font-weight: 300; color: #4b4b4b; padding: 0 10px }
.home-table .row-terms td,
.home-table.flexed[data-hterms="1"] tbody tr td:nth-child(1),
.home-table.flexed[data-hterms="2"] tbody tr td:nth-child(2),
.home-table.flexed[data-hterms="3"] tbody tr td:nth-child(3),
.home-table.flexed[data-hterms="4"] tbody tr td:nth-child(4),
.home-table.flexed[data-hterms="5"] tbody tr td:nth-child(5),
.home-table.flexed[data-hterms="6"] tbody tr td:nth-child(6),
.home-table.flexed[data-hterms="7"] tbody tr td:nth-child(7),
.home-table.flexed[data-hterms="8"] tbody tr td:nth-child(8),
.home-table.flexed[data-hterms="9"] tbody tr td:nth-child(9),
.home-table.flexed[data-hterms="10"] tbody tr td:nth-child(10) { font-size: 10px; line-height: 1.3; color: #7c7c7c; padding: 5px 0 0 }
.home-table .row-terms td a,
.home-table.flexed[data-hterms="1"] tbody tr td:nth-child(1) a,
.home-table.flexed[data-hterms="2"] tbody tr td:nth-child(2) a,
.home-table.flexed[data-hterms="3"] tbody tr td:nth-child(3) a,
.home-table.flexed[data-hterms="4"] tbody tr td:nth-child(4) a,
.home-table.flexed[data-hterms="5"] tbody tr td:nth-child(5) a,
.home-table.flexed[data-hterms="6"] tbody tr td:nth-child(6) a,
.home-table.flexed[data-hterms="7"] tbody tr td:nth-child(7) a,
.home-table.flexed[data-hterms="8"] tbody tr td:nth-child(8) a,
.home-table.flexed[data-hterms="9"] tbody tr td:nth-child(9) a,
.home-table.flexed[data-hterms="10"] tbody tr td:nth-child(10) a,
.home-table .row-terms td .trigger-terms,
.home-table.flexed[data-hterms="1"] tbody tr td:nth-child(1) .trigger-terms,
.home-table.flexed[data-hterms="2"] tbody tr td:nth-child(2) .trigger-terms,
.home-table.flexed[data-hterms="3"] tbody tr td:nth-child(3) .trigger-terms,
.home-table.flexed[data-hterms="4"] tbody tr td:nth-child(4) .trigger-terms,
.home-table.flexed[data-hterms="5"] tbody tr td:nth-child(5) .trigger-terms,
.home-table.flexed[data-hterms="6"] tbody tr td:nth-child(6) .trigger-terms,
.home-table.flexed[data-hterms="7"] tbody tr td:nth-child(7) .trigger-terms,
.home-table.flexed[data-hterms="8"] tbody tr td:nth-child(8) .trigger-terms,
.home-table.flexed[data-hterms="9"] tbody tr td:nth-child(9) .trigger-terms,
.home-table.flexed[data-hterms="10"] tbody tr td:nth-child(10) .trigger-terms { font-size: 11px; font-weight: 700; color: #456370; text-decoration: none }
.home-table .row-terms td a:hover,
.home-table.flexed[data-hterms="1"] tbody tr td:nth-child(1) a:hover,
.home-table.flexed[data-hterms="2"] tbody tr td:nth-child(2) a:hover,
.home-table.flexed[data-hterms="3"] tbody tr td:nth-child(3) a:hover,
.home-table.flexed[data-hterms="4"] tbody tr td:nth-child(4) a:hover,
.home-table.flexed[data-hterms="5"] tbody tr td:nth-child(5) a:hover,
.home-table.flexed[data-hterms="6"] tbody tr td:nth-child(6) a:hover,
.home-table.flexed[data-hterms="7"] tbody tr td:nth-child(7) a:hover,
.home-table.flexed[data-hterms="8"] tbody tr td:nth-child(8) a:hover,
.home-table.flexed[data-hterms="9"] tbody tr td:nth-child(9) a:hover,
.home-table.flexed[data-hterms="10"] tbody tr td:nth-child(10) a:hover,
.home-table .row-terms td .trigger-terms:hover,
.home-table.flexed[data-hterms="1"] tbody tr td:nth-child(1) .trigger-terms:hover,
.home-table.flexed[data-hterms="2"] tbody tr td:nth-child(2) .trigger-terms:hover,
.home-table.flexed[data-hterms="3"] tbody tr td:nth-child(3) .trigger-terms:hover,
.home-table.flexed[data-hterms="4"] tbody tr td:nth-child(4) .trigger-terms:hover,
.home-table.flexed[data-hterms="5"] tbody tr td:nth-child(5) .trigger-terms:hover,
.home-table.flexed[data-hterms="6"] tbody tr td:nth-child(6) .trigger-terms:hover,
.home-table.flexed[data-hterms="7"] tbody tr td:nth-child(7) .trigger-terms:hover,
.home-table.flexed[data-hterms="8"] tbody tr td:nth-child(8) .trigger-terms:hover,
.home-table.flexed[data-hterms="9"] tbody tr td:nth-child(9) .trigger-terms:hover,
.home-table.flexed[data-hterms="10"] tbody tr td:nth-child(10) .trigger-terms:hover { text-decoration: underline }
.home-table.flexed[data-hhighlights="1"] tbody tr td:nth-child(1),
.home-table.flexed[data-hhighlights="2"] tbody tr td:nth-child(2),
.home-table.flexed[data-hhighlights="3"] tbody tr td:nth-child(3),
.home-table.flexed[data-hhighlights="4"] tbody tr td:nth-child(4),
.home-table.flexed[data-hhighlights="5"] tbody tr td:nth-child(5),
.home-table.flexed[data-hhighlights="6"] tbody tr td:nth-child(6),
.home-table.flexed[data-hhighlights="7"] tbody tr td:nth-child(7),
.home-table.flexed[data-hhighlights="8"] tbody tr td:nth-child(8),
.home-table.flexed[data-hhighlights="9"] tbody tr td:nth-child(9),
.home-table.flexed[data-hhighlights="10"] tbody tr td:nth-child(10) { flex-wrap: wrap; }
.home-table[data-hcenter*="1"] tbody tr td:nth-child(1),
.home-table[data-hcenter*="2"] tbody tr td:nth-child(2),
.home-table[data-hcenter*="3"] tbody tr td:nth-child(3),
.home-table[data-hcenter*="4"] tbody tr td:nth-child(4),
.home-table[data-hcenter*="5"] tbody tr td:nth-child(5),
.home-table[data-hcenter*="6"] tbody tr td:nth-child(6),
.home-table[data-hcenter*="7"] tbody tr td:nth-child(7),
.home-table[data-hcenter*="8"] tbody tr td:nth-child(8),
.home-table[data-hcenter*="9"] tbody tr td:nth-child(9),
.home-table[data-hcenter*="10"] tbody tr td:nth-child(10) { text-align: center }
.home-table .act,
.home-table .act1 { border-radius: 3px }
.home-table [data-prefix]:before { content: attr(data-prefix) }
.home-table [data-suffix]:after { content: attr(data-suffix) }
.home-table .hidden { display: none }
.home-table ._baccarat-logo,
.home-table ._bingo-logo,
.home-table ._keno-logo,
.home-table ._scratch-logo,
.home-table ._sic-bo-logo { width: 120px; height: 55px }

.home-table td._rogo:before { border-radius: 0; }

.home-table-suffix { background: #f3f7fb; padding: 8px 15px; text-align: center; font-family: Roboto, sans-serif; font-size: 12px; line-height: 1.3; font-style: italic; color: #848484; margin-bottom: 20px; border-top: 1px solid #4e4e4e }
.home-table + .home-table-suffix,
.tabbed-table + .home-table-suffix { position: relative; top: -10px; margin-bottom: 10px }
.home-table-suffix a { color: inherit; text-decoration: none }
.home-table-suffix a:hover { text-decoration: underline }
.home-table-suffix strong { color: #4c4c4c }

.home-table-basic .home-table-title { margin-bottom: 10px }
.home-table-basic table { border-collapse: collapse; border: 1px solid #cecece; font-family: 'Roboto', sans-serif; font-size: 14px; color: #3c3c3c; text-align: center }
.home-table-basic th { background: #e3ecf7; border: 1px solid #cecece; font-weight: 500; font-size: 13px; line-height: 14px; padding: 10px }
.home-table-basic td { background: #fff; border: 1px solid #cecece; padding: 10px }
.home-table-basic tr:nth-child(even) td { background: #f9f9f9 }
.home-table-basic td a { color: #0044e7; font-weight: 500; text-decoration: none }
.home-table-basic td a:hover { text-decoration: underline }

@media only screen and (max-width: 1149px) {
	.home-table thead { display: none }
	.home-table caption,
	.home-table-title { width: 100%; border-bottom: 1px solid #a9a9a9 }
	.home-table table,
	.home-table caption,
	.home-table tbody,
	.home-table td { display: block }
	.home-table tbody tr:not(.row-terms) { display: flex; flex-flow: row wrap; padding: 7px 0 3px }
	.home-table tbody tr:not(.row-terms):last-child { padding-bottom: 0 }
	.home-table.no-ratings tbody tr:not(.row-terms) { padding-top: 0 }
	.home-table.numbered tbody tr:not(.row-terms):before { content: counter(home-row); background: #e9edf0; width: 38px; font-size: 18px; line-height: 40px; font-weight: 700; color: #456370; text-align: center; border-right: 2px solid #fff; position: absolute; top: 7px; left: 0 }
	.home-table.numbered.no-ratings tbody tr:not(.row-terms) { padding-top: 45px }
	.home-table.numbered.no-ratings tbody tr:not(.row-terms):before { z-index: 1 }
	.home-table.numbered.no-ratings tbody tr:not(.row-terms):after { content: ''; background: #e9edf0; position: absolute; top: 7px; right: 0; left: 0; height: 40px }
	.home-table[data-hrating="1"] tbody tr:not(.row-terms) td:nth-child(1), .home-table[data-hrating="2"] tbody tr:not(.row-terms) td:nth-child(2), .home-table[data-hrating="3"] tbody tr:not(.row-terms) td:nth-child(3), .home-table[data-hrating="4"] tbody tr:not(.row-terms) td:nth-child(4), .home-table[data-hrating="5"] tbody tr:not(.row-terms) td:nth-child(5), .home-table[data-hrating="6"] tbody tr:not(.row-terms) td:nth-child(6), .home-table[data-hrating="7"] tbody tr:not(.row-terms) td:nth-child(7), .home-table[data-hrating="8"] tbody tr:not(.row-terms) td:nth-child(8), .home-table[data-hrating="9"] tbody tr:not(.row-terms) td:nth-child(9), .home-table[data-hrating="10"] tbody tr:not(.row-terms) td:nth-child(10) { order: 1; flex-grow: 1; background: #e9edf0; display: flex; flex-flow: row nowrap; justify-content: space-between; padding: 11px 10px; flex-basis: 100% }
	.home-table.numbered[data-hrating="1"] tbody tr:not(.row-terms) td:nth-child(1), .home-table.numbered[data-hrating="2"] tbody tr:not(.row-terms) td:nth-child(2), .home-table.numbered[data-hrating="3"] tbody tr:not(.row-terms) td:nth-child(3), .home-table.numbered[data-hrating="4"] tbody tr:not(.row-terms) td:nth-child(4), .home-table.numbered[data-hrating="5"] tbody tr:not(.row-terms) td:nth-child(5), .home-table.numbered[data-hrating="6"] tbody tr:not(.row-terms) td:nth-child(6), .home-table.numbered[data-hrating="7"] tbody tr:not(.row-terms) td:nth-child(7), .home-table.numbered[data-hrating="8"] tbody tr:not(.row-terms) td:nth-child(8), .home-table.numbered[data-hrating="9"] tbody tr:not(.row-terms) td:nth-child(9), .home-table.numbered[data-hrating="10"] tbody tr:not(.row-terms) td:nth-child(10) { padding-left: 54px }
	.home-table[data-hlogo="1"] tbody tr:not(.row-terms) td:nth-child(1), .home-table[data-hlogo="2"] tbody tr:not(.row-terms) td:nth-child(2), .home-table[data-hlogo="3"] tbody tr:not(.row-terms) td:nth-child(3), .home-table[data-hlogo="4"] tbody tr:not(.row-terms) td:nth-child(4), .home-table[data-hlogo="5"] tbody tr:not(.row-terms) td:nth-child(5), .home-table[data-hlogo="6"] tbody tr:not(.row-terms) td:nth-child(6), .home-table[data-hlogo="7"] tbody tr:not(.row-terms) td:nth-child(7), .home-table[data-hlogo="8"] tbody tr:not(.row-terms) td:nth-child(8), .home-table[data-hlogo="9"] tbody tr:not(.row-terms) td:nth-child(9), .home-table[data-hlogo="10"] tbody tr:not(.row-terms) td:nth-child(10) { order: 2; flex-basis: 28.7%; max-width: 112px; padding: 8px 0; text-align: center }
	.home-table[data-hbonus="1"] tbody tr:not(.row-terms) td:nth-child(1), .home-table[data-hbonus="2"] tbody tr:not(.row-terms) td:nth-child(2), .home-table[data-hbonus="3"] tbody tr:not(.row-terms) td:nth-child(3), .home-table[data-hbonus="4"] tbody tr:not(.row-terms) td:nth-child(4), .home-table[data-hbonus="5"] tbody tr:not(.row-terms) td:nth-child(5), .home-table[data-hbonus="6"] tbody tr:not(.row-terms) td:nth-child(6), .home-table[data-hbonus="7"] tbody tr:not(.row-terms) td:nth-child(7), .home-table[data-hbonus="8"] tbody tr:not(.row-terms) td:nth-child(8), .home-table[data-hbonus="9"] tbody tr:not(.row-terms) td:nth-child(9), .home-table[data-hbonus="10"] tbody tr:not(.row-terms) td:nth-child(10) { order: 4; flex-basis: 71.3%; flex-grow: 1; align-self: center }
	.home-table[data-hlink="1"] tbody tr:not(.row-terms) td:nth-child(1), .home-table[data-hlink="2"] tbody tr:not(.row-terms) td:nth-child(2), .home-table[data-hlink="3"] tbody tr:not(.row-terms) td:nth-child(3), .home-table[data-hlink="4"] tbody tr:not(.row-terms) td:nth-child(4), .home-table[data-hlink="5"] tbody tr:not(.row-terms) td:nth-child(5), .home-table[data-hlink="6"] tbody tr:not(.row-terms) td:nth-child(6), .home-table[data-hlink="7"] tbody tr:not(.row-terms) td:nth-child(7), .home-table[data-hlink="8"] tbody tr:not(.row-terms) td:nth-child(8), .home-table[data-hlink="9"] tbody tr:not(.row-terms) td:nth-child(9), .home-table[data-hlink="10"] tbody tr:not(.row-terms) td:nth-child(10) { order: 5; flex-basis: 100% }
	.home-table.flexed[data-hterms="1"] tbody tr:not(.row-terms) td:nth-child(1), .home-table.flexed[data-hterms="2"] tbody tr:not(.row-terms) td:nth-child(2), .home-table.flexed[data-hterms="3"] tbody tr:not(.row-terms) td:nth-child(3), .home-table.flexed[data-hterms="4"] tbody tr:not(.row-terms) td:nth-child(4), .home-table.flexed[data-hterms="5"] tbody tr:not(.row-terms) td:nth-child(5), .home-table.flexed[data-hterms="6"] tbody tr:not(.row-terms) td:nth-child(6), .home-table.flexed[data-hterms="7"] tbody tr:not(.row-terms) td:nth-child(7), .home-table.flexed[data-hterms="8"] tbody tr:not(.row-terms) td:nth-child(8), .home-table.flexed[data-hterms="9"] tbody tr:not(.row-terms) td:nth-child(9), .home-table.flexed[data-hterms="10"] tbody tr:not(.row-terms) td:nth-child(10) { order: 6; flex-basis: 100% }
	.home-table.flexed[data-hmob-hidden="1"] tbody tr:not(.row-terms) td:nth-child(1), .home-table.flexed[data-hmob-hidden="2"] tbody tr:not(.row-terms) td:nth-child(2), .home-table.flexed[data-hmob-hidden="3"] tbody tr:not(.row-terms) td:nth-child(3), .home-table.flexed[data-hmob-hidden="4"] tbody tr:not(.row-terms) td:nth-child(4), .home-table.flexed[data-hmob-hidden="5"] tbody tr:not(.row-terms) td:nth-child(5), .home-table.flexed[data-hmob-hidden="6"] tbody tr:not(.row-terms) td:nth-child(6), .home-table.flexed[data-hmob-hidden="7"] tbody tr:not(.row-terms) td:nth-child(7), .home-table.flexed[data-hmob-hidden="8"] tbody tr:not(.row-terms) td:nth-child(8), .home-table.flexed[data-hmob-hidden="9"] tbody tr:not(.row-terms) td:nth-child(9), .home-table.flexed[data-hmob-hidden="10"] tbody tr:not(.row-terms) td:nth-child(10) { display: none; }
	.home-table .home-rating-item[data-suffix] { display: flex; flex-flow: row nowrap; justify-content: space-between; align-items: center; flex-basis: 100% }
	.home-table .home-rating-item[data-suffix]:after, .home-table .home-rating-item ~ a { flex-grow: 1; text-align: right }
	.home-table .home-rating-item[data-suffix]:hover:after, .home-table .home-rating-item ~ a:hover { text-decoration: underline }
	.home-table .home-rating-item[data-suffix] strong { flex-shrink: 1 }
	.home-table .home-rating-item:not([data-suffix]) { flex-basis: 100%; display: flex; flex-flow: row nowrap; align-items: center; justify-content: flex-end }
	.home-table .home-rating-item:not([data-suffix]) .hidden { margin-left: 4px }
	.home-table .home-bonus-item { padding: 8px 16px; display: block }
	.home-table.video-poker[data-hdeveloper="1"] tbody tr:not(.row-terms) td:nth-child(1), .home-table.video-poker[data-hdeveloper="2"] tbody tr:not(.row-terms) td:nth-child(2), .home-table.video-poker[data-hdeveloper="3"] tbody tr:not(.row-terms) td:nth-child(3), .home-table.video-poker[data-hdeveloper="4"] tbody tr:not(.row-terms) td:nth-child(4), .home-table.video-poker[data-hdeveloper="5"] tbody tr:not(.row-terms) td:nth-child(5), .home-table.video-poker[data-hdeveloper="6"] tbody tr:not(.row-terms) td:nth-child(6), .home-table.video-poker[data-hdeveloper="7"] tbody tr:not(.row-terms) td:nth-child(7), .home-table.video-poker[data-hdeveloper="8"] tbody tr:not(.row-terms) td:nth-child(8), .home-table.video-poker[data-hdeveloper="9"] tbody tr:not(.row-terms) td:nth-child(9), .home-table.video-poker[data-hdeveloper="10"] tbody tr:not(.row-terms) td:nth-child(10) { display: none }
	.home-table.video-poker[data-hlogo="1"] tbody tr:not(.row-terms) td:nth-child(1), .home-table.video-poker[data-hlogo="2"] tbody tr:not(.row-terms) td:nth-child(2), .home-table.video-poker[data-hlogo="3"] tbody tr:not(.row-terms) td:nth-child(3), .home-table.video-poker[data-hlogo="4"] tbody tr:not(.row-terms) td:nth-child(4), .home-table.video-poker[data-hlogo="5"] tbody tr:not(.row-terms) td:nth-child(5), .home-table.video-poker[data-hlogo="6"] tbody tr:not(.row-terms) td:nth-child(6), .home-table.video-poker[data-hlogo="7"] tbody tr:not(.row-terms) td:nth-child(7), .home-table.video-poker[data-hlogo="8"] tbody tr:not(.row-terms) td:nth-child(8), .home-table.video-poker[data-hlogo="9"] tbody tr:not(.row-terms) td:nth-child(9), .home-table.video-poker[data-hlogo="10"] tbody tr:not(.row-terms) td:nth-child(10) { max-width: 120px; flex-basis: 40% }
	.home-table.video-poker[data-hbonus="1"] tbody tr:not(.row-terms) td:nth-child(1), .home-table.video-poker[data-hbonus="2"] tbody tr:not(.row-terms) td:nth-child(2), .home-table.video-poker[data-hbonus="3"] tbody tr:not(.row-terms) td:nth-child(3), .home-table.video-poker[data-hbonus="4"] tbody tr:not(.row-terms) td:nth-child(4), .home-table.video-poker[data-hbonus="5"] tbody tr:not(.row-terms) td:nth-child(5), .home-table.video-poker[data-hbonus="6"] tbody tr:not(.row-terms) td:nth-child(6), .home-table.video-poker[data-hbonus="7"] tbody tr:not(.row-terms) td:nth-child(7), .home-table.video-poker[data-hbonus="8"] tbody tr:not(.row-terms) td:nth-child(8), .home-table.video-poker[data-hbonus="9"] tbody tr:not(.row-terms) td:nth-child(9), .home-table.video-poker[data-hbonus="10"] tbody tr:not(.row-terms) td:nth-child(10) { flex-basis: 60% }
	.home-table[data-hrating="1"] tbody tr:not(.row-terms) td:nth-child(1),
	.home-table[data-hrating="2"] tbody tr:not(.row-terms) td:nth-child(2),
	.home-table[data-hrating="3"] tbody tr:not(.row-terms) td:nth-child(3),
	.home-table[data-hrating="4"] tbody tr:not(.row-terms) td:nth-child(4),
	.home-table[data-hrating="5"] tbody tr:not(.row-terms) td:nth-child(5),
	.home-table[data-hrating="6"] tbody tr:not(.row-terms) td:nth-child(6),
	.home-table[data-hrating="7"] tbody tr:not(.row-terms) td:nth-child(7),
	.home-table[data-hrating="8"] tbody tr:not(.row-terms) td:nth-child(8),
	.home-table[data-hrating="9"] tbody tr:not(.row-terms) td:nth-child(9),
	.home-table[data-hrating="10"] tbody tr:not(.row-terms) td:nth-child(10) { order: 1; flex-grow: 1; background: #e9edf0; display: flex; flex-flow: row nowrap; justify-content: space-between; padding: 11px 10px; flex-basis: 100% }
	.home-table.numbered[data-hrating="1"] tbody tr:not(.row-terms) td:nth-child(1),
	.home-table.numbered[data-hrating="2"] tbody tr:not(.row-terms) td:nth-child(2),
	.home-table.numbered[data-hrating="3"] tbody tr:not(.row-terms) td:nth-child(3),
	.home-table.numbered[data-hrating="4"] tbody tr:not(.row-terms) td:nth-child(4),
	.home-table.numbered[data-hrating="5"] tbody tr:not(.row-terms) td:nth-child(5),
	.home-table.numbered[data-hrating="6"] tbody tr:not(.row-terms) td:nth-child(6),
	.home-table.numbered[data-hrating="7"] tbody tr:not(.row-terms) td:nth-child(7),
	.home-table.numbered[data-hrating="8"] tbody tr:not(.row-terms) td:nth-child(8),
	.home-table.numbered[data-hrating="9"] tbody tr:not(.row-terms) td:nth-child(9),
	.home-table.numbered[data-hrating="10"] tbody tr:not(.row-terms) td:nth-child(10) { padding-left: 54px }
	.home-table[data-hlogo="1"] tbody tr:not(.row-terms) td:nth-child(1),
	.home-table[data-hlogo="2"] tbody tr:not(.row-terms) td:nth-child(2),
	.home-table[data-hlogo="3"] tbody tr:not(.row-terms) td:nth-child(3),
	.home-table[data-hlogo="4"] tbody tr:not(.row-terms) td:nth-child(4),
	.home-table[data-hlogo="5"] tbody tr:not(.row-terms) td:nth-child(5),
	.home-table[data-hlogo="6"] tbody tr:not(.row-terms) td:nth-child(6),
	.home-table[data-hlogo="7"] tbody tr:not(.row-terms) td:nth-child(7),
	.home-table[data-hlogo="8"] tbody tr:not(.row-terms) td:nth-child(8),
	.home-table[data-hlogo="9"] tbody tr:not(.row-terms) td:nth-child(9),
	.home-table[data-hlogo="10"] tbody tr:not(.row-terms) td:nth-child(10) { order: 2; flex-basis: 28.7%; max-width: 112px; padding: 8px 0; text-align: center }
	.home-table[data-hbonus="1"] tbody tr:not(.row-terms) td:nth-child(1),
	.home-table[data-hbonus="2"] tbody tr:not(.row-terms) td:nth-child(2),
	.home-table[data-hbonus="3"] tbody tr:not(.row-terms) td:nth-child(3),
	.home-table[data-hbonus="4"] tbody tr:not(.row-terms) td:nth-child(4),
	.home-table[data-hbonus="5"] tbody tr:not(.row-terms) td:nth-child(5),
	.home-table[data-hbonus="6"] tbody tr:not(.row-terms) td:nth-child(6),
	.home-table[data-hbonus="7"] tbody tr:not(.row-terms) td:nth-child(7),
	.home-table[data-hbonus="8"] tbody tr:not(.row-terms) td:nth-child(8),
	.home-table[data-hbonus="9"] tbody tr:not(.row-terms) td:nth-child(9),
	.home-table[data-hbonus="10"] tbody tr:not(.row-terms) td:nth-child(10) { order: 4; flex-basis: 71.3%; flex-grow: 1; align-self: center }
	.home-table[data-hlink="1"] tbody tr:not(.row-terms) td:nth-child(1),
	.home-table[data-hlink="2"] tbody tr:not(.row-terms) td:nth-child(2),
	.home-table[data-hlink="3"] tbody tr:not(.row-terms) td:nth-child(3),
	.home-table[data-hlink="4"] tbody tr:not(.row-terms) td:nth-child(4),
	.home-table[data-hlink="5"] tbody tr:not(.row-terms) td:nth-child(5),
	.home-table[data-hlink="6"] tbody tr:not(.row-terms) td:nth-child(6),
	.home-table[data-hlink="7"] tbody tr:not(.row-terms) td:nth-child(7),
	.home-table[data-hlink="8"] tbody tr:not(.row-terms) td:nth-child(8),
	.home-table[data-hlink="9"] tbody tr:not(.row-terms) td:nth-child(9),
	.home-table[data-hlink="10"] tbody tr:not(.row-terms) td:nth-child(10) { order: 5; flex-basis: 100% }
	.home-table.flexed[data-hterms="1"] tbody tr:not(.row-terms) td:nth-child(1),
	.home-table.flexed[data-hterms="2"] tbody tr:not(.row-terms) td:nth-child(2),
	.home-table.flexed[data-hterms="3"] tbody tr:not(.row-terms) td:nth-child(3),
	.home-table.flexed[data-hterms="4"] tbody tr:not(.row-terms) td:nth-child(4),
	.home-table.flexed[data-hterms="5"] tbody tr:not(.row-terms) td:nth-child(5),
	.home-table.flexed[data-hterms="6"] tbody tr:not(.row-terms) td:nth-child(6),
	.home-table.flexed[data-hterms="7"] tbody tr:not(.row-terms) td:nth-child(7),
	.home-table.flexed[data-hterms="8"] tbody tr:not(.row-terms) td:nth-child(8),
	.home-table.flexed[data-hterms="9"] tbody tr:not(.row-terms) td:nth-child(9),
	.home-table.flexed[data-hterms="10"] tbody tr:not(.row-terms) td:nth-child(10) { order: 6; flex-basis: 100% }
	.home-table .home-rating-item[data-suffix] { display: flex; flex-flow: row nowrap; justify-content: space-between; align-items: center; flex-basis: 100% }
	.home-table .home-rating-item[data-suffix]:after,
	.home-table .home-rating-item ~ a { flex-grow: 1; text-align: right }
	.home-table .home-rating-item[data-suffix]:hover:after,
	.home-table .home-rating-item ~ a:hover { text-decoration: underline }
	.home-table .home-rating-item[data-suffix] strong { flex-shrink: 1 }
	.home-table .home-rating-item:not([data-suffix]) { flex-basis: 100%; display: flex; flex-flow: row nowrap; align-items: center; justify-content: flex-end }
	.home-table .home-rating-item:not([data-suffix]) .hidden { margin-left: 4px }
	.home-table .home-bonus-item { padding: 8px 16px; display: block }
	.home-table.video-poker[data-hdeveloper="1"] tbody tr:not(.row-terms) td:nth-child(1),
	.home-table.video-poker[data-hdeveloper="2"] tbody tr:not(.row-terms) td:nth-child(2),
	.home-table.video-poker[data-hdeveloper="3"] tbody tr:not(.row-terms) td:nth-child(3),
	.home-table.video-poker[data-hdeveloper="4"] tbody tr:not(.row-terms) td:nth-child(4),
	.home-table.video-poker[data-hdeveloper="5"] tbody tr:not(.row-terms) td:nth-child(5),
	.home-table.video-poker[data-hdeveloper="6"] tbody tr:not(.row-terms) td:nth-child(6),
	.home-table.video-poker[data-hdeveloper="7"] tbody tr:not(.row-terms) td:nth-child(7),
	.home-table.video-poker[data-hdeveloper="8"] tbody tr:not(.row-terms) td:nth-child(8),
	.home-table.video-poker[data-hdeveloper="9"] tbody tr:not(.row-terms) td:nth-child(9),
	.home-table.video-poker[data-hdeveloper="10"] tbody tr:not(.row-terms) td:nth-child(10) { display: none }
	.home-table.video-poker[data-hlogo="1"] tbody tr:not(.row-terms) td:nth-child(1),
	.home-table.video-poker[data-hlogo="2"] tbody tr:not(.row-terms) td:nth-child(2),
	.home-table.video-poker[data-hlogo="3"] tbody tr:not(.row-terms) td:nth-child(3),
	.home-table.video-poker[data-hlogo="4"] tbody tr:not(.row-terms) td:nth-child(4),
	.home-table.video-poker[data-hlogo="5"] tbody tr:not(.row-terms) td:nth-child(5),
	.home-table.video-poker[data-hlogo="6"] tbody tr:not(.row-terms) td:nth-child(6),
	.home-table.video-poker[data-hlogo="7"] tbody tr:not(.row-terms) td:nth-child(7),
	.home-table.video-poker[data-hlogo="8"] tbody tr:not(.row-terms) td:nth-child(8),
	.home-table.video-poker[data-hlogo="9"] tbody tr:not(.row-terms) td:nth-child(9),
	.home-table.video-poker[data-hlogo="10"] tbody tr:not(.row-terms) td:nth-child(10) { max-width: 120px; flex-basis: 40% }
	.home-table.video-poker[data-hbonus="1"] tbody tr:not(.row-terms) td:nth-child(1),
	.home-table.video-poker[data-hbonus="2"] tbody tr:not(.row-terms) td:nth-child(2),
	.home-table.video-poker[data-hbonus="3"] tbody tr:not(.row-terms) td:nth-child(3),
	.home-table.video-poker[data-hbonus="4"] tbody tr:not(.row-terms) td:nth-child(4),
	.home-table.video-poker[data-hbonus="5"] tbody tr:not(.row-terms) td:nth-child(5),
	.home-table.video-poker[data-hbonus="6"] tbody tr:not(.row-terms) td:nth-child(6),
	.home-table.video-poker[data-hbonus="7"] tbody tr:not(.row-terms) td:nth-child(7),
	.home-table.video-poker[data-hbonus="8"] tbody tr:not(.row-terms) td:nth-child(8),
	.home-table.video-poker[data-hbonus="9"] tbody tr:not(.row-terms) td:nth-child(9),
	.home-table.video-poker[data-hbonus="10"] tbody tr:not(.row-terms) td:nth-child(10) { flex-basis: 60% }
}

@media only screen and (max-width: 767px) {
	.home-table .act,
	.home-table .act1 { font-size: 18px; padding: 12px; display: block }
}

@media only screen and (max-width: 599px) {
	.home-table .home-highlight-item { padding-left: 0 }
	.home-table .home-highlight-item:before { content: none }
	.home-table.no-terms,
	.home-table.no-terms tbody tr:not(:last-child) { border-bottom: 1px solid #a9a9a9; padding-bottom: 10px }
	.home-table[data-hhighlights="1"] tbody tr:not(.row-terms) td:nth-child(1),
	.home-table[data-hhighlights="2"] tbody tr:not(.row-terms) td:nth-child(2),
	.home-table[data-hhighlights="3"] tbody tr:not(.row-terms) td:nth-child(3),
	.home-table[data-hhighlights="4"] tbody tr:not(.row-terms) td:nth-child(4),
	.home-table[data-hhighlights="5"] tbody tr:not(.row-terms) td:nth-child(5),
	.home-table[data-hhighlights="6"] tbody tr:not(.row-terms) td:nth-child(6),
	.home-table[data-hhighlights="7"] tbody tr:not(.row-terms) td:nth-child(7),
	.home-table[data-hhighlights="8"] tbody tr:not(.row-terms) td:nth-child(8),
	.home-table[data-hhighlights="9"] tbody tr:not(.row-terms) td:nth-child(9),
	.home-table[data-hhighlights="10"] tbody tr:not(.row-terms) td:nth-child(10) { display: none }
	.home-table.mobile-highlight[data-hhighlights="1"] tbody tr:not(.row-terms) td:nth-child(1),
	.home-table.mobile-highlight[data-hhighlights="2"] tbody tr:not(.row-terms) td:nth-child(2),
	.home-table.mobile-highlight[data-hhighlights="3"] tbody tr:not(.row-terms) td:nth-child(3),
	.home-table.mobile-highlight[data-hhighlights="4"] tbody tr:not(.row-terms) td:nth-child(4),
	.home-table.mobile-highlight[data-hhighlights="5"] tbody tr:not(.row-terms) td:nth-child(5),
	.home-table.mobile-highlight[data-hhighlights="6"] tbody tr:not(.row-terms) td:nth-child(6),
	.home-table.mobile-highlight[data-hhighlights="7"] tbody tr:not(.row-terms) td:nth-child(7),
	.home-table.mobile-highlight[data-hhighlights="8"] tbody tr:not(.row-terms) td:nth-child(8),
	.home-table.mobile-highlight[data-hhighlights="9"] tbody tr:not(.row-terms) td:nth-child(9),
	.home-table.mobile-highlight[data-hhighlights="10"] tbody tr:not(.row-terms) td:nth-child(10) { display: flex; flex-flow: column nowrap; justify-content: center; background: #e9edf0; order: 0; flex-basis: 72%; padding: 5px 0 5px 10px; box-sizing: border-box }
	.home-table.mobile-highlight.numbered[data-hhighlights="1"] tbody tr:not(.row-terms) td:nth-child(1),
	.home-table.mobile-highlight.numbered[data-hhighlights="2"] tbody tr:not(.row-terms) td:nth-child(2),
	.home-table.mobile-highlight.numbered[data-hhighlights="3"] tbody tr:not(.row-terms) td:nth-child(3),
	.home-table.mobile-highlight.numbered[data-hhighlights="4"] tbody tr:not(.row-terms) td:nth-child(4),
	.home-table.mobile-highlight.numbered[data-hhighlights="5"] tbody tr:not(.row-terms) td:nth-child(5),
	.home-table.mobile-highlight.numbered[data-hhighlights="6"] tbody tr:not(.row-terms) td:nth-child(6),
	.home-table.mobile-highlight.numbered[data-hhighlights="7"] tbody tr:not(.row-terms) td:nth-child(7),
	.home-table.mobile-highlight.numbered[data-hhighlights="8"] tbody tr:not(.row-terms) td:nth-child(8),
	.home-table.mobile-highlight.numbered[data-hhighlights="9"] tbody tr:not(.row-terms) td:nth-child(9),
	.home-table.mobile-highlight.numbered[data-hhighlights="10"] tbody tr:not(.row-terms) td:nth-child(10) { padding-left: 54px }
	.home-table.mobile-highlight[data-hrating="1"] tbody tr:not(.row-terms) td:nth-child(1),
	.home-table.mobile-highlight[data-hrating="2"] tbody tr:not(.row-terms) td:nth-child(2),
	.home-table.mobile-highlight[data-hrating="3"] tbody tr:not(.row-terms) td:nth-child(3),
	.home-table.mobile-highlight[data-hrating="4"] tbody tr:not(.row-terms) td:nth-child(4),
	.home-table.mobile-highlight[data-hrating="5"] tbody tr:not(.row-terms) td:nth-child(5),
	.home-table.mobile-highlight[data-hrating="6"] tbody tr:not(.row-terms) td:nth-child(6),
	.home-table.mobile-highlight[data-hrating="7"] tbody tr:not(.row-terms) td:nth-child(7),
	.home-table.mobile-highlight[data-hrating="8"] tbody tr:not(.row-terms) td:nth-child(8),
	.home-table.mobile-highlight[data-hrating="9"] tbody tr:not(.row-terms) td:nth-child(9),
	.home-table.mobile-highlight[data-hrating="10"] tbody tr:not(.row-terms) td:nth-child(10) { flex-grow: 0; flex-basis: 28%; box-sizing: border-box }
	.home-table.mobile-highlight.numbered[data-hrating="1"] tbody tr:not(.row-terms) td:nth-child(1),
	.home-table.mobile-highlight.numbered[data-hrating="2"] tbody tr:not(.row-terms) td:nth-child(2),
	.home-table.mobile-highlight.numbered[data-hrating="3"] tbody tr:not(.row-terms) td:nth-child(3),
	.home-table.mobile-highlight.numbered[data-hrating="4"] tbody tr:not(.row-terms) td:nth-child(4),
	.home-table.mobile-highlight.numbered[data-hrating="5"] tbody tr:not(.row-terms) td:nth-child(5),
	.home-table.mobile-highlight.numbered[data-hrating="6"] tbody tr:not(.row-terms) td:nth-child(6),
	.home-table.mobile-highlight.numbered[data-hrating="7"] tbody tr:not(.row-terms) td:nth-child(7),
	.home-table.mobile-highlight.numbered[data-hrating="8"] tbody tr:not(.row-terms) td:nth-child(8),
	.home-table.mobile-highlight.numbered[data-hrating="9"] tbody tr:not(.row-terms) td:nth-child(9),
	.home-table.mobile-highlight.numbered[data-hrating="10"] tbody tr:not(.row-terms) td:nth-child(10) { padding-left: 10px }
	
	.home-table.with-bonus-codes .home-highlight-item { display: flex; align-items: center; }

	.home-table-basic[data-mob-hidden*="1"] th:nth-child(1),
	.home-table-basic[data-mob-hidden*="1"] td:nth-child(1),
	.home-table-basic[data-mob-hidden*="2"] th:nth-child(2),
	.home-table-basic[data-mob-hidden*="2"] td:nth-child(2),
	.home-table-basic[data-mob-hidden*="3"] th:nth-child(3),
	.home-table-basic[data-mob-hidden*="3"] td:nth-child(3),
	.home-table-basic[data-mob-hidden*="4"] th:nth-child(4),
	.home-table-basic[data-mob-hidden*="4"] td:nth-child(4),
	.home-table-basic[data-mob-hidden*="5"] th:nth-child(5),
	.home-table-basic[data-mob-hidden*="5"] td:nth-child(5),
	.home-table-basic[data-mob-hidden*="6"] th:nth-child(6),
	.home-table-basic[data-mob-hidden*="6"] td:nth-child(6),
	.home-table-basic[data-mob-hidden*="7"] th:nth-child(7),
	.home-table-basic[data-mob-hidden*="7"] td:nth-child(7),
	.home-table-basic[data-mob-hidden*="8"] th:nth-child(8),
	.home-table-basic[data-mob-hidden*="8"] td:nth-child(8),
	.home-table-basic[data-mob-hidden*="9"] th:nth-child(9),
	.home-table-basic[data-mob-hidden*="9"] td:nth-child(9) { display: none }
}

@media only screen and (min-width: 600px) and (max-width: 1149px) {
	.home-table.no-terms.no-ratings tbody tr:not(:last-child) { border-bottom: 1px solid #a9a9a9; padding-bottom: 8px }
	.home-table[data-hbonus="1"] tbody tr:not(.row-terms) td:nth-child(1),
	.home-table[data-hbonus="2"] tbody tr:not(.row-terms) td:nth-child(2),
	.home-table[data-hbonus="3"] tbody tr:not(.row-terms) td:nth-child(3),
	.home-table[data-hbonus="4"] tbody tr:not(.row-terms) td:nth-child(4),
	.home-table[data-hbonus="5"] tbody tr:not(.row-terms) td:nth-child(5),
	.home-table[data-hbonus="6"] tbody tr:not(.row-terms) td:nth-child(6),
	.home-table[data-hbonus="7"] tbody tr:not(.row-terms) td:nth-child(7),
	.home-table[data-hbonus="8"] tbody tr:not(.row-terms) td:nth-child(8),
	.home-table[data-hbonus="9"] tbody tr:not(.row-terms) td:nth-child(9),
	.home-table[data-hbonus="10"] tbody tr:not(.row-terms) td:nth-child(10) { flex-basis: 40%; flex-grow: 0 }
	.home-table[data-hlink="1"] tbody tr:not(.row-terms) td:nth-child(1),
	.home-table[data-hlink="2"] tbody tr:not(.row-terms) td:nth-child(2),
	.home-table[data-hlink="3"] tbody tr:not(.row-terms) td:nth-child(3),
	.home-table[data-hlink="4"] tbody tr:not(.row-terms) td:nth-child(4),
	.home-table[data-hlink="5"] tbody tr:not(.row-terms) td:nth-child(5),
	.home-table[data-hlink="6"] tbody tr:not(.row-terms) td:nth-child(6),
	.home-table[data-hlink="7"] tbody tr:not(.row-terms) td:nth-child(7),
	.home-table[data-hlink="8"] tbody tr:not(.row-terms) td:nth-child(8),
	.home-table[data-hlink="9"] tbody tr:not(.row-terms) td:nth-child(9),
	.home-table[data-hlink="10"] tbody tr:not(.row-terms) td:nth-child(10) { flex-basis: 39%; flex-grow: 1; padding-left: 2%; align-self: center }
	.home-table[data-hhighlights="1"] tbody tr:not(.row-terms) td:nth-child(1),
	.home-table[data-hhighlights="2"] tbody tr:not(.row-terms) td:nth-child(2),
	.home-table[data-hhighlights="3"] tbody tr:not(.row-terms) td:nth-child(3),
	.home-table[data-hhighlights="4"] tbody tr:not(.row-terms) td:nth-child(4),
	.home-table[data-hhighlights="5"] tbody tr:not(.row-terms) td:nth-child(5),
	.home-table[data-hhighlights="6"] tbody tr:not(.row-terms) td:nth-child(6),
	.home-table[data-hhighlights="7"] tbody tr:not(.row-terms) td:nth-child(7),
	.home-table[data-hhighlights="8"] tbody tr:not(.row-terms) td:nth-child(8),
	.home-table[data-hhighlights="9"] tbody tr:not(.row-terms) td:nth-child(9),
	.home-table[data-hhighlights="10"] tbody tr:not(.row-terms) td:nth-child(10) { order: 4; flex-basis: 30%; flex-grow: 1; align-self: center }
	.home-table.video-poker .home-bonus-item { margin-right: 0 }
}

@media only screen and (min-width: 600px) {
	.home-table .home-bonus-item { background: #f6f7f8; text-align: center; padding: 5px 15px; margin-right: 15px; display: flex; flex-flow: row wrap; justify-content: center; align-items: center; min-height: 33px }
	.home-table.alt-highlights .home-bonus-item { background: none }
	.home-table.alt-highlights[data-hhighlights="1"] tbody tr:not(.row-terms) td:nth-child(1),
	.home-table.alt-highlights[data-hhighlights="2"] tbody tr:not(.row-terms) td:nth-child(2),
	.home-table.alt-highlights[data-hhighlights="3"] tbody tr:not(.row-terms) td:nth-child(3),
	.home-table.alt-highlights[data-hhighlights="4"] tbody tr:not(.row-terms) td:nth-child(4),
	.home-table.alt-highlights[data-hhighlights="5"] tbody tr:not(.row-terms) td:nth-child(5),
	.home-table.alt-highlights[data-hhighlights="6"] tbody tr:not(.row-terms) td:nth-child(6),
	.home-table.alt-highlights[data-hhighlights="7"] tbody tr:not(.row-terms) td:nth-child(7),
	.home-table.alt-highlights[data-hhighlights="8"] tbody tr:not(.row-terms) td:nth-child(8),
	.home-table.alt-highlights[data-hhighlights="9"] tbody tr:not(.row-terms) td:nth-child(9) { background: #f6f7f8 }
	.home-table .home-bonus-item > span { flex-basis: 100%; font-size: 14px }
	.home-table .home-bonus-item strong { margin: 0 4px }
	.home-table .home-bonus-item span strong { margin: 0 }
}

@media only screen and (min-width: 768px) and (max-width: 1149px) {
	.home-table[data-hlogo="1"] tbody tr:not(.row-terms) { justify-content: space-between }
	.home-table[data-hlogo="1"] tbody tr:not(.row-terms) td:nth-child(1),
	.home-table[data-hlogo="2"] tbody tr:not(.row-terms) td:nth-child(2),
	.home-table[data-hlogo="3"] tbody tr:not(.row-terms) td:nth-child(3),
	.home-table[data-hlogo="4"] tbody tr:not(.row-terms) td:nth-child(4),
	.home-table[data-hlogo="5"] tbody tr:not(.row-terms) td:nth-child(5),
	.home-table[data-hlogo="6"] tbody tr:not(.row-terms) td:nth-child(6),
	.home-table[data-hlogo="7"] tbody tr:not(.row-terms) td:nth-child(7),
	.home-table[data-hlogo="8"] tbody tr:not(.row-terms) td:nth-child(8),
	.home-table[data-hlogo="9"] tbody tr:not(.row-terms) td:nth-child(9),
	.home-table[data-hlogo="10"] tbody tr:not(.row-terms) td:nth-child(10) { max-width: 104px; padding-right: 10px; padding-bottom: 0 }
	.home-table[data-hbonus="1"] tbody tr:not(.row-terms) td:nth-child(1),
	.home-table[data-hbonus="2"] tbody tr:not(.row-terms) td:nth-child(2),
	.home-table[data-hbonus="3"] tbody tr:not(.row-terms) td:nth-child(3),
	.home-table[data-hbonus="4"] tbody tr:not(.row-terms) td:nth-child(4),
	.home-table[data-hbonus="5"] tbody tr:not(.row-terms) td:nth-child(5),
	.home-table[data-hbonus="6"] tbody tr:not(.row-terms) td:nth-child(6),
	.home-table[data-hbonus="7"] tbody tr:not(.row-terms) td:nth-child(7),
	.home-table[data-hbonus="8"] tbody tr:not(.row-terms) td:nth-child(8),
	.home-table[data-hbonus="9"] tbody tr:not(.row-terms) td:nth-child(9),
	.home-table[data-hbonus="10"] tbody tr:not(.row-terms) td:nth-child(10) { flex-basis: 38% }
	.home-table[data-hhighlights="1"] tbody tr:not(.row-terms) td:nth-child(1),
	.home-table[data-hhighlights="2"] tbody tr:not(.row-terms) td:nth-child(2),
	.home-table[data-hhighlights="3"] tbody tr:not(.row-terms) td:nth-child(3),
	.home-table[data-hhighlights="4"] tbody tr:not(.row-terms) td:nth-child(4),
	.home-table[data-hhighlights="5"] tbody tr:not(.row-terms) td:nth-child(5),
	.home-table[data-hhighlights="6"] tbody tr:not(.row-terms) td:nth-child(6),
	.home-table[data-hhighlights="7"] tbody tr:not(.row-terms) td:nth-child(7),
	.home-table[data-hhighlights="8"] tbody tr:not(.row-terms) td:nth-child(8),
	.home-table[data-hhighlights="9"] tbody tr:not(.row-terms) td:nth-child(9),
	.home-table[data-hhighlights="10"] tbody tr:not(.row-terms) td:nth-child(10) { flex-basis: 26%; flex-grow: 0 }
	.home-table[data-hlink="1"] tbody tr:not(.row-terms) td:nth-child(1),
	.home-table[data-hlink="2"] tbody tr:not(.row-terms) td:nth-child(2),
	.home-table[data-hlink="3"] tbody tr:not(.row-terms) td:nth-child(3),
	.home-table[data-hlink="4"] tbody tr:not(.row-terms) td:nth-child(4),
	.home-table[data-hlink="5"] tbody tr:not(.row-terms) td:nth-child(5),
	.home-table[data-hlink="6"] tbody tr:not(.row-terms) td:nth-child(6),
	.home-table[data-hlink="7"] tbody tr:not(.row-terms) td:nth-child(7),
	.home-table[data-hlink="8"] tbody tr:not(.row-terms) td:nth-child(8),
	.home-table[data-hlink="9"] tbody tr:not(.row-terms) td:nth-child(9),
	.home-table[data-hlink="10"] tbody tr:not(.row-terms) td:nth-child(10) { flex-basis: 17.5%; align-self: center }
	.home-table.wide-cta[data-hbonus="1"] tbody tr:not(.row-terms) td:nth-child(1),
	.home-table.wide-cta[data-hbonus="2"] tbody tr:not(.row-terms) td:nth-child(2),
	.home-table.wide-cta[data-hbonus="3"] tbody tr:not(.row-terms) td:nth-child(3),
	.home-table.wide-cta[data-hbonus="4"] tbody tr:not(.row-terms) td:nth-child(4),
	.home-table.wide-cta[data-hbonus="5"] tbody tr:not(.row-terms) td:nth-child(5),
	.home-table.wide-cta[data-hbonus="6"] tbody tr:not(.row-terms) td:nth-child(6),
	.home-table.wide-cta[data-hbonus="7"] tbody tr:not(.row-terms) td:nth-child(7),
	.home-table.wide-cta[data-hbonus="8"] tbody tr:not(.row-terms) td:nth-child(8),
	.home-table.wide-cta[data-hbonus="9"] tbody tr:not(.row-terms) td:nth-child(9),
	.home-table.wide-cta[data-hbonus="10"] tbody tr:not(.row-terms) td:nth-child(10) { flex-basis: 30% }
}

@media only screen and (min-width: 768px) {
	.home-table .row-terms td { text-align: right; font-size: 11px }
	.home-table .act,
	.home-table .act1 { font-size: 16px; padding: 13px }

	.home-table-suffix { padding: 10px 20px; text-align: left }
	.home-table + .home-table-suffix,
	.tabbed-table + .home-table-suffix { top: 0; margin-bottom: 20px }
}

@media only screen and (min-width: 1150px) {
	.home-table,
	.home-table-basic { background: #fff; border: 13px solid #f3f7fb; position: relative; padding: 12px 12px 2px; margin-top: 0 }
	.home-table:before,
	.home-table-basic:before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; box-shadow: 3px 3px 7px rgba(0, 0, 0, .1) }
	.home-table table { width: 100%; border-collapse: separate; border-spacing: 0 10px }
	.home-table caption,
	.home-table-title { padding: 0 12px 2px }
	.home-table th { font-size: 14px; font-weight: 400; line-height: 1; color: #456370; height: 30px; border-width: 1px 0; border-style: solid; border-color: #e8e8e8 }
	.home-table th { background: #f7f8f9; background: -moz-linear-gradient(top, #f7f8f9 0%, #e9edf0 100%); background: -webkit-linear-gradient(top, #f7f8f9 0%, #e9edf0 100%); background: linear-gradient(to bottom, #f7f8f9 0%, #e9edf0 100%) }
	.home-table th:first-child { border-left-width: 1px }
	.home-table th:last-child { border-right-width: 1px }
	.home-table[data-hlogo="1"] tbody tr:not(.row-terms) td:nth-child(1),
	.home-table[data-hlogo="2"] tbody tr:not(.row-terms) td:nth-child(2),
	.home-table[data-hlogo="3"] tbody tr:not(.row-terms) td:nth-child(3),
	.home-table[data-hlogo="4"] tbody tr:not(.row-terms) td:nth-child(4),
	.home-table[data-hlogo="5"] tbody tr:not(.row-terms) td:nth-child(5),
	.home-table[data-hlogo="6"] tbody tr:not(.row-terms) td:nth-child(6),
	.home-table[data-hlogo="7"] tbody tr:not(.row-terms) td:nth-child(7),
	.home-table[data-hlogo="8"] tbody tr:not(.row-terms) td:nth-child(8),
	.home-table[data-hlogo="9"] tbody tr:not(.row-terms) td:nth-child(9),
	.home-table[data-hlogo="10"] tbody tr:not(.row-terms) td:nth-child(10) { width: 14.4% }
	.home-table.numbered[data-hlogo="1"] thead tr:not(.row-terms) th:nth-child(1),
	.home-table.numbered[data-hlogo="2"] thead tr:not(.row-terms) th:nth-child(2),
	.home-table.numbered[data-hlogo="3"] thead tr:not(.row-terms) th:nth-child(3),
	.home-table.numbered[data-hlogo="4"] thead tr:not(.row-terms) th:nth-child(4),
	.home-table.numbered[data-hlogo="5"] thead tr:not(.row-terms) th:nth-child(5),
	.home-table.numbered[data-hlogo="6"] thead tr:not(.row-terms) th:nth-child(6),
	.home-table.numbered[data-hlogo="7"] thead tr:not(.row-terms) th:nth-child(7),
	.home-table.numbered[data-hlogo="8"] thead tr:not(.row-terms) th:nth-child(8),
	.home-table.numbered[data-hlogo="9"] thead tr:not(.row-terms) th:nth-child(9),
	.home-table.numbered[data-hlogo="10"] thead tr:not(.row-terms) th:nth-child(10) { position: relative; padding-left: 27px }
	.home-table.numbered[data-hlogo="1"] thead tr:not(.row-terms) th:nth-child(1):before,
	.home-table.numbered[data-hlogo="2"] thead tr:not(.row-terms) th:nth-child(2):before,
	.home-table.numbered[data-hlogo="3"] thead tr:not(.row-terms) th:nth-child(3):before,
	.home-table.numbered[data-hlogo="4"] thead tr:not(.row-terms) th:nth-child(4):before,
	.home-table.numbered[data-hlogo="5"] thead tr:not(.row-terms) th:nth-child(5):before,
	.home-table.numbered[data-hlogo="6"] thead tr:not(.row-terms) th:nth-child(6):before,
	.home-table.numbered[data-hlogo="7"] thead tr:not(.row-terms) th:nth-child(7):before,
	.home-table.numbered[data-hlogo="8"] thead tr:not(.row-terms) th:nth-child(8):before,
	.home-table.numbered[data-hlogo="9"] thead tr:not(.row-terms) th:nth-child(9):before,
	.home-table.numbered[data-hlogo="10"] thead tr:not(.row-terms) th:nth-child(10):before { content: '#'; position: absolute; top: 0; left: 0; bottom: 0; width: 27px; text-align: center; display: flex; flex-flow: column nowrap; justify-content: center; align-content: center }
	.home-table.numbered[data-hlogo="1"] tbody tr:not(.row-terms) td:nth-child(1),
	.home-table.numbered[data-hlogo="2"] tbody tr:not(.row-terms) td:nth-child(2),
	.home-table.numbered[data-hlogo="3"] tbody tr:not(.row-terms) td:nth-child(3),
	.home-table.numbered[data-hlogo="4"] tbody tr:not(.row-terms) td:nth-child(4),
	.home-table.numbered[data-hlogo="5"] tbody tr:not(.row-terms) td:nth-child(5),
	.home-table.numbered[data-hlogo="6"] tbody tr:not(.row-terms) td:nth-child(6),
	.home-table.numbered[data-hlogo="7"] tbody tr:not(.row-terms) td:nth-child(7),
	.home-table.numbered[data-hlogo="8"] tbody tr:not(.row-terms) td:nth-child(8),
	.home-table.numbered[data-hlogo="9"] tbody tr:not(.row-terms) td:nth-child(9),
	.home-table.numbered[data-hlogo="10"] tbody tr:not(.row-terms) td:nth-child(10) { width: 18%; padding-left: 36px; position: relative }
	.home-table.numbered.no-terms[data-hlogo="1"] tbody tr:not(.row-terms) td:nth-child(1):before,
	.home-table.numbered.no-terms[data-hlogo="2"] tbody tr:not(.row-terms) td:nth-child(2):before,
	.home-table.numbered.no-terms[data-hlogo="3"] tbody tr:not(.row-terms) td:nth-child(3):before,
	.home-table.numbered.no-terms[data-hlogo="4"] tbody tr:not(.row-terms) td:nth-child(4):before,
	.home-table.numbered.no-terms[data-hlogo="5"] tbody tr:not(.row-terms) td:nth-child(5):before,
	.home-table.numbered.no-terms[data-hlogo="6"] tbody tr:not(.row-terms) td:nth-child(6):before,
	.home-table.numbered.no-terms[data-hlogo="7"] tbody tr:not(.row-terms) td:nth-child(7):before,
	.home-table.numbered.no-terms[data-hlogo="8"] tbody tr:not(.row-terms) td:nth-child(8):before,
	.home-table.numbered.no-terms[data-hlogo="9"] tbody tr:not(.row-terms) td:nth-child(9):before,
	.home-table.numbered.no-terms[data-hlogo="10"] tbody tr:not(.row-terms) td:nth-child(10):before,.home-table.flexed.numbered tbody tr:before { content: counter(home-row); background: #e9edf0; width: 28px; font-size: 18px; font-weight: 700; text-align: center; color: #456370; position: absolute; top: 0; left: 0; bottom: 0; display: flex; flex-flow: column nowrap; justify-content: center; align-items: center }
	.home-table.flexed.numbered tbody tr:before { top: 10px; bottom: 10px }
	.home-table[data-hbonus="1"] tbody tr:not(.row-terms) td:nth-child(1),
	.home-table[data-hbonus="2"] tbody tr:not(.row-terms) td:nth-child(2),
	.home-table[data-hbonus="3"] tbody tr:not(.row-terms) td:nth-child(3),
	.home-table[data-hbonus="4"] tbody tr:not(.row-terms) td:nth-child(4),
	.home-table[data-hbonus="5"] tbody tr:not(.row-terms) td:nth-child(5),
	.home-table[data-hbonus="6"] tbody tr:not(.row-terms) td:nth-child(6),
	.home-table[data-hbonus="7"] tbody tr:not(.row-terms) td:nth-child(7),
	.home-table[data-hbonus="8"] tbody tr:not(.row-terms) td:nth-child(8),
	.home-table[data-hbonus="9"] tbody tr:not(.row-terms) td:nth-child(9),
	.home-table[data-hbonus="10"] tbody tr:not(.row-terms) td:nth-child(10) { width: 32% }
	.home-table[data-hhighlights="1"] tbody tr:not(.row-terms) td:nth-child(1),
	.home-table[data-hhighlights="2"] tbody tr:not(.row-terms) td:nth-child(2),
	.home-table[data-hhighlights="3"] tbody tr:not(.row-terms) td:nth-child(3),
	.home-table[data-hhighlights="4"] tbody tr:not(.row-terms) td:nth-child(4),
	.home-table[data-hhighlights="5"] tbody tr:not(.row-terms) td:nth-child(5),
	.home-table[data-hhighlights="6"] tbody tr:not(.row-terms) td:nth-child(6),
	.home-table[data-hhighlights="7"] tbody tr:not(.row-terms) td:nth-child(7),
	.home-table[data-hhighlights="8"] tbody tr:not(.row-terms) td:nth-child(8),
	.home-table[data-hhighlights="9"] tbody tr:not(.row-terms) td:nth-child(9),
	.home-table[data-hhighlights="10"] tbody tr:not(.row-terms) td:nth-child(10) { width: 21.7%; padding: 0 1% 0 2.5% }
	.home-table[data-hhighlights="1"] tbody tr:not(.row-terms):not(:last-child) td:nth-child(1),
	.home-table[data-hhighlights="2"] tbody tr:not(.row-terms):not(:last-child) td:nth-child(2),
	.home-table[data-hhighlights="3"] tbody tr:not(.row-terms):not(:last-child) td:nth-child(3),
	.home-table[data-hhighlights="4"] tbody tr:not(.row-terms):not(:last-child) td:nth-child(4),
	.home-table[data-hhighlights="5"] tbody tr:not(.row-terms):not(:last-child) td:nth-child(5),
	.home-table[data-hhighlights="6"] tbody tr:not(.row-terms):not(:last-child) td:nth-child(6),
	.home-table[data-hhighlights="7"] tbody tr:not(.row-terms):not(:last-child) td:nth-child(7),
	.home-table[data-hhighlights="8"] tbody tr:not(.row-terms):not(:last-child) td:nth-child(8),
	.home-table[data-hhighlights="9"] tbody tr:not(.row-terms):not(:last-child) td:nth-child(9),
	.home-table[data-hhighlights="10"] tbody tr:not(.row-terms):not(:last-child) td:nth-child(10) { padding-bottom: 10px }
	.home-table[data-hrating="1"] tbody tr:not(.row-terms) td:nth-child(1),
	.home-table[data-hrating="2"] tbody tr:not(.row-terms) td:nth-child(2),
	.home-table[data-hrating="3"] tbody tr:not(.row-terms) td:nth-child(3),
	.home-table[data-hrating="4"] tbody tr:not(.row-terms) td:nth-child(4),
	.home-table[data-hrating="5"] tbody tr:not(.row-terms) td:nth-child(5),
	.home-table[data-hrating="6"] tbody tr:not(.row-terms) td:nth-child(6),
	.home-table[data-hrating="7"] tbody tr:not(.row-terms) td:nth-child(7),
	.home-table[data-hrating="8"] tbody tr:not(.row-terms) td:nth-child(8),
	.home-table[data-hrating="9"] tbody tr:not(.row-terms) td:nth-child(9),
	.home-table[data-hrating="10"] tbody tr:not(.row-terms) td:nth-child(10) { width: 17.3%; padding: 0 2% }
	.home-table[data-hrating="1"] tbody tr:not(.row-terms):not(:last-child) td:nth-child(1),
	.home-table[data-hrating="2"] tbody tr:not(.row-terms):not(:last-child) td:nth-child(2),
	.home-table[data-hrating="3"] tbody tr:not(.row-terms):not(:last-child) td:nth-child(3),
	.home-table[data-hrating="4"] tbody tr:not(.row-terms):not(:last-child) td:nth-child(4),
	.home-table[data-hrating="5"] tbody tr:not(.row-terms):not(:last-child) td:nth-child(5),
	.home-table[data-hrating="6"] tbody tr:not(.row-terms):not(:last-child) td:nth-child(6),
	.home-table[data-hrating="7"] tbody tr:not(.row-terms):not(:last-child) td:nth-child(7),
	.home-table[data-hrating="8"] tbody tr:not(.row-terms):not(:last-child) td:nth-child(8),
	.home-table[data-hrating="9"] tbody tr:not(.row-terms):not(:last-child) td:nth-child(9),
	.home-table[data-hrating="10"] tbody tr:not(.row-terms):not(:last-child) td:nth-child(10) { padding-bottom: 10px }
	.home-table[data-hlink="1"] tbody tr:not(.row-terms) td:nth-child(1),
	.home-table[data-hlink="2"] tbody tr:not(.row-terms) td:nth-child(2),
	.home-table[data-hlink="3"] tbody tr:not(.row-terms) td:nth-child(3),
	.home-table[data-hlink="4"] tbody tr:not(.row-terms) td:nth-child(4),
	.home-table[data-hlink="5"] tbody tr:not(.row-terms) td:nth-child(5),
	.home-table[data-hlink="6"] tbody tr:not(.row-terms) td:nth-child(6),
	.home-table[data-hlink="7"] tbody tr:not(.row-terms) td:nth-child(7),
	.home-table[data-hlink="8"] tbody tr:not(.row-terms) td:nth-child(8),
	.home-table[data-hlink="9"] tbody tr:not(.row-terms) td:nth-child(9),
	.home-table[data-hlink="10"] tbody tr:not(.row-terms) td:nth-child(10) { width: 13% }
	.home-table[data-hlink="1"] tbody tr:not(.row-terms):not(:last-child) td:nth-child(1),
	.home-table[data-hlink="2"] tbody tr:not(.row-terms):not(:last-child) td:nth-child(2),
	.home-table[data-hlink="3"] tbody tr:not(.row-terms):not(:last-child) td:nth-child(3),
	.home-table[data-hlink="4"] tbody tr:not(.row-terms):not(:last-child) td:nth-child(4),
	.home-table[data-hlink="5"] tbody tr:not(.row-terms):not(:last-child) td:nth-child(5),
	.home-table[data-hlink="6"] tbody tr:not(.row-terms):not(:last-child) td:nth-child(6),
	.home-table[data-hlink="7"] tbody tr:not(.row-terms):not(:last-child) td:nth-child(7),
	.home-table[data-hlink="8"] tbody tr:not(.row-terms):not(:last-child) td:nth-child(8),
	.home-table[data-hlink="9"] tbody tr:not(.row-terms):not(:last-child) td:nth-child(9),
	.home-table[data-hlink="10"] tbody tr:not(.row-terms):not(:last-child) td:nth-child(10) { padding-bottom: 10px }
	.home-table.flexed table,
	.home-table.flexed thead,
	.home-table.flexed tbody,
	.home-table.flexed caption { display: block; box-sizing: border-box }
	.home-table.flexed caption { margin-bottom: 10px }
	.home-table.flexed tr { display: flex; flex-direction: row; box-sizing: border-box }
	.home-table.flexed th,
	.home-table.flexed td { display: flex; box-sizing: border-box }
	.home-table.flexed th { justify-content: center; align-items: center; align-content: center }
	.home-table.flexed td { align-items: center; align-content: center }
	.home-table.flexed tbody tr { flex-wrap: wrap; padding: 10px 0 }
	.home-table.flexed tbody tr + tr { border-top: 1px solid #dcdcdc }
	.home-table.flexed .home-bonus-item { flex-basis: 100% }
	.home-table.flexed tbody .row-terms { display: none }
	.home-table.flexed[data-hlogo="1"] thead tr th:nth-child(1),
	.home-table.flexed[data-hlogo="1"] tbody tr td:nth-child(1),
	.home-table.flexed[data-hlogo="2"] thead tr th:nth-child(2),
	.home-table.flexed[data-hlogo="2"] tbody tr td:nth-child(2),
	.home-table.flexed[data-hlogo="3"] thead tr th:nth-child(3),
	.home-table.flexed[data-hlogo="3"] tbody tr td:nth-child(3),
	.home-table.flexed[data-hlogo="4"] thead tr th:nth-child(4),
	.home-table.flexed[data-hlogo="4"] tbody tr td:nth-child(4),
	.home-table.flexed[data-hlogo="5"] thead tr th:nth-child(5),
	.home-table.flexed[data-hlogo="5"] tbody tr td:nth-child(5),
	.home-table.flexed[data-hlogo="6"] thead tr th:nth-child(6),
	.home-table.flexed[data-hlogo="6"] tbody tr td:nth-child(6),
	.home-table.flexed[data-hlogo="7"] thead tr th:nth-child(7),
	.home-table.flexed[data-hlogo="7"] tbody tr td:nth-child(7),
	.home-table.flexed[data-hlogo="8"] thead tr th:nth-child(8),
	.home-table.flexed[data-hlogo="8"] tbody tr td:nth-child(8),
	.home-table.flexed[data-hlogo="9"] thead tr th:nth-child(9),
	.home-table.flexed[data-hlogo="9"] tbody tr td:nth-child(9),
	.home-table.flexed[data-hlogo="10"] thead tr th:nth-child(10),
	.home-table.flexed[data-hlogo="10"] tbody tr td:nth-child(10) { flex-basis: 18%; width: 18%; max-width: 18%; justify-content: center }
	.home-table.flexed[data-hbonus="1"] thead tr th:nth-child(1),
	.home-table.flexed[data-hbonus="1"] tbody tr td:nth-child(1),
	.home-table.flexed[data-hbonus="2"] thead tr th:nth-child(2),
	.home-table.flexed[data-hbonus="2"] tbody tr td:nth-child(2),
	.home-table.flexed[data-hbonus="3"] thead tr th:nth-child(3),
	.home-table.flexed[data-hbonus="3"] tbody tr td:nth-child(3),
	.home-table.flexed[data-hbonus="4"] thead tr th:nth-child(4),
	.home-table.flexed[data-hbonus="4"] tbody tr td:nth-child(4),
	.home-table.flexed[data-hbonus="5"] thead tr th:nth-child(5),
	.home-table.flexed[data-hbonus="5"] tbody tr td:nth-child(5),
	.home-table.flexed[data-hbonus="6"] thead tr th:nth-child(6),
	.home-table.flexed[data-hbonus="6"] tbody tr td:nth-child(6),
	.home-table.flexed[data-hbonus="7"] thead tr th:nth-child(7),
	.home-table.flexed[data-hbonus="7"] tbody tr td:nth-child(7),
	.home-table.flexed[data-hbonus="8"] thead tr th:nth-child(8),
	.home-table.flexed[data-hbonus="8"] tbody tr td:nth-child(8),
	.home-table.flexed[data-hbonus="9"] thead tr th:nth-child(9),
	.home-table.flexed[data-hbonus="9"] tbody tr td:nth-child(9),
	.home-table.flexed[data-hbonus="10"] thead tr th:nth-child(10),
	.home-table.flexed[data-hbonus="10"] tbody tr td:nth-child(10) { flex-basis: 30%; width: 30%; max-width: 30%; flex-grow: 1 }
	.home-table.flexed[data-hhighlights="1"] thead tr th:nth-child(1),
	.home-table.flexed[data-hhighlights="1"] tbody tr td:nth-child(1),
	.home-table.flexed[data-hhighlights="2"] thead tr th:nth-child(2),
	.home-table.flexed[data-hhighlights="2"] tbody tr td:nth-child(2),
	.home-table.flexed[data-hhighlights="3"] thead tr th:nth-child(3),
	.home-table.flexed[data-hhighlights="3"] tbody tr td:nth-child(3),
	.home-table.flexed[data-hhighlights="4"] thead tr th:nth-child(4),
	.home-table.flexed[data-hhighlights="4"] tbody tr td:nth-child(4),
	.home-table.flexed[data-hhighlights="5"] thead tr th:nth-child(5),
	.home-table.flexed[data-hhighlights="5"] tbody tr td:nth-child(5),
	.home-table.flexed[data-hhighlights="6"] thead tr th:nth-child(6),
	.home-table.flexed[data-hhighlights="6"] tbody tr td:nth-child(6),
	.home-table.flexed[data-hhighlights="7"] thead tr th:nth-child(7),
	.home-table.flexed[data-hhighlights="7"] tbody tr td:nth-child(7),
	.home-table.flexed[data-hhighlights="8"] thead tr th:nth-child(8),
	.home-table.flexed[data-hhighlights="8"] tbody tr td:nth-child(8),
	.home-table.flexed[data-hhighlights="9"] thead tr th:nth-child(9),
	.home-table.flexed[data-hhighlights="9"] tbody tr td:nth-child(9),
	.home-table.flexed[data-hhighlights="10"] thead tr th:nth-child(10),
	.home-table.flexed[data-hhighlights="10"] tbody tr td:nth-child(10) { flex-basis: 21.7%; width: 21.7%; max-width: 21.7%; padding-bottom: 0 !important }
	.home-table.flexed[data-hrating="1"] thead tr th:nth-child(1),
	.home-table.flexed[data-hrating="1"] tbody tr td:nth-child(1),
	.home-table.flexed[data-hrating="2"] thead tr th:nth-child(2),
	.home-table.flexed[data-hrating="2"] tbody tr td:nth-child(2),
	.home-table.flexed[data-hrating="3"] thead tr th:nth-child(3),
	.home-table.flexed[data-hrating="3"] tbody tr td:nth-child(3),
	.home-table.flexed[data-hrating="4"] thead tr th:nth-child(4),
	.home-table.flexed[data-hrating="4"] tbody tr td:nth-child(4),
	.home-table.flexed[data-hrating="5"] thead tr th:nth-child(5),
	.home-table.flexed[data-hrating="5"] tbody tr td:nth-child(5),
	.home-table.flexed[data-hrating="6"] thead tr th:nth-child(6),
	.home-table.flexed[data-hrating="6"] tbody tr td:nth-child(6),
	.home-table.flexed[data-hrating="7"] thead tr th:nth-child(7),
	.home-table.flexed[data-hrating="7"] tbody tr td:nth-child(7),
	.home-table.flexed[data-hrating="8"] thead tr th:nth-child(8),
	.home-table.flexed[data-hrating="8"] 
	tbody tr td:nth-child(8),
	.home-table.flexed[data-hrating="9"] thead tr th:nth-child(9),
	.home-table.flexed[data-hrating="9"] tbody tr td:nth-child(9),
	.home-table.flexed[data-hrating="10"] thead tr th:nth-child(10),
	.home-table.flexed[data-hrating="10"] tbody tr td:nth-child(10) { flex-basis: 17.3%; width: 17.3%; max-width: 17.3%; justify-content: center; padding-bottom: 0 !important }
	.home-table.flexed[data-hlink="1"] thead tr th:nth-child(1),
	.home-table.flexed[data-hlink="1"] tbody tr td:nth-child(1),
	.home-table.flexed[data-hlink="2"] thead tr th:nth-child(2),
	.home-table.flexed[data-hlink="2"] tbody tr td:nth-child(2),
	.home-table.flexed[data-hlink="3"] thead tr th:nth-child(3),
	.home-table.flexed[data-hlink="3"] tbody tr td:nth-child(3),
	.home-table.flexed[data-hlink="4"] thead tr th:nth-child(4),
	.home-table.flexed[data-hlink="4"] tbody tr td:nth-child(4),
	.home-table.flexed[data-hlink="5"] thead tr th:nth-child(5),
	.home-table.flexed[data-hlink="5"] tbody tr td:nth-child(5),
	.home-table.flexed[data-hlink="6"] thead tr th:nth-child(6),
	.home-table.flexed[data-hlink="6"] tbody tr td:nth-child(6),
	.home-table.flexed[data-hlink="7"] thead tr th:nth-child(7),
	.home-table.flexed[data-hlink="7"] tbody tr td:nth-child(7),
	.home-table.flexed[data-hlink="8"] thead tr th:nth-child(8),
	.home-table.flexed[data-hlink="8"] tbody tr td:nth-child(8),
	.home-table.flexed[data-hlink="9"] thead tr th:nth-child(9),
	.home-table.flexed[data-hlink="9"] tbody tr td:nth-child(9),
	.home-table.flexed[data-hlink="10"] thead tr th:nth-child(10),
	.home-table.flexed[data-hlink="10"] tbody tr td:nth-child(10) { flex-basis: 13%; width: 13%; max-width: 13%; padding-bottom: 0 !important }
	.home-table.flexed[data-hterms="1"] thead tr th:nth-child(1),
	.home-table.flexed[data-hterms="2"] thead tr th:nth-child(2),
	.home-table.flexed[data-hterms="3"] thead tr th:nth-child(3),
	.home-table.flexed[data-hterms="4"] thead tr th:nth-child(4),
	.home-table.flexed[data-hterms="5"] thead tr th:nth-child(5),
	.home-table.flexed[data-hterms="6"] thead tr th:nth-child(6),
	.home-table.flexed[data-hterms="7"] thead tr th:nth-child(7),
	.home-table.flexed[data-hterms="8"] thead tr th:nth-child(8),
	.home-table.flexed[data-hterms="9"] thead tr th:nth-child(9),
	.home-table.flexed[data-hterms="10"] thead tr th:nth-child(10) { display: none }
	.home-table.flexed[data-hterms="2"] thead tr th:nth-child(1),
	.home-table.flexed[data-hterms="3"] thead tr th:nth-child(2),
	.home-table.flexed[data-hterms="4"] thead tr th:nth-child(3),
	.home-table.flexed[data-hterms="5"] thead tr th:nth-child(4),
	.home-table.flexed[data-hterms="6"] thead tr th:nth-child(5),
	.home-table.flexed[data-hterms="7"] thead tr th:nth-child(6),
	.home-table.flexed[data-hterms="8"] thead tr th:nth-child(7),
	.home-table.flexed[data-hterms="9"] thead tr th:nth-child(8),
	.home-table.flexed[data-hterms="10"] thead tr th:nth-child(9) { border-right-width: 1px }
	.home-table.flexed[data-hterms="1"] tbody tr td:nth-child(1),
	.home-table.flexed[data-hterms="2"] tbody tr td:nth-child(2),
	.home-table.flexed[data-hterms="3"] tbody tr td:nth-child(3),
	.home-table.flexed[data-hterms="4"] tbody tr td:nth-child(4),
	.home-table.flexed[data-hterms="5"] tbody tr td:nth-child(5),
	.home-table.flexed[data-hterms="6"] tbody tr td:nth-child(6),
	.home-table.flexed[data-hterms="7"] tbody tr td:nth-child(7),
	.home-table.flexed[data-hterms="8"] tbody tr td:nth-child(8),
	.home-table.flexed[data-hterms="9"] tbody tr td:nth-child(9),
	.home-table.flexed[data-hterms="10"] tbody tr td:nth-child(10) { display: block; flex-basis: 100%; margin-top: 5px; text-align: right; font-size: 11px }
	.home-table.flexed.numbered[data-hterms="1"] tbody tr td:nth-child(1),
	.home-table.flexed.numbered[data-hterms="2"] tbody tr td:nth-child(2),
	.home-table.flexed.numbered[data-hterms="3"] tbody tr td:nth-child(3),
	.home-table.flexed.numbered[data-hterms="4"] tbody tr td:nth-child(4),
	.home-table.flexed.numbered[data-hterms="5"] tbody tr td:nth-child(5),
	.home-table.flexed.numbered[data-hterms="6"] tbody tr td:nth-child(6),
	.home-table.flexed.numbered[data-hterms="7"] tbody tr td:nth-child(7),
	.home-table.flexed.numbered[data-hterms="8"] tbody tr td:nth-child(8),
	.home-table.flexed.numbered[data-hterms="9"] tbody tr td:nth-child(9),
	.home-table.flexed.numbered[data-hterms="10"] tbody tr td:nth-child(10) { padding-left: 40px }
	.home-table.flexed.wide-cta[data-hrating="1"] thead tr th:nth-child(1),
	.home-table.flexed.wide-cta[data-hrating="1"] tbody tr td:nth-child(1),
	.home-table.flexed.wide-cta[data-hrating="2"] thead tr th:nth-child(2),
	.home-table.flexed.wide-cta[data-hrating="2"] tbody tr td:nth-child(2),
	.home-table.flexed.wide-cta[data-hrating="3"] thead tr th:nth-child(3),
	.home-table.flexed.wide-cta[data-hrating="3"] tbody tr td:nth-child(3),
	.home-table.flexed.wide-cta[data-hrating="4"] thead tr th:nth-child(4),
	.home-table.flexed.wide-cta[data-hrating="4"] tbody tr td:nth-child(4),
	.home-table.flexed.wide-cta[data-hrating="5"] thead tr th:nth-child(5),
	.home-table.flexed.wide-cta[data-hrating="5"] tbody tr td:nth-child(5),
	.home-table.flexed.wide-cta[data-hrating="6"] thead tr th:nth-child(6),
	.home-table.flexed.wide-cta[data-hrating="6"] tbody tr td:nth-child(6),
	.home-table.flexed.wide-cta[data-hrating="7"] thead tr th:nth-child(7),
	.home-table.flexed.wide-cta[data-hrating="7"] tbody tr td:nth-child(7),
	.home-table.flexed.wide-cta[data-hrating="8"] thead tr th:nth-child(8),
	.home-table.flexed.wide-cta[data-hrating="8"] tbody tr td:nth-child(8),
	.home-table.flexed.wide-cta[data-hrating="9"] thead tr th:nth-child(9),
	.home-table.flexed.wide-cta[data-hrating="9"] tbody tr td:nth-child(9),
	.home-table.flexed.wide-cta[data-hrating="10"] thead tr th:nth-child(10),
	.home-table.flexed.wide-cta[data-hrating="10"] tbody tr td:nth-child(10) { flex-basis: 13.3%; width: 13.3%; max-width: 13.3% }
	.home-table.flexed.wide-cta[data-hhighlights="1"] thead tr th:nth-child(1),
	.home-table.flexed.wide-cta[data-hhighlights="1"] tbody tr td:nth-child(1),
	.home-table.flexed.wide-cta[data-hhighlights="2"] thead tr th:nth-child(2),
	.home-table.flexed.wide-cta[data-hhighlights="2"] tbody tr td:nth-child(2),
	.home-table.flexed.wide-cta[data-hhighlights="3"] thead tr th:nth-child(3),
	.home-table.flexed.wide-cta[data-hhighlights="3"] tbody tr td:nth-child(3),
	.home-table.flexed.wide-cta[data-hhighlights="4"] thead tr th:nth-child(4),
	.home-table.flexed.wide-cta[data-hhighlights="4"] tbody tr td:nth-child(4),
	.home-table.flexed.wide-cta[data-hhighlights="5"] thead tr th:nth-child(5),
	.home-table.flexed.wide-cta[data-hhighlights="5"] tbody tr td:nth-child(5),
	.home-table.flexed.wide-cta[data-hhighlights="6"] thead tr th:nth-child(6),
	.home-table.flexed.wide-cta[data-hhighlights="6"] tbody tr td:nth-child(6),
	.home-table.flexed.wide-cta[data-hhighlights="7"] thead tr th:nth-child(7),
	.home-table.flexed.wide-cta[data-hhighlights="7"] tbody tr td:nth-child(7),
	.home-table.flexed.wide-cta[data-hhighlights="8"] thead tr th:nth-child(8),
	.home-table.flexed.wide-cta[data-hhighlights="8"] tbody tr td:nth-child(8),
	.home-table.flexed.wide-cta[data-hhighlights="9"] thead tr th:nth-child(9),
	.home-table.flexed.wide-cta[data-hhighlights="9"] tbody tr td:nth-child(9),
	.home-table.flexed.wide-cta[data-hhighlights="10"] thead tr th:nth-child(10),
	.home-table.flexed.wide-cta[data-hhighlights="10"] tbody tr td:nth-child(10) { flex-basis: 23.7%; width: 23.7%; max-width: 23.7%; padding-left: 12px }
	.home-table.flexed.wide-cta[data-hbonus="1"] thead tr th:nth-child(1),
	.home-table.flexed.wide-cta[data-hbonus="1"] tbody tr td:nth-child(1),
	.home-table.flexed.wide-cta[data-hbonus="2"] thead tr th:nth-child(2),
	.home-table.flexed.wide-cta[data-hbonus="2"] tbody tr td:nth-child(2),
	.home-table.flexed.wide-cta[data-hbonus="3"] thead tr th:nth-child(3),
	.home-table.flexed.wide-cta[data-hbonus="3"] tbody tr td:nth-child(3),
	.home-table.flexed.wide-cta[data-hbonus="4"] thead tr th:nth-child(4),
	.home-table.flexed.wide-cta[data-hbonus="4"] tbody tr td:nth-child(4),
	.home-table.flexed.wide-cta[data-hbonus="5"] thead tr th:nth-child(5),
	.home-table.flexed.wide-cta[data-hbonus="5"] tbody tr td:nth-child(5),
	.home-table.flexed.wide-cta[data-hbonus="6"] thead tr th:nth-child(6),
	.home-table.flexed.wide-cta[data-hbonus="6"] tbody tr td:nth-child(6),
	.home-table.flexed.wide-cta[data-hbonus="7"] thead tr th:nth-child(7),
	.home-table.flexed.wide-cta[data-hbonus="7"] tbody tr td:nth-child(7),
	.home-table.flexed.wide-cta[data-hbonus="8"] thead tr th:nth-child(8),
	.home-table.flexed.wide-cta[data-hbonus="8"] tbody tr td:nth-child(8),
	.home-table.flexed.wide-cta[data-hbonus="9"] thead tr th:nth-child(9),
	.home-table.flexed.wide-cta[data-hbonus="9"] tbody tr td:nth-child(9),
	.home-table.flexed.wide-cta[data-hbonus="10"] thead tr th:nth-child(10),
	.home-table.flexed.wide-cta[data-hbonus="10"] tbody tr td:nth-child(10) { flex-basis: 24%; width: 24%; max-width: 24% }
	.home-table.flexed.wide-cta[data-hlink="1"] thead tr th:nth-child(1),
	.home-table.flexed.wide-cta[data-hlink="1"] tbody tr td:nth-child(1),
	.home-table.flexed.wide-cta[data-hlink="2"] thead tr th:nth-child(2),
	.home-table.flexed.wide-cta[data-hlink="2"] tbody tr td:nth-child(2),
	.home-table.flexed.wide-cta[data-hlink="3"] thead tr th:nth-child(3),
	.home-table.flexed.wide-cta[data-hlink="3"] tbody tr td:nth-child(3),
	.home-table.flexed.wide-cta[data-hlink="4"] thead tr th:nth-child(4),
	.home-table.flexed.wide-cta[data-hlink="4"] tbody tr td:nth-child(4),
	.home-table.flexed.wide-cta[data-hlink="5"] thead tr th:nth-child(5),
	.home-table.flexed.wide-cta[data-hlink="5"] tbody tr td:nth-child(5),
	.home-table.flexed.wide-cta[data-hlink="6"] thead tr th:nth-child(6),
	.home-table.flexed.wide-cta[data-hlink="6"] tbody tr td:nth-child(6),
	.home-table.flexed.wide-cta[data-hlink="7"] thead tr th:nth-child(7),
	.home-table.flexed.wide-cta[data-hlink="7"] tbody tr td:nth-child(7),
	.home-table.flexed.wide-cta[data-hlink="8"] thead tr th:nth-child(8),
	.home-table.flexed.wide-cta[data-hlink="8"] tbody tr td:nth-child(8),
	.home-table.flexed.wide-cta[data-hlink="9"] thead tr th:nth-child(9),
	.home-table.flexed.wide-cta[data-hlink="9"] tbody tr td:nth-child(9),
	.home-table.flexed.wide-cta[data-hlink="10"] thead tr th:nth-child(10),
	.home-table.flexed.wide-cta[data-hlink="10"] tbody tr td:nth-child(10) { flex-basis: 21%; width: 21%; max-width: 21% }
	.home-table.flexed.with-paym-time[data-hrating="1"] thead tr th:nth-child(1),
	.home-table.flexed.with-paym-time[data-hrating="1"] tbody tr td:nth-child(1),
	.home-table.flexed.with-paym-time[data-hrating="2"] thead tr th:nth-child(2),
	.home-table.flexed.with-paym-time[data-hrating="2"] tbody tr td:nth-child(2),
	.home-table.flexed.with-paym-time[data-hrating="3"] thead tr th:nth-child(3),
	.home-table.flexed.with-paym-time[data-hrating="3"] tbody tr td:nth-child(3),
	.home-table.flexed.with-paym-time[data-hrating="4"] thead tr th:nth-child(4),
	.home-table.flexed.with-paym-time[data-hrating="4"] tbody tr td:nth-child(4),
	.home-table.flexed.with-paym-time[data-hrating="5"] thead tr th:nth-child(5),
	.home-table.flexed.with-paym-time[data-hrating="5"] tbody tr td:nth-child(5),
	.home-table.flexed.with-paym-time[data-hrating="6"] thead tr th:nth-child(6),
	.home-table.flexed.with-paym-time[data-hrating="6"] tbody tr td:nth-child(6),
	.home-table.flexed.with-paym-time[data-hrating="7"] thead tr th:nth-child(7),
	.home-table.flexed.with-paym-time[data-hrating="7"] tbody tr td:nth-child(7),
	.home-table.flexed.with-paym-time[data-hrating="8"] thead tr th:nth-child(8),
	.home-table.flexed.with-paym-time[data-hrating="8"] tbody tr td:nth-child(8),
	.home-table.flexed.with-paym-time[data-hrating="9"] thead tr th:nth-child(9),
	.home-table.flexed.with-paym-time[data-hrating="9"] tbody tr td:nth-child(9),
	.home-table.flexed.with-paym-time[data-hrating="10"] thead tr th:nth-child(10),
	.home-table.flexed.with-paym-time[data-hrating="10"] tbody tr td:nth-child(10) { flex-basis: 12.5%; width: 12.5%; max-width: 12.5% }
	.home-table.flexed.with-paym-time[data-hhighlights="1"] thead tr th:nth-child(1),
	.home-table.flexed.with-paym-time[data-hhighlights="1"] tbody tr td:nth-child(1),
	.home-table.flexed.with-paym-time[data-hhighlights="2"] thead tr th:nth-child(2),
	.home-table.flexed.with-paym-time[data-hhighlights="2"] tbody tr td:nth-child(2),
	.home-table.flexed.with-paym-time[data-hhighlights="3"] thead tr th:nth-child(3),
	.home-table.flexed.with-paym-time[data-hhighlights="3"] tbody tr td:nth-child(3),
	.home-table.flexed.with-paym-time[data-hhighlights="4"] thead tr th:nth-child(4),
	.home-table.flexed.with-paym-time[data-hhighlights="4"] tbody tr td:nth-child(4),
	.home-table.flexed.with-paym-time[data-hhighlights="5"] thead tr th:nth-child(5),
	.home-table.flexed.with-paym-time[data-hhighlights="5"] tbody tr td:nth-child(5),
	.home-table.flexed.with-paym-time[data-hhighlights="6"] thead tr th:nth-child(6),
	.home-table.flexed.with-paym-time[data-hhighlights="6"] tbody tr td:nth-child(6),
	.home-table.flexed.with-paym-time[data-hhighlights="7"] thead tr th:nth-child(7),
	.home-table.flexed.with-paym-time[data-hhighlights="7"] tbody tr td:nth-child(7),
	.home-table.flexed.with-paym-time[data-hhighlights="8"] thead tr th:nth-child(8),
	.home-table.flexed.with-paym-time[data-hhighlights="8"] tbody tr td:nth-child(8),
	.home-table.flexed.with-paym-time[data-hhighlights="9"] thead tr th:nth-child(9),
	.home-table.flexed.with-paym-time[data-hhighlights="9"] tbody tr td:nth-child(9),
	.home-table.flexed.with-paym-time[data-hhighlights="10"] thead tr th:nth-child(10),
	.home-table.flexed.with-paym-time[data-hhighlights="10"] tbody tr td:nth-child(10) { flex-basis: 21.5%; width: 21.5%; max-width: 21.5% }
	.home-table.flexed.with-paym-time[data-hbonus="1"] thead tr th:nth-child(1),
	.home-table.flexed.with-paym-time[data-hbonus="1"] tbody tr td:nth-child(1),
	.home-table.flexed.with-paym-time[data-hbonus="2"] thead tr th:nth-child(2),
	.home-table.flexed.with-paym-time[data-hbonus="2"] tbody tr td:nth-child(2),
	.home-table.flexed.with-paym-time[data-hbonus="3"] thead tr th:nth-child(3),
	.home-table.flexed.with-paym-time[data-hbonus="3"] tbody tr td:nth-child(3),
	.home-table.flexed.with-paym-time[data-hbonus="4"] thead tr th:nth-child(4),
	.home-table.flexed.with-paym-time[data-hbonus="4"] tbody tr td:nth-child(4),
	.home-table.flexed.with-paym-time[data-hbonus="5"] thead tr th:nth-child(5),
	.home-table.flexed.with-paym-time[data-hbonus="5"] tbody tr td:nth-child(5),
	.home-table.flexed.with-paym-time[data-hbonus="6"] thead tr th:nth-child(6),
	.home-table.flexed.with-paym-time[data-hbonus="6"] tbody tr td:nth-child(6),
	.home-table.flexed.with-paym-time[data-hbonus="7"] thead tr th:nth-child(7),
	.home-table.flexed.with-paym-time[data-hbonus="7"] tbody tr td:nth-child(7),
	.home-table.flexed.with-paym-time[data-hbonus="8"] thead tr th:nth-child(8),
	.home-table.flexed.with-paym-time[data-hbonus="8"] tbody tr td:nth-child(8),
	.home-table.flexed.with-paym-time[data-hbonus="9"] thead tr th:nth-child(9),
	.home-table.flexed.with-paym-time[data-hbonus="9"] tbody tr td:nth-child(9),
	.home-table.flexed.with-paym-time[data-hbonus="10"] thead tr th:nth-child(10),
	.home-table.flexed.with-paym-time[data-hbonus="10"] tbody tr td:nth-child(10) { flex-basis: 16%; width: 16%; max-width: 16% }
	.home-table.flexed.with-paym-time[data-htext="1"] thead tr th:nth-child(1),
	.home-table.flexed.with-paym-time[data-htext="1"] tbody tr td:nth-child(1),
	.home-table.flexed.with-paym-time[data-htext="2"] thead tr th:nth-child(2),
	.home-table.flexed.with-paym-time[data-htext="2"] tbody tr td:nth-child(2),
	.home-table.flexed.with-paym-time[data-htext="3"] thead tr th:nth-child(3),
	.home-table.flexed.with-paym-time[data-htext="3"] tbody tr td:nth-child(3),
	.home-table.flexed.with-paym-time[data-htext="4"] thead tr th:nth-child(4),
	.home-table.flexed.with-paym-time[data-htext="4"] tbody tr td:nth-child(4),
	.home-table.flexed.with-paym-time[data-htext="5"] thead tr th:nth-child(5),
	.home-table.flexed.with-paym-time[data-htext="5"] tbody tr td:nth-child(5),
	.home-table.flexed.with-paym-time[data-htext="6"] thead tr th:nth-child(6),
	.home-table.flexed.with-paym-time[data-htext="6"] tbody tr td:nth-child(6),
	.home-table.flexed.with-paym-time[data-htext="7"] thead tr th:nth-child(7),
	.home-table.flexed.with-paym-time[data-htext="7"] tbody tr td:nth-child(7),
	.home-table.flexed.with-paym-time[data-htext="8"] thead tr th:nth-child(8),
	.home-table.flexed.with-paym-time[data-htext="8"] tbody tr td:nth-child(8),
	.home-table.flexed.with-paym-time[data-htext="9"] thead tr th:nth-child(9),
	.home-table.flexed.with-paym-time[data-htext="9"] tbody tr td:nth-child(9),
	.home-table.flexed.with-paym-time[data-htext="10"] thead tr th:nth-child(10),
	.home-table.flexed.with-paym-time[data-htext="10"] tbody tr td:nth-child(10) { flex-basis: 14%; width: 14%; max-width: 14%; text-align: center; justify-content: center; font-size: 14px; color: #4a4a4a; }
	.home-table.flexed.with-paym-time[data-hlink="1"] thead tr th:nth-child(1),
	.home-table.flexed.with-paym-time[data-hlink="1"] tbody tr td:nth-child(1),
	.home-table.flexed.with-paym-time[data-hlink="2"] thead tr th:nth-child(2),
	.home-table.flexed.with-paym-time[data-hlink="2"] tbody tr td:nth-child(2),
	.home-table.flexed.with-paym-time[data-hlink="3"] thead tr th:nth-child(3),
	.home-table.flexed.with-paym-time[data-hlink="3"] tbody tr td:nth-child(3),
	.home-table.flexed.with-paym-time[data-hlink="4"] thead tr th:nth-child(4),
	.home-table.flexed.with-paym-time[data-hlink="4"] tbody tr td:nth-child(4),
	.home-table.flexed.with-paym-time[data-hlink="5"] thead tr th:nth-child(5),
	.home-table.flexed.with-paym-time[data-hlink="5"] tbody tr td:nth-child(5),
	.home-table.flexed.with-paym-time[data-hlink="6"] thead tr th:nth-child(6),
	.home-table.flexed.with-paym-time[data-hlink="6"] tbody tr td:nth-child(6),
	.home-table.flexed.with-paym-time[data-hlink="7"] thead tr th:nth-child(7),
	.home-table.flexed.with-paym-time[data-hlink="7"] tbody tr td:nth-child(7),
	.home-table.flexed.with-paym-time[data-hlink="8"] thead tr th:nth-child(8),
	.home-table.flexed.with-paym-time[data-hlink="8"] tbody tr td:nth-child(8),
	.home-table.flexed.with-paym-time[data-hlink="9"] thead tr th:nth-child(9),
	.home-table.flexed.with-paym-time[data-hlink="9"] tbody tr td:nth-child(9),
	.home-table.flexed.with-paym-time[data-hlink="10"] thead tr th:nth-child(10),
	.home-table.flexed.with-paym-time[data-hlink="10"] tbody tr td:nth-child(10) { flex-basis: 16%; width: 16%; max-width: 16% }

	.home-table .home-bonus-item { margin-right: 0 }
	.home-table .home-rating-item { text-align: center; display: block }
	.home-table .home-rating-item[data-suffix]:after,
	.home-table .home-rating-item ~ a { display: block; margin-top: 2px }
	.home-table .home-rating-item .hidden { top: -2px }
	.home-table .home-rating-item[data-suffix] .hidden { margin-left: 0; top: -2px }
	.home-table .row-terms:not(:last-child) td { border-bottom: 1px solid #dcdcdc; padding-bottom: 10px }
	.home-table.numbered .row-terms td { padding-left: 40px; position: relative }
	.home-table.numbered .row-terms td:before { content: counter(home-row); background: #e9edf0; width: 28px; font-size: 18px; font-weight: 700; text-align: center; color: #456370; position: absolute; top: -64px; left: 0; bottom: 10px; display: flex; flex-flow: column nowrap; justify-content: center; align-items: center }
	.home-table.no-terms tr:not(:last-child) td { border-bottom: 1px solid #dcdcdc; padding-bottom: 8px }
	.home-table .act,
	.home-table .act1 { padding: 13px; white-space: nowrap }
	.home-table ._vp-logo { width: 165px; height: 60px }

	.home-table-suffix { border-top: none; padding: 2px 22px 12px }
	.home-table + .home-table-suffix,
	.tabbed-table + .home-table-suffix { margin-bottom: 0; top: -20px }

	.home-table-basic { padding: 12px 30px 34px }
	.home-table-basic .home-table-title { margin-bottom: 16px }
}




.act, .act1 {
    display: block;
    padding: 5px;
    margin: 0 auto;
    font: 600 12px/16px 'open sans', sans-serif;
    color: #ef5b3b;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    background: white;
    border: 1px solid #ed583a;
    border-radius: 2px;
}

.act1 {
    color: white;
    background: #ff7247;
    background: -moz-linear-gradient(top, #ff7247 0%, #ee593b 100%);
    background: -webkit-linear-gradient(top, #ff7247 0%, #ee593b 100%);
    background: linear-gradient(to bottom, #ff7247 0%, #ee593b 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff7247', endColorstr='#ee593b', GradientType=0);
}

.act1:hover {
    background: #ff7247;
	color:white;
}


._logo:before,
._logo:after,
._logo > span { background-position: center; background-repeat: no-repeat; background-size: contain; display: inline-block; vertical-align: middle; width: 164px; height: 72px; color: transparent; font-size: 0 }
._logo > span > a { display: block; width: 100%; height: 100% }
._logo.l:before,
._logo.l:after,
._logo.l > span { width: 123px; height: 54px }
._logo.m:before,
._logo.m:after,
._logo.m > span { width: 82px; height: 36px }
._logo.s:before,
._logo.s:after,
._logo.s > span { width: 62px; height: 27px }
._logo.cas888:before,
._logo.cas888:after,
._logo.cas888 > span,
._logo.c888:before,
._logo.c888:after,
._logo.c888 > span { background-image: url(/wp-content/themes/atout/framework/img/888casino.png) }
._logo.mgm:before,
._logo.mgm:after,
._logo.mgm > span,
._logo.mgm > a { background-image: url(/wp-content/themes/atout/framework/img/betmgm.png) }
._logo.borgata:before,
._logo.borgata:after,
._logo.borgata > span,
._logo.borgata > a { background-image: url(/wp-content/themes/atout/framework/img/borgata.png) }
._logo.caesars:before,
._logo.caesars:after,
._logo.caesars > span,
._logo.caesars > a { background-image: url(/wp-content/themes/atout/framework/img/caesars.png) }
._logo.unibet:before,
._logo.unibet:after,
._logo.unibet > span { background-image: url(/wp-content/themes/atout/framework/img/unibet.png) }

._logo.royal-panda:before,
._logo.royal-panda:after,
._logo.royal-panda > span,
._logo.royal-panda > a { background-image: url(/wp-content/themes/atout/framework/img/royalpanda.png); }
._logo.vera-john:before,
._logo.vera-john:after,
._logo.vera-john > span,
._logo.vera-john > a { background-image: url(/wp-content/themes/atout/framework/img/vera-and-john.png); }
._logo.gods-casino:before,
._logo.gods-casino:after,
._logo.gods-casino > span,
._logo.gods-casino > a { background-image: url(/wp-content/themes/atout/framework/img/casino-gods.png); }
._logo.leovegas:before,
._logo.leovegas:after,
._logo.leovegas > span,
._logo.leovegas > a { background-image: url(/wp-content/themes/atout/framework/img/leovegas-logo.png); }
._logo.pinnacle:before,
._logo.pinnacle:after,
._logo.pinnacle > span,
._logo.pinnacle > a { background-image: url(/wp-content/themes/atout/framework/img/pinnacle.png); }

._logo.ukgc:before,
._logo.ukgc:after,
._logo.ukgc > span,
._logo.ukgc > a { background-image: url(/wp-content/themes/atout/framework/img/gambling-comission.png); }
._logo.gra:before,
._logo.gra:after,
._logo.gra > span,
._logo.gra > a { background-image: url(/wp-content/themes/atout/framework/img/gibraltar-gambling-commission.png); }
._logo.mga:before,
._logo.mga:after,
._logo.mga > span,
._logo.mga > a { background-image: url(/wp-content/themes/atout/framework/img/mga.png); }
._logo.curacao:before,
._logo.curacao:after,
._logo.curacao > span,
._logo.curacao > a { background-image: url(/wp-content/themes/atout/framework/img/curacao-logo.png); }
._logo.pagcor:before,
._logo.pagcor:after,
._logo.pagcor > span,
._logo.pagcor > a { background-image: url(/wp-content/themes/atout/framework/img/pagcor.png); }
._logo.kgc:before,
._logo.kgc:after,
._logo.kgc > span,
._logo.kgc > a { background-image: url(/wp-content/themes/atout/framework/img/kahnawake-gaming-commission.png); }


h2.fragen,
h3.fragen { position: relative; }
h2.fragen:before,
h3.fragen:before { content: ""; display: inline-block; vertical-align: middle; position: relative; top: -2px; margin-right: 5px; background: url(/wp-content/themes/general/visual/icon-frage.png) no-repeat 0 0; width: 20px; height: 20px; }
h4.frage,
h5.frage { font: 600 13px/20px 'open sans', sans-serif; color: #0a509c; text-align: left }

p.antw,
div.antw>p { padding: 10px 20px 0 !important }
p.antw,
div.antw { padding-bottom: 10px !important; margin-bottom: 10px !important; background: #f3f3f3 }
p.antw,
div.antw>p:first-child { background: #f3f3f3 url(/wp-content/themes/atout/framework/img/icon-antw.png) no-repeat 20px 7px; text-indent: 24px }
.antw .frame { margin-left: 15px; margin-right: 15px; margin-bottom: 0 }
.antw .frame .title { font-family: 'Open Sans', sans-serif; font-size: 15px; font-style: italic; color: #969697 }

@media only screen and (min-width: 768px) {
	h2.fragen,
	h3.fragen { background: url(/wp-content/themes/atout/framework/img/icon-frage.png) no-repeat 0 0; padding-left: 25px; background-position: 0 3px }
	h2.fragen:before,
	h3.fragen:before { content: none; }
	h4.frage,
	h5.frage { font-size: 16px }

	p.antw,
	div.antw>p:first-child { background-position: 20px 10px }
}

h3, h4 {
    font-weight:bold;
    color: #0a509c;

}

ul li { padding-bottom:10px; line-height: 20px;}
.logo { margin-top:20px; transition:all 1s ease;}
.logo:hover{ filter: drop-shadow(4px 4px 5px #303c5d) invert(15%);}

figcaption.wp-caption-text {padding: 8px 0 8px;border-bottom: 1px solid #ececec;text-align: center;}

footer .footer-links {max-width:1140px;margin: 0 auto;padding:0px 10px; position: relative;}
footer .footer-links a {color:#fff;position: absolute;vertical-align: middle;}
.footer-copy a {color:#fff;}