/* ========================================================== */
/* 			            01. Variables                          */
/* ========================================================== */
/* ========================================================== */
/* 			            02. Colors                          */
/* ========================================================== */
/* ========================================================== */
/* 			         03. Breakpoints                          */
/* ========================================================== */
/*
	Description:
	Set a rem font size with pixel fallback
	Useage:
	element{
		@include font-size(16px)
	}
*/
/*
	Description:
	Set a rem font size with pixel fallback
	Useage:
	element{
		@include font-size(16px)
	}
*/
/*
	Description:
	Set placeholder color to inputs
	Useage:
	element{
		@placeholder-color(#cccccc)
	}
*/
/*
	Description:
	Prefix Animations and keyframes
	Useage:
	@include keyframes(fade-out) {
	  	0% { opacity: 1; }
	  	100% { opacity: 0; }
	}
	element{
	 	@include animation('5s fade-out 3');
	}
*/
/*
    Mixin transition prefix

*/
/*
    Mixin transfrorm
*/
/*
	Description:
	Vendor-prefixed CSS
	from https://github.com/HugoGiraudel/sass-boilerplate
	Useage:
	@include vendor(border-radius, 4px);
*/
/*
	Description:
	Cross browser opacity
	Useage:
	@include opacity(0.8);
*/
/*
    Vertical align direct child
*/
/*
    Equal columns with flebox
*/
.theme-follow-list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex; }

.theme-follow-list__item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  border-radius: 5px;
  list-style-type: none;
  margin: 5px;
  width: 25px;
  height: 25px; }
  .theme-follow-list__item a {
    font-size: 1em;
    color: #e23e36; }
    .theme-follow-list__item a svg {
      width: 14px;
      fill: #e23e36;
      position: relative;
      top: 3px; }

.theme-follow-list__item--style1 {
  background-color: white; }

/*  ===============================================================
    Media Items Shortcodes eg.Panels/News Boxes/Betting tips etc. 
=============================================================== */
.media-wrapper {
  padding-top: 30px;
  padding-bottom: 30px; }

.media-item {
  position: relative;
  overflow: hidden; }
  .media-item.grow:hover .media-item-inner {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1); }

.media-item--grid {
  margin-top: 10px;
  margin-bottom: 20px; }

.media-item-inner {
  position: relative; }
  .media-item-inner img {
    width: 100%; }

.media-item--full-image .media-item-inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: transform 300ms;
  -moz-transition: transform 300ms;
  -ms-transition: transform 300ms;
  -o-transition: transform 300ms;
  transition: transform 300ms; }
.media-item--full-image .media-item__content {
  position: relative;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background: rgba(0, 0, 0, 0.8);
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.8) 10%, transparent 50%);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 10%, transparent 50%);
  padding: 20px; }

.abs-bottom-left {
  position: absolute;
  left: 0;
  bottom: 0; }

.abs-top-right {
  position: absolute;
  right: 0;
  top: 0; }

.media-item--full-image--full-height {
  height: 576px; }
  @media only screen and (max-width: 767px) {
    .media-item--full-image--full-height {
      height: 370px;
      margin-bottom: 10px; } }

.media-item--full-image--half-height {
  height: 283px; }

.media-item--full-image--half-height:first-child {
  margin-bottom: 10px; }

.media-item__tags {
  color: white;
  -webkit-box-flex: 100%;
  -moz-box-flex: 100%;
  -webkit-flex: 100%;
  -ms-flex: 100%;
  flex: 100%; }
  .media-item__tags li {
    margin-bottom: 10px; }

.media-item__headline--bottom {
  -webkit-box-flex: 50%;
  -moz-box-flex: 50%;
  -webkit-flex: 50%;
  -ms-flex: 50%;
  flex: 50%;
  -webkit-align-self: flex-end;
  -moz-align-self: flex-end;
  -ms-align-self: flex-end;
  align-self: flex-end; }

.media-item__title {
  padding-top: 10px; }
  @media only screen and (max-width: 1100px) {
    .media-item__title {
      font-size: 18px;
      font-size: 1.2857142857rem; } }

.media-item__title--white {
  color: white; }

.media-item__title--black {
  color: #2d2d2c; }

.media-item__title--small {
  font-size: 17px;
  font-size: 1.2142857143rem; }

.media-item__text--small {
  color: #7c7c7c; }

.media-item--video {
  height: 300px; }

.media-item__label {
  background: #e23e36;
  color: white;
  display: block;
  font-size: 12px;
  font-size: 0.8571428571rem;
  text-transform: uppercase; }
  .media-item__label img {
    max-width: 90px; }
  .media-item__label > span {
    display: inline-block;
    padding: 5px 10px; }
  .media-item__label .odds {
    background-color: #2e53cd; }

.media-item__content svg {
  width: 14px;
  position: relative;
  top: 2px;
  fill: #7c7c7c; }

.media-item__label--border {
  background-color: transparent;
  border: 1px solid;
  border-radius: 5px; }

.media-item__label--primary-color {
  color: #e23e36; }

.media-item__label--secondary-color {
  color: #2e53cd; }

.media-item__label--inline {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 10px; }

.media-item__label--normal {
  padding: 5px 10px; }

.media-item__label--no-padding {
  padding: 0; }

.videos-slider {
  padding: 10px 30px; }

.pokachild-slider-arrow {
  cursor: pointer;
  position: absolute;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
  font-size: 1.7857142857em;
  color: #e23e36; }
  .pokachild-slider-arrow svg {
    width: 21px;
    fill: #e23e36; }
  .pokachild-slider-arrow.pokachild-slick-disabled {
    opacity: .7; }
  .pokachild-slider-arrow.pokachild-slider-next {
    right: 5px; }
  .pokachild-slider-arrow.pokachild-slider-prev {
    left: 5px; }

.icon-block {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 10px; }
  .icon-block a {
    color: inherit; }
  .icon-block a:hover .icon-block-img-wrapper {
    background-color: #2e53cd; }
  .icon-block .icon-block-img-wrapper {
    height: 150px;
    width: 150px;
    border-radius: 100%;
    background-color: #e23e36;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-transition: background-color 300ms;
    -moz-transition: background-color 300ms;
    -ms-transition: background-color 300ms;
    -o-transition: background-color 300ms;
    transition: background-color 300ms; }
    .icon-block .icon-block-img-wrapper img {
      width: 80px; }
  .icon-block h4 {
    margin-top: 15px;
    color: inherit; }

/* Latest Free Bets Table */
.widget-top-table {
  padding-bottom: 40px; }
  .widget-top-table .top-table-img-wrapper {
    height: 75px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center; }
    .widget-top-table .top-table-img-wrapper img {
      height: auto; }
  .widget-top-table .top-table .top-table-row {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 20px;
    background: #f0f0f0;
    margin-bottom: 1px; }
    .widget-top-table .top-table .top-table-row:nth-child(even) {
      background: white; }
  .widget-top-table .top-table .top-table-row-left {
    width: calc(100% - 150px);
    float: left;
    padding-right: 35px; }
    .widget-top-table .top-table .top-table-row-left .img-thumb {
      width: 100px;
      float: left; }
    .widget-top-table .top-table .top-table-row-left .text-title-thumb {
      width: calc(100% - 100px);
      float: left;
      padding-left: 15px;
      padding-top: 5px; }
      .widget-top-table .top-table .top-table-row-left .text-title-thumb h3 {
        color: #2d2d2c;
        font-size: 23px;
        font-size: 1.6428571429rem;
        line-height: 1.3em;
        margin-bottom: 5px; }
        .widget-top-table .top-table .top-table-row-left .text-title-thumb h3 a {
          color: inherit; }
      .widget-top-table .top-table .top-table-row-left .text-title-thumb h4 {
        font-size: 20px;
        font-size: 1.4285714286rem;
        line-height: 1.35em; }
    .widget-top-table .top-table .top-table-row-left .top-table-small-text {
      margin-top: 15px;
      clear: both;
      overflow: hidden; }
      .widget-top-table .top-table .top-table-row-left .top-table-small-text p {
        font-size: 14px;
        font-size: 1rem;
        margin-bottom: 0; }
  .widget-top-table .top-table .top-table-row-right {
    width: 150px;
    float: left;
    padding-top: 10px; }
    .widget-top-table .top-table .top-table-row-right .btn {
      min-width: 100%;
      padding: .575rem .75rem; }
      .widget-top-table .top-table .top-table-row-right .btn:hover {
        color: white; }
    .widget-top-table .top-table .top-table-row-right .tc-apply {
      font-size: 13px;
      font-size: 0.9285714286rem;
      display: table;
      margin: 10px auto; }
      .widget-top-table .top-table .top-table-row-right .tc-apply:hover {
        color: #e23e36; }

.pokachild-popup-wrapper {
  background-color: rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  padding: 20px;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  z-index: 1000000;
  position: fixed;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  -webkit-transition: opacity 300ms;
  -moz-transition: opacity 300ms;
  -ms-transition: opacity 300ms;
  -o-transition: opacity 300ms;
  transition: opacity 300ms; }
  .pokachild-popup-wrapper.visible {
    opacity: 1;
    pointer-events: auto; }
    .pokachild-popup-wrapper.visible .pokachild-popup {
      -webkit-transform: translateY(0);
      -moz-transform: translateY(0);
      -ms-transform: translateY(0);
      -o-transform: translateY(0);
      transform: translateY(0); }
  .pokachild-popup-wrapper .pokachild-popup {
    background-color: white;
    border-radius: 5px;
    max-width: 700px;
    overflow: hidden;
    height: 400px;
    -webkit-transform: translateY(-50px);
    -moz-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    -o-transform: translateY(-50px);
    transform: translateY(-50px);
    -webkit-transition: transform 300ms;
    -moz-transition: transform 300ms;
    -ms-transition: transform 300ms;
    -o-transition: transform 300ms;
    transition: transform 300ms; }
    .pokachild-popup-wrapper .pokachild-popup .pokachild-popup-head {
      background-color: #e23e36;
      color: white;
      padding: 10px 10px;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: space-between;
      -moz-justify-content: space-between;
      -ms-justify-content: space-between;
      justify-content: space-between;
      -ms-flex-pack: space-between;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      align-items: center; }
      .pokachild-popup-wrapper .pokachild-popup .pokachild-popup-head .popup-btn-wrapper {
        margin-left: auto; }
      .pokachild-popup-wrapper .pokachild-popup .pokachild-popup-head .popup-title-wrapper h5 {
        font-size: 18px;
        margin-bottom: 0; }
    .pokachild-popup-wrapper .pokachild-popup .pokachild-popup-content {
      height: 100%;
      padding: 40px;
      overflow: auto; }
      .pokachild-popup-wrapper .pokachild-popup .pokachild-popup-content p {
        font-size: 16px;
        line-height: 1.5; }

@media only screen and (max-width: 767px) {
  /* Widget Top Table */
  .widget-top-table {
    padding: 25px 0; }
    .widget-top-table .top-table {
      overflow-x: auto; }
      .widget-top-table .top-table .top-table-row {
        text-align: center;
        margin-bottom: 15px; }
      .widget-top-table .top-table .top-table-row-left {
        padding-right: 0;
        width: 100%;
        float: none; }
        .widget-top-table .top-table .top-table-row-left .text-title-thumb {
          width: 100%;
          float: none;
          padding-top: 15px;
          padding-left: 0; }
      .widget-top-table .top-table .top-table-row-right, .widget-top-table .top-table .top-table-row-left .img-thumb {
        width: 100%;
        float: none; } }
h1, h2, h3 {
  margin-bottom: 20px; }

.row {
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start; }

.color--white {
  color: white; }

.color--gray {
  color: #7c7c7c; }

a {
  color: #2d2d2c; }
  a:hover {
    color: #e23e36; }

.btn--black {
  background-color: #181818; }

.theme-btn {
  background-color: transparent;
  border: none;
  cursor: pointer; }
  .theme-btn:focus {
    outline: none; }

.btn--lightgrey {
  background-color: #dce0db; }

.btn--small {
  font-size: 11px;
  font-size: 0.7857142857rem; }

.theme-link--normal {
  font-size: 16px;
  font-size: 1.1428571429rem;
  color: #e23e36; }
  .theme-link--normal svg {
    width: 16px;
    fill: #e23e36;
    position: relative;
    top: 3px; }

.theme-link--inline {
  display: inline-block;
  margin-right: 5px; }

.theme-link--title:hover {
  color: #e23e36; }

@media screen and (max-width: 767px) {
  #page-wrapper {
    overflow-x: hidden; } }

#sidebar-wrapper {
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch; }

div.main-col, div.single-post {
  background-color: white;
  overflow: hidden;
  border-bottom: 5px solid #e86963;
  border-radius: 5px;
  padding-top: 20px;
  padding: 20px 20px 40px; }

.review-up-area .review-bonus:before {
  left: 0; }

.childtheme-share-buttons {
  margin: 20px 0 40px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex; }
  .childtheme-share-buttons .childtheme-share-btn {
    color: #e23e36;
    border: 1px solid #e23e36;
    border-radius: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    height: 30px;
    margin: 5px 5px 5px 0;
    width: 30px; }
    .childtheme-share-buttons .childtheme-share-btn svg {
      width: 14px;
      fill: #e23e36; }
    .childtheme-share-buttons .childtheme-share-btn:hover {
      border-color: #2d2d2c; }

.entry-content form, .text-area form, .sidebar form, footer form {
  max-width: 600px; }
  .entry-content form input:not([type="submit"]):not(.search-form-ajax-input), .entry-content form select, .text-area form input:not([type="submit"]):not(.search-form-ajax-input), .text-area form select, .sidebar form input:not([type="submit"]):not(.search-form-ajax-input), .sidebar form select, footer form input:not([type="submit"]):not(.search-form-ajax-input), footer form select {
    height: 35px; }
  .entry-content form input[type=checkbox], .entry-content form input[type=radio], .text-area form input[type=checkbox], .text-area form input[type=radio], .sidebar form input[type=checkbox], .sidebar form input[type=radio], footer form input[type=checkbox], footer form input[type=radio] {
    height: auto !important; }
  .entry-content form textarea, .entry-content form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]), .entry-content form select, .text-area form textarea, .text-area form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]), .text-area form select, .sidebar form textarea, .sidebar form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]), .sidebar form select, footer form textarea, footer form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]), footer form select {
    border-radius: 5px;
    border: 1px solid #2d2d2c;
    margin: 5px auto;
    padding: 0 10px;
    width: 100%; }
  .entry-content form textarea:focus, .entry-content form input:focus, .entry-content form select:focus, .entry-content form textarea:focus, .text-area form textarea:focus, .text-area form input:focus, .text-area form select:focus, .text-area form textarea:focus, .sidebar form textarea:focus, .sidebar form input:focus, .sidebar form select:focus, .sidebar form textarea:focus, footer form textarea:focus, footer form input:focus, footer form select:focus, footer form textarea:focus {
    border-color: #e23e36;
    outline: none; }
  .entry-content form input[type="submit"], .text-area form input[type="submit"], .sidebar form input[type="submit"], footer form input[type="submit"] {
    background-color: #2e53cd;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    color: white;
    display: inline-block;
    font-weight: bold;
    padding: 10px 20px; }
  .entry-content form label, .text-area form label, .sidebar form label, footer form label {
    display: block;
    font-size: 14px;
    font-size: 1rem; }

.subscribe {
  padding: 0 20px; }
  .subscribe input[type=submit] {
    display: block;
    width: 100%; }
  .subscribe.subscribe--inline {
    position: relative;
    padding: 10px 0; }
    .subscribe.subscribe--inline form {
      position: relative; }
      .subscribe.subscribe--inline form input[type=email] {
        height: 50px;
        padding-left: 20px;
        color: #565656;
        font-size: 14px;
        font-size: 1rem;
        border-radius: 5px;
        float: left;
        width: calc(100% - 170px); }
        @media only screen and (max-width: 767px) {
          .subscribe.subscribe--inline form input[type=email] {
            width: 100%;
            display: block;
            margin-bottom: 10px; } }
      .subscribe.subscribe--inline form input[type=submit] {
        position: absolute;
        top: 5px;
        border: none;
        height: 50px;
        font-size: 14px;
        font-size: 1rem;
        font-weight: 700;
        text-transform: uppercase;
        border-radius: 5px;
        float: right;
        min-width: 1px;
        right: 0;
        bottom: 0;
        width: 170px;
        color: white;
        background-color: #2e53cd; }
        @media only screen and (max-width: 767px) {
          .subscribe.subscribe--inline form input[type=submit] {
            width: 100%;
            display: block;
            position: relative; } }

.theme-top-bar {
  padding: 5px 0;
  background-color: #2d2d2c; }

.head-menu.head-menu--s1 {
  background-color: #e23e36; }
  .head-menu.head-menu--s1 .menu > li ul {
    background-color: white; }
    .head-menu.head-menu--s1 .menu > li ul li a {
      color: #e23e36; }

header #logo {
  margin-right: 20px; }
  @media only screen and (max-width: 991px) {
    header #logo {
      margin-right: auto;
      margin-left: 0; } }
  @media only screen and (max-width: 767px) {
    header #logo {
      width: 120px; } }

.theme-main-menu-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  padding: 10px 0; }

.body-header-style1.home .section--first .text-area {
  margin-top: 0; }

.theme-header-search {
  margin-left: auto; }
  @media only screen and (max-width: 991px) {
    .theme-header-search {
      margin-right: 0;
      margin-left: 10px; } }
  .theme-header-search .search-btn {
    width: 22px;
    display: block;
    height: 100%;
    color: white; }
    .theme-header-search .search-btn svg {
      width: 16px;
      fill: white;
      top: 3px;
      position: relative; }

.search-form {
  position: absolute;
  line-height: 40px;
  border: none;
  z-index: 10000;
  right: 0;
  top: 19px;
  visibility: hidden;
  opacity: 0;
  width: 0;
  -webkit-transition: all 300ms;
  -moz-transition: all 300ms;
  -ms-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms; }
  .search-form input[type=search] {
    width: 100%;
    border: none;
    text-indent: 20px;
    font-size: 14px;
    font-size: 1rem;
    padding-right: 40px;
    outline: none; }
  .search-form button {
    display: block;
    border: none;
    position: absolute;
    z-index: 20;
    top: 0;
    right: 10px;
    width: 22px;
    height: 40px;
    cursor: pointer; }
    .search-form button svg {
      width: 16px;
      position: relative;
      top: 3px; }
  .search-form.search-form--open {
    width: 340px;
    visibility: visible;
    opacity: 1; }

@media only screen and (max-width: 991px) {
  .trigger-mmenu {
    margin-left: 10px;
    margin-right: 0;
    -webkit-box-ordinal-group: 4;
    -moz-box-ordinal-group: 4;
    -ms-flex-order: 4;
    -webkit-order: 4;
    order: 4; } }
@media only screen and (max-width: 575px) {
  .trigger-mmenu > span {
    display: none; }
  .trigger-mmenu .icon {
    margin-right: 0; } }

.bet-tips-info-box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .bet-tips-info-box img {
    max-width: 100px; }

.btn-bet-tips-wrapper {
  margin-left: auto; }
  .btn-bet-tips-wrapper .terms-wrapper {
    margin-top: 0;
    margin-bottom: 15px; }
  @media only screen and (max-width: 767px) {
    .btn-bet-tips-wrapper {
      margin-left: 0; } }

.btn-bet-tips {
  margin: 0 0 10px;
  margin-left: auto; }
  @media only screen and (max-width: 767px) {
    .btn-bet-tips {
      min-width: 100%;
      margin: 10px 0; } }

/* The sidebar styles */
.sidebar {
  border-radius: 5px;
  padding: 0 20px 30px;
  overflow: hidden; }
  .sidebar .widget h3 {
    background-color: #e23e36;
    padding: 10px;
    color: white;
    margin: 0 -20px 10px; }

.single-post-wrapper .post-info {
  background-color: transparent;
  padding: 10px 0 5px; }
  .single-post-wrapper .post-info a {
    color: #e23e36;
    margin-right: 10px; }

/* ==========================================================================
           Footer Template
    ========================================================================== */
.footer {
  background-color: #eae8e3; }
  .footer .footer-widget-wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between; }
  .footer .widget {
    min-width: 25%;
    padding: 20px 0; }
  .footer .footer-group--one {
    padding: 30px 0; }
    .footer .footer-group--one h5 {
      font-size: 22px;
      font-size: 1.5714285714rem;
      font-weight: 700;
      padding-bottom: 10px; }
    .footer .footer-group--one .follow-list a {
      width: 35px;
      height: 35px;
      background: white;
      display: inline-block;
      line-height: 35px;
      font-size: 18px;
      font-size: 1.2857142857rem;
      font-weight: 700; }
  .footer .footer-group--two {
    padding: 40px 0;
    padding-bottom: 20px;
    font-size: 14px;
    font-size: 1rem; }
    .footer .footer-group--two .footer-widget-disclaimer {
      max-width: 1000px;
      margin: 0 auto; }
      .footer .footer-group--two .footer-widget-disclaimer p {
        font-size: 12px;
        color: #aba4a4;
        line-height: 1.4em;
        max-width: 1140px;
        padding-bottom: 20px; }
    .footer .footer-group--two a {
      color: #aba4a4; }
      .footer .footer-group--two a:hover {
        color: #2d2d2c; }
  .footer .footer-group--three {
    color: white;
    padding-top: 40px;
    overflow: hidden;
    background-color: #e23e36; }
    .footer .footer-group--three a {
      color: white; }
  .footer .footer-widget {
    margin-bottom: 40px; }
  .footer li.menu-item {
    padding-bottom: 3px;
    list-style-type: none; }
    .footer li.menu-item a:after {
      display: none; }

.footer-top .widget-columns {
  color: #2d2d2c; }
  .footer-top .widget-columns a {
    color: #2d2d2c; }
  .footer-top .widget-columns .menu li a {
    color: #2d2d2c; }

.footer-bottom {
  padding: 50px 0;
  background-color: white; }
  .footer-bottom .widget-columns {
    margin: 0;
    color: #2d2d2c; }
    .footer-bottom .widget-columns p {
      color: #7c7c7c; }

.footer-menu-inline {
  display: table;
  margin: 0 auto; }
  .footer-menu-inline li {
    display: inline-block;
    margin: 0 5px; }

.footer-logos li {
  margin: 0 15px; }

.footer-widget--copyrights {
  padding-top: 20px; }

.footer-widget--copyrights p {
  font-size: 10px;
  font-size: 0.7142857143rem; }

.review-up-area .review-up-area__top {
  background: inherit;
  border-bottom: none;
  padding: 10px 30px 30px; }
.review-up-area h5 {
  text-align: left;
  font-size: 14px;
  font-size: 1rem;
  color: #6c706f; }
.review-up-area .review-logo-group {
  text-align: center; }
  .review-up-area .review-logo-group .btn {
    line-height: 36px;
    font-size: 16px;
    font-size: 1.1428571429rem; }
    .review-up-area .review-logo-group .btn .poka-icon svg {
      top: 3px; }
.review-up-area .ratings-wrapper .rating i {
  background-color: transparent;
  color: #e23e36;
  width: 23px; }
.review-up-area .review-bonus {
  text-align: left;
  left: 0;
  padding: 0 20px; }
  .review-up-area .review-bonus:before {
    display: none; }
  .review-up-area .review-bonus h4 {
    font-size: 14px;
    font-size: 1rem;
    color: #6c706f; }
    .review-up-area .review-bonus h4 strong {
      color: #e23e36; }

.review-up-area--dif .review-overview {
  background: transparent; }
  @media only screen and (max-width: 767px) {
    .review-up-area--dif .review-overview h5 {
      text-align: center; } }

.carousel-screenshot img {
  border-radius: 5px; }

.ups-downs .icon {
  display: none; }
.ups-downs ul {
  padding-left: 0; }
  .ups-downs ul li {
    position: relative;
    padding-left: 22px;
    padding-right: 22px;
    border-bottom: 0; }
    .ups-downs ul li.pro:before {
      content: '\f058'; }
    .ups-downs ul li.con:before {
      content: '\f057'; }
    .ups-downs ul li:before {
      font-family: 'Font Awesome 5 Free';
      position: absolute;
      display: block;
      width: 15px;
      height: 12px;
      top: 5px;
      left: 0; }

.group-category .news-item .new-text-group {
  padding: 10px 0;
  background: transparent; }
  .group-category .news-item .new-text-group h2, .group-category .news-item .new-text-group h4 {
    font-size: 16px;
    font-size: 1.1428571429rem; }

.aff-single-widget {
  background: white;
  -webkit-box-shadow: 6px 14px 46px -19px #e6e6e6;
  -moz-box-shadow: 6px 14px 46px -19px #e6e6e6;
  box-shadow: 6px 14px 46px -19px #e6e6e6; }
  .aff-single-widget .ratings-wrapper {
    background: white; }

.terms-wrapper .tooltip-el {
  font-weight: bold; }

.review-up-area--dif .review-bonus:after {
  display: none; }

@media all and (-ms-high-contrast: none) {
  header .search-form input[type=search] {
    height: 40px; }

  .table-s1 .item:hover .c2 a {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none; } }

/*# sourceMappingURL=styles-child.css.map */
