3/*##

	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 github/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

*/

/* ========================================================== */

/* 			            01. Variables                          */

/* ========================================================== */

/* ========================================================== */

/* 			            02. Colors                          */

/* ========================================================== */

/* ========================================================== */

/* 			         03. Breakpoints                          */

/* ========================================================== */

/* ========================================================== */

/* 			                GENERALS                          */

/* ========================================================== */
@import url('https://fonts.googleapis.com/css?family=Nunito:400,600,700');
html {

  font-size: 14px; }



body {

  color: #2d2d2c;

  font-family: 'Nunito', sans-serif;

  background-color: /*#f8f8f8*/#fff; }



ul {

  margin: 0;

  padding: 0;

  list-style-position: inside; }



ol {

  margin: 0;

  padding: 0;

  list-style-position: inside; }



img {

  max-width: 100%;

  height: auto; }



h1, h2, h3, h4, h5, h6 {

  font-weight: 500;

  font-family: 'Nunito', sans-serif; }



h1 {

  font-size: 36px;

  font-size: 2.5714285714rem; }

  @media (max-width: 575px) {

    h1 {

      font-size: 28px;

      font-size: 2rem; } }



h2 {

  font-size: 30px;

  font-size: 2.1428571429rem; }

  @media (max-width: 575px) {

    h2 {

      font-size: 26px;

      font-size: 1.8571428571rem; } }



h3 {

  font-size: 26px;

  font-size: 1.8571428571rem; }

  @media (max-width: 575px) {

    h3 {

      font-size: 22px;

      font-size: 1.4914285714rem; } }



p {

  margin: 0;

  line-height: 1.6em; }



a {

  color: #181818;

  -webkit-transition: all 400ms ease;

  -moz-transition: all 400ms ease;

  -ms-transition: all 400ms ease;

  -o-transition: all 400ms ease;

  transition: all 400ms ease; }

  a:focus, a:hover {

    color: #181818;

    text-decoration: none; }



.row-xl {

  margin-left: -25px;

  margin-right: -25px; }



.row-xl > div {

  padding-left: 25px;

  padding-right: 25px; }



.row-lg {

  margin-left: -15px;

  margin-right: -15px; }



.row-lg > div {

  padding-left: 15px;

  padding-right: 15px; }



.row-md {

  margin-left: -15px;

  margin-right: -15px; }



.row-md > div {

  padding-left: 15px;

  padding-right: 15px; }



.row-sm {

  margin-left: -4px;

  margin-right: -4px; }



.row-sm > div {

  padding-left: 4px;

  padding-right: 4px; }



.row--0 {

  margin: 0; }

  .row--0 > div {

    padding: 0; }



.table {

  display: table;

  width: 100%;

  height: 100%;

  margin-bottom: 0; }



.table-cell {

  display: table-cell;

  vertical-align: middle;

  width: 100%; }



.center-area {

  text-align: center; }



.btn {

  font-weight: bold;

  padding: .7rem 1rem;

  font-size: 18px;

  font-size: 1.2857142857rem;

  -webkit-transition: all 400ms ease;

  -moz-transition: all 400ms ease;

  -ms-transition: all 400ms ease;

  -o-transition: all 400ms ease;

  transition: all 400ms ease;

  -webkit-border-radius: 5px;

  -moz-border-radius: 5px;

  -ms-border-radius: 5px;

  -o-border-radius: 5px;

  border-radius: 5px;

  position: relative;

  overflow: hidden; }

  .btn:after {

    background: #fff;

    content: "";

    height: 155px;

    left: -75px;

    opacity: .15;

    position: absolute;

    top: -50px;

    transform: rotate(35deg);

    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);

    width: 50px;

    z-index: -10; }

  .btn:hover:after {

    left: 120%;

    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1); }

  .btn--green {

    background: #559f3d;

    box-shadow: 0px 3px 2px rgba(0, 0, 0, 0.1);

    color: #fff; }

    .btn--green:hover {

      color: #fff;

      opacity: .7; }

  .btn--green-border {

    color: #559f3d;

    border: 1px solid #559f3d; }

    .btn--green-border:hover {

      color: #fff;

      background: #559f3d; }

  .btn--blue {

    background: #2d739b;

    color: #fff; }

    .btn--blue:hover {

      color: #fff;

      opacity: .7; }

  .btn--blue-border {

    color: #2d739b;

    border: 1px solid #2d739b; }

    .btn--blue-border:hover {

      color: #fff;

      background: #2d739b; }

  .btn--red {

    background: #d02d21;

    color: #fff; }

    .btn--red:hover {

      color: #fff;

      opacity: .7; }

  .btn--red-border {

    color: #d02d21;

    border: 1px solid #d02d21; }

    .btn--red-border:hover {

      color: #fff;

      background: #d02d21; }

  .btn--black {

    background: #181818;

    color: #fff; }

    .btn--black:hover {

      color: #fff;

      opacity: .7; }

  .btn--black-border {

    color: #181818;

    border: 1px solid #181818; }

    .btn--black-border:hover {

      color: #fff;

      background: #181818; }

  .btn--full {

    display: block;

    width: 100%; }

  .btn--read-more {

    padding: .8rem 1.8rem;

    font-size: 16px;

    font-size: 1.1428571429rem; }

    .btn--read-more i {

      margin-left: 20px;

      position: relative;

      top: 1px; }

  .btn:focus {

    color: #fff;

    -webkit-box-shadow: 0 0 0 0;

    -moz-box-shadow: 0 0 0 0;

    -ms-box-shadow: 0 0 0 0;

    -o-box-shadow: 0 0 0 0;

    box-shadow: 0 0 0 0; }



/* ========================================================== */

/* 			                RATINGS                           */

/* ========================================================== */

.rating i {

  display: inline-block;

  margin: 0 1px;

  background: #1eae50;

  color: #fff;

  width: 28px;

  line-height: 28px;

  text-align: center;

  -webkit-border-radius: 100%;

  -moz-border-radius: 100%;

  -ms-border-radius: 100%;

  -o-border-radius: 100%;

  border-radius: 100%;

  font-size: 16px;

  font-size: 1.1428571429rem;

  vertical-align: middle; }



.ratings-wrapper .rating-counter {

  text-align: center;

  position: relative;

  top: -5px;

  font-size: 13px;

  font-size: 0.9285714286rem;

  letter-spacing: .2px;

  opacity: .8; }

  .ratings-wrapper .rating-counter span {

    font-weight: 700; }

.ratings-wrapper .rating-msg {

  text-align: center;

  margin-bottom: 10px; }

  .ratings-wrapper .rating-msg.success {

    color: #559f3d; }

  .ratings-wrapper .rating-msg.error {

    color: #d02d21; }

.ratings-wrapper .rating i {

  display: inline-block;

  margin: 0 1px;

  background: #1eae50;

  color: #fff;

  width: 28px;

  line-height: 28px;

  text-align: center;

  -webkit-border-radius: 100%;

  -moz-border-radius: 100%;

  -ms-border-radius: 100%;

  -o-border-radius: 100%;

  border-radius: 100%;

  font-size: 16px;

  font-size: 1.1428571429rem;

  vertical-align: middle;

  -webkit-transition: all 100ms linear;

  -moz-transition: all 100ms linear;

  -ms-transition: all 100ms linear;

  -o-transition: all 100ms linear;

  transition: all 100ms linear; }

.ratings-wrapper .rating.rating-user i {

  cursor: pointer; }

  .ratings-wrapper .rating.rating-user i:hover {

    -webkit-transform: scale(1.06);

    -moz-transform: scale(1.06);

    -ms-transform: scale(1.06);

    -o-transform: scale(1.06);

    transform: scale(1.06); }



/* ========================================================== */

/* 			          FORM ELEMENTS                           */

/* ========================================================== */

.form-wrapper input[type="text"], .form-wrapper input[type="email"] {

  border: 0 none;

  padding: 0 10px;

  font-size: 14px;

  font-size: 1rem;

  height: 36px;

  margin-bottom: 10px;

  font-family: 'Nunito', sans-serif;

  width: 100%; }

.form-wrapper input[type="submit"] {

  height: 36px;

  font-size: 14px;

  font-size: 1rem;

  font-weight: bold;

  font-family: 'Nunito', sans-serif; }



/* ========================================================== */

/* 			                  SOCIAL                         */

/* ========================================================== */

.social-list li {

  display: inline-block;

  margin-right: 6px; }

  .social-list li a {

    color: #2d739b;

    -webkit-border-radius: 100%;

    -moz-border-radius: 100%;

    -ms-border-radius: 100%;

    -o-border-radius: 100%;

    border-radius: 100%;

    background: #fff;

    width: 36px;

    line-height: 36px;

    text-align: center;

    display: inline-block;

    font-size: 20px;

    font-size: 1.4285714286rem;

    -webkit-transition: all 300ms ease;

    -moz-transition: all 300ms ease;

    -ms-transition: all 300ms ease;

    -o-transition: all 300ms ease;

    transition: all 300ms ease; }

    .social-list li a:hover {

      opacity: .5; }



/* ========================================================== */

/* 			                  Header                         */

/* ========================================================== */

header {

 /*  background: url("../images/bg-header.jpg") center top no-repeat; */
  background: url("../images/bonus_back.jpg") center top no-repeat;

  background-size: cover; }

  header #logo {

    display: inline-block;

    width: 400px; }

    @media (max-width: 575px) {

      header #logo {

        width: 183px;

        margin: 0 auto;

        display: block; } }



.home .head-main {

/*  padding: 160px 0 180px; */}

  .home .head-main .text-intro {

    display: block; }



.body-header-style2 header {

  background-image: url("../images/bg-header-2.jpg");

  background-size: auto; }



.body-header-style3 header {

  background-image: url("../images/bg-header-3.jpg");

  background-size: auto; }



.body-header-style4 .head-main {

  padding: 40px 0; }

  @media (max-width: 575px) {

    .body-header-style4 .head-main {

      padding: 20px 0; } }



.body-header-style4.home header {

  background-image: none !important; }



.home .fullscreen-bg {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  z-index: -1;

  background: url("../images/bg-fullscreen.jpg") center top no-repeat;

  background-size: cover;

  background-attachment: fixed; }

  @media (max-width: 1199px) {

    .home .fullscreen-bg {

      background-attachment: inherit;

      position: fixed; } }



.head-top, .head-inline {

  padding: 5px 0;

  background: rgba(49, 47, 47, 0.2); }

  @media (max-width: 575px) {

    .head-top .top-bar-socials, .head-inline .top-bar-socials {

      text-align: center; } }

  .head-top .top-bar-socials li, .head-inline .top-bar-socials li {

    margin: 0 1px;

    display: inline-block; }

  .head-top .top-bar-socials a, .head-inline .top-bar-socials a {

    color: #ffffff;

    font-size: 15px;

    font-size: 1.0714285714rem;

    width: 30px;

    height: 30px;

    line-height: 30px;

    -webkit-border-radius: 100%;

    -moz-border-radius: 100%;

    -ms-border-radius: 100%;

    -o-border-radius: 100%;

    border-radius: 100%;

    background: #fff;

    text-align: center;

    display: block;

    transition: all 400ms ease; }

    .head-top .top-bar-socials a i, .head-inline .top-bar-socials a i {

      color: #2d2d2c; }

    .head-top .top-bar-socials a:hover, .head-inline .top-bar-socials a:hover {

      opacity: .5; }

  .head-top .top-bar-search, .head-inline .top-bar-search {

    float: right;

    -webkit-border-radius: 20px;

    -moz-border-radius: 20px;

    -ms-border-radius: 20px;

    -o-border-radius: 20px;

    border-radius: 20px;

    background: #fff;

    position: relative; }

    @media (max-width: 767px) {

      .head-top .top-bar-search, .head-inline .top-bar-search {

        float: none;

        max-width: 250px;

        margin: 10px auto 0; } }

    @media (max-width: 767px) {

      .head-top .top-bar-search .form-group, .head-inline .top-bar-search .form-group {

        margin: 0; } }

    .head-top .top-bar-search .form-control, .head-inline .top-bar-search .form-control {

      background: transparent;

      border: none;

      color: #2d2d2c;

      font-size: 14px;

      font-size: 1rem;

      padding: 0 15px;

      font-family: 'Nunito', sans-serif;

      font-weight: 500;

      text-transform: uppercase;

      width: 100%;

      padding-right: 30px;

      height: 30px;

      line-height: normal; }

      .head-top .top-bar-search .form-control::-webkit-input-placeholder, .head-inline .top-bar-search .form-control::-webkit-input-placeholder {

        /* Chrome/Opera/Safari */

        color: #2d2d2c; }

      .head-top .top-bar-search .form-control::-moz-placeholder, .head-inline .top-bar-search .form-control::-moz-placeholder {

        /* Firefox 19+ */

        color: #2d2d2c; }

      .head-top .top-bar-search .form-control:-ms-input-placeholder, .head-inline .top-bar-search .form-control:-ms-input-placeholder {

        /* IE 10+ */

        color: #2d2d2c; }

      .head-top .top-bar-search .form-control:-moz-placeholder, .head-inline .top-bar-search .form-control:-moz-placeholder {

        /* Firefox 18- */

        color: #2d2d2c; }

    .head-top .top-bar-search .btn, .head-inline .top-bar-search .btn {

      background: transparent;

      border: none;

      color: #2d2d2c;

      font-size: 19px;

      font-size: 1.3571428571rem;

      padding: 2px 12px 2px;

      position: absolute;

      top: 0;

      right: 0;

      height: 30px;

      cursor: pointer;

      z-index: 2; }



.head-inline {

  background: none;

  padding: 30px 0; }

  @media (max-width: 575px) {

    .head-inline {

      text-align: center; } }

  .head-inline .top-bar-socials {

    display: block;

    margin: 20px 0 10px;

    text-align: right; }

    @media (max-width: 575px) {

      .head-inline .top-bar-socials {

        text-align: center; } }



.head-logo {

  text-align: center;

  padding: 30px 0; }



.head-main {

  text-align: center;

  padding: 40px 0; }

  @media (max-width: 575px) {

    .head-main {

      padding: 20px 0; } }

  .head-main .text-intro {

    max-width: 820px;

    margin: 40px auto 0;

    color: #fff;

    display: none; }

    .head-main .text-intro h1 {

      font-size: 35px;

      font-size: 2.5rem;

      text-transform: uppercase;

      position: relative;

      font-weight: bold;

      padding-bottom: 50px;

      margin-bottom: 0; }

      @media (max-width: 575px) {

        .head-main .text-intro h1 {

          font-size: 24px;

          font-size: 1.7142857143rem; } }

      .head-main .text-intro h1:after {

        display: block;

        height: 1px;

        background: rgba(255, 255, 255, 0.2);

        max-width: 230px;

        width: 100%;

        position: absolute;

        bottom: 24px;

        left: 50%;

        margin-left: -115px;

        content: ""; }

    .head-main .text-intro p {

      font-size: 18px;

      font-size: 1.2857142857rem;

      margin-bottom: 20px; }

      @media (max-width: 575px) {

        .head-main .text-intro p {

          font-size: 14px;

          font-size: 1rem; } }



/* ========================================================== */

/* 			                 FOOTER                           */

/* ========================================================== */

.footer {

  background: #181818;

  padding-top: 40px;

  overflow-x: hidden; }

  .footer .footer-copyright {

    background: rgba(0, 0, 0, 0.3);

    padding: 22px 0;

    min-height: 50px; }

    .footer .footer-copyright p {

      font-size: 12px;

      font-size: 0.8571428571rem;

      color: #fff; }

  .footer .btn-backToTop {

    position: absolute;

    margin-top: -18px;

    top: 50%;

    right: 15px;

    background: rgba(255, 255, 255, 0.2);

    -webkit-border-radius: 5px;

    -moz-border-radius: 5px;

    -ms-border-radius: 5px;

    -o-border-radius: 5px;

    border-radius: 5px;

    font-size: 24px;

    font-size: 20px;

    font-size: 1.4285714286rem;

    color: #fff;

    width: 40px;

    height: 36px;

    line-height: 32px;

    display: block;

    text-align: center;

    padding: 0; }

  .footer .form-wrapper input[type="text"] {

    max-width: 300px; }

  .footer .widget-columns {

    color: #fff;

    margin: 0 -20px 30px; }

    .footer .widget-columns h3 {

      font-size: 24px;

      font-size: 1.7142857143rem;

      margin-bottom: 10px; }

    .footer .widget-columns p {

      font-size: 12px;

      font-size: 0.8571428571rem;

      margin-bottom: 10px; }

    .footer .widget-columns a {

      color: #fff; }

    .footer .widget-columns .social-list li a {

      color: #2d739b; }

    .footer .widget-columns .menu li a {

      color: #fff; }

      .footer .widget-columns .menu li a:hover {

        opacity: .5; }

    .footer .widget-columns.widget-count-1 > div {

      padding: 0 20px; }

    .footer .widget-columns.widget-count-2 > div {

      float: left;

      padding: 0 20px;

      width: 50%; }

      @media (max-width: 767px) {

        .footer .widget-columns.widget-count-2 > div {

          width: 100%; } }

    .footer .widget-columns.widget-count-3 > div {

      float: left;

      padding: 0 20px;

      width: 33.33333333%; }

      @media (max-width: 767px) {

        .footer .widget-columns.widget-count-3 > div {

          width: 100%; } }

    .footer .widget-columns.widget-count-4 > div {

      float: left;

      padding: 0 20px;

      width: 25%; }

      @media (max-width: 767px) {

        .footer .widget-columns.widget-count-4 > div {

          width: 100%; } }

    .footer .widget-columns.widget-columns > div {

      margin-bottom: 30px; }



.body-sidebar-left #sidebar-wrapper {

  order: 0; }

  @media (max-width: 767px) {

    .body-sidebar-left #sidebar-wrapper {

      order: 1; } }

.body-sidebar-left .main-col {

  order: 1; }

  @media (max-width: 767px) {

    .body-sidebar-left .main-col {

      order: 0; } }



.sidebar {

  background-color: #eeedeb;

  padding: 25px 25px;

  padding-bottom: 5px; }

  @media (max-width: 991px) {

    .sidebar {

      padding: 30px 25px;

      padding-bottom: 5px; } }

  @media (max-width: 767px) {

    .sidebar {

      margin-top: 40px; } }

  @media (max-width: 575px) {

    .sidebar {

      margin: 40px -15px 0; } }

  .sidebar .widget {

    margin-bottom: 35px; }

    .sidebar .widget h3 {

      font-size: 20px;

      font-size: 1.4285714286rem;

      font-weight: 700;

      border-bottom: 1px solid #a8a8a6;

      padding-bottom: 10px; }

      .sidebar .widget h3 .fa {

        display: none; }

  .sidebar .widget_recent_entries ul, .sidebar .widget_archive ul, .sidebar .widget_categories ul {

    padding-left: 15px; }

    .sidebar .widget_recent_entries ul li, .sidebar .widget_archive ul li, .sidebar .widget_categories ul li {

      list-style-position: outside;

      margin-bottom: 10px; }

      .sidebar .widget_recent_entries ul li a:hover, .sidebar .widget_archive ul li a:hover, .sidebar .widget_categories ul li a:hover {

        text-decoration: underline; }

  .sidebar .widget-list li {

    background-color: #eeedeb;

    list-style: none; }

  .sidebar .widget-list li:nth-child(2n) {

    background-color: #eeedeb; }

  .sidebar .widget-s1 li {

    padding: 20px 0;

    border-bottom: 2px solid #e3e1e1; }

    .sidebar .widget-s1 li:hover .widget-sites-group .img {

      -webkit-transform: scale(1.08);

      -moz-transform: scale(1.08);

      -ms-transform: scale(1.08);

      -o-transform: scale(1.08);

      transform: scale(1.08); }

  .sidebar .widget-s1 .number-box {

    width: 38px;

    height: 38px;

    line-height: 38px;

    background-color: #fff;

    color: #1eae50;

    text-align: center;

    -webkit-border-radius: 100%;

    -moz-border-radius: 100%;

    -ms-border-radius: 100%;

    -o-border-radius: 100%;

    border-radius: 100%;

    font-size: 14px;

    font-size: 1rem;

    font-weight: 700;

    border: 1px solid #dedddb;

    margin-top: 13px; }

    @media (max-width: 991px) {

      .sidebar .widget-s1 .number-box {

        margin: 0 auto;

        float: none; } }

  .sidebar .widget-s1 .widget-sites-group {

    width: calc(100% - 38px);

    padding-left: 15px; }

    @media (max-width: 1199px) {

      .sidebar .widget-s1 .widget-sites-group {

        text-align: center; } }

    @media (max-width: 991px) {

      .sidebar .widget-s1 .widget-sites-group {

        width: 100%;

        padding-left: 0; } }

    .sidebar .widget-s1 .widget-sites-group .img {

      -webkit-transition: all 400ms ease;

      -moz-transition: all 400ms ease;

      -ms-transition: all 400ms ease;

      -o-transition: all 400ms ease;

      transition: all 400ms ease; }

      @media (max-width: 991px) {

        .sidebar .widget-s1 .widget-sites-group .img {

          margin: 0 auto;

          max-width: 160px; } }

      .sidebar .widget-s1 .widget-sites-group .img > a {

        line-height: 60px; }

        .sidebar .widget-s1 .widget-sites-group .img > a img {

          vertical-align: middle; }

    .sidebar .widget-s1 .widget-sites-group .text-down {

      padding-top: 10px; }

      .sidebar .widget-s1 .widget-sites-group .text-down p {

        max-width: 120px;

        line-height: 1.3em;

        float: left;

        text-align: center;

        margin-bottom: 0; }

        .sidebar .widget-s1 .widget-sites-group .text-down p strong {

          color: #559f3d; }

        @media (max-width: 1199px) {

          .sidebar .widget-s1 .widget-sites-group .text-down p {

            float: none;

            max-width: 100%; } }

      .sidebar .widget-s1 .widget-sites-group .text-down .btn {

        float: right;

        width: 86px;

        line-height: 28px;

        font-weight: 700;

        text-align: center;

        margin: 0 auto;

        padding: 0;

        display: inline-block;

        font-size: 13px;

        font-size: 0.9285714286rem; }

        @media (max-width: 1199px) {

          .sidebar .widget-s1 .widget-sites-group .text-down .btn {

            float: none;

            margin: 0;

            margin-top: 10px; } }

  .sidebar .widget-s2 li {

    padding: 12px 0;

    padding-top: 14px;

    border-bottom: 1px solid #e3e1e1; }

    @media (max-width: 1199px) {

      .sidebar .widget-s2 li {

        text-align: center; } }

    .sidebar .widget-s2 li:hover .text a {

      -webkit-transform: scale(1.08);

      -moz-transform: scale(1.08);

      -ms-transform: scale(1.08);

      -o-transform: scale(1.08);

      transform: scale(1.08); }

  .sidebar .widget-s2 .text {

    float: left; }

    @media (max-width: 1199px) {

      .sidebar .widget-s2 .text {

        float: none; } }

    .sidebar .widget-s2 .text a {

      max-width: 80px;

      display: inline-block;

      vertical-align: middle;

      margin-right: 7px; }

      @media (max-width: 991px) {

        .sidebar .widget-s2 .text a {

          display: block;

          margin: 0 auto;

          margin-bottom: 10px;

          text-align: center;

          max-width: 160px; } }

      @media (max-width: 767px) {

        .sidebar .widget-s2 .text a {

          max-width: 200px; } }

      .sidebar .widget-s2 .text a img {

        vertical-align: middle;

        -webkit-transition: all 400ms ease;

        -moz-transition: all 400ms ease;

        -ms-transition: all 400ms ease;

        -o-transition: all 400ms ease;

        transition: all 400ms ease; }

    .sidebar .widget-s2 .text p {

      max-width: 100px;

      display: inline-block;

      line-height: 1.3em;

      vertical-align: middle;

      text-align: center;

      margin-bottom: 0;

      font-size: 12px;

      font-size: 0.8571428571rem; }

      .sidebar .widget-s2 .text p strong {

        color: #559f3d; }

      @media (max-width: 991px) {

        .sidebar .widget-s2 .text p {

          max-width: 100%; } }

      @media (max-width: 767px) {

        .sidebar .widget-s2 .text p {

          margin: 0 auto;

          display: block;

          max-width: 200px;

          font-size: 14px;

          font-size: 1rem; } }

  .sidebar .widget-s2 .btn {

    float: right;

    width: 72px;

    line-height: 26px;

    font-weight: 700;

    text-align: center;

    position: relative;

    top: -2px;

    display: inline-block;

    margin: 0 auto;

    padding: 0;

    font-size: 13px;

    font-size: 0.9285714286rem; }

    @media (max-width: 1199px) {

      .sidebar .widget-s2 .btn {

        float: none;

        margin: 0 auto;

        margin-top: 10px; } }

    @media (max-width: 767px) {

      .sidebar .widget-s2 .btn {

        width: 68px; } }

  .sidebar .view-all {

    margin: 15px auto;

    margin-bottom: 0;

    display: table;

    font-weight: 700;

    font-size: 12px;

    font-size: 0.8571428571rem;

    text-decoration: underline; }



.news-list-sidebar .news-sidebar-group {

  margin-top: 22px; }

  .news-list-sidebar .news-sidebar-group .item {

    margin-bottom: 15px; }

    .news-list-sidebar .news-sidebar-group .item img {

      float: left; }

      @media (max-width: 991px) {

        .news-list-sidebar .news-sidebar-group .item img {

          width: 35px; } }

    .news-list-sidebar .news-sidebar-group .item .text {

      width: calc(100% - 55px);

      float: left;

      padding-left: 20px; }

      @media (max-width: 991px) {

        .news-list-sidebar .news-sidebar-group .item .text {

          width: calc(100% - 35px); } }

      .news-list-sidebar .news-sidebar-group .item .text h4 {

        font-size: 14px;

        font-size: 1rem;

        font-weight: 400;

        margin-bottom: 7px;

        line-height: 1.3em; }

      .news-list-sidebar .news-sidebar-group .item .text .read-more {

        margin-bottom: 0;

        display: table;

        font-weight: 700;

        font-size: 12px;

        font-size: 0.8571428571rem;

        text-decoration: underline; }

        .news-list-sidebar .news-sidebar-group .item .text .read-more:hover {

          text-decoration: none; }

  .news-list-sidebar .news-sidebar-group .btn {

    font-weight: 700;

    text-align: center;

    display: inline-block;

    margin-top: 10px;

    font-size: 13px;

    font-size: 0.9285714286rem;

    padding: .5rem 1.1rem; }



/* ========================================================== */

/* 			            01. MENU                        */

/* ========================================================== */

.trigger-mmenu {

  overflow: hidden;

  display: block;

  color: #fff;

  padding: 0 12px;

  line-height: 48px;

  margin: 0 auto;

  -webkit-transition: all 700ms ease;

  -moz-transition: all 700ms ease;

  -ms-transition: all 700ms ease;

  -o-transition: all 700ms ease;

  transition: all 700ms ease; }

  .trigger-mmenu .icon {

    width: 22px;

    margin-right: 7px;

    display: inline-block;

    vertical-align: middle; }

    .trigger-mmenu .icon span {

      display: block;

      height: 4px;

      background: #fff;

      margin-bottom: 3px;

      position: relative;

      -webkit-transition: all 700ms ease;

      -moz-transition: all 700ms ease;

      -ms-transition: all 700ms ease;

      -o-transition: all 700ms ease;

      transition: all 700ms ease; }

  .trigger-mmenu span {

    font-size: 17px;

    font-size: 1.2142857143rem;

    font-weight: bold; }

  .trigger-mmenu:hover, .trigger-mmenu:focus {

    text-decoration: none;

    color: #fff; }

  .trigger-mmenu:hover .icon span:first-child {

    top: -1px; }

  .trigger-mmenu:hover .icon span:last-child {

    top: 1px; }



.mm-opened .trigger-mmenu {

  opacity: .5; }



.head-menu {

  background: #312f2f;

  text-align: center; }

  .head-menu .menu {

    z-index: 1000;

    position: relative; }

    .head-menu .menu > li {

      margin: 0 1rem;

      display: inline-block;

      position: relative; }

      @media (max-width: 1199px) {

        .head-menu .menu > li {

          margin: 0 0.8rem; } }

      .head-menu .menu > li:after {

        display: block;

        content: "";

        height: 3px;

        position: absolute;

        bottom: 5px;

        left: 50%;

        background: #fff;

        right: 50%;

        -webkit-transition: all 400ms ease;

        -moz-transition: all 400ms ease;

        -ms-transition: all 400ms ease;

        -o-transition: all 400ms ease;

        transition: all 400ms ease;

        opacity: 0; }

      .head-menu .menu > li:hover:after {

        bottom: 0;

        opacity: 1;

        left: 0;

        right: 0; }

      .head-menu .menu > li:hover > a {

        text-decoration: none; }

      .head-menu .menu > li a {

        color: #fff;

        font-size: 16px;

        font-size: 1.1428571429rem;

        font-weight: 500;

        display: block;

        line-height: 52px;

        letter-spacing: .5px; }

        @media (max-width: 1199px) {

          .head-menu .menu > li a {

            font-size: 14px;

            font-size: 1rem; } }

        .head-menu .menu > li a.sf-with-ul:after {

          content: "\f107";

          font-family: "FontAwesome";

          font-weight: normal;

          padding-left: 5px; }

      .head-menu .menu > li ul {

        position: absolute;

        top: -15px;

        left: 100%;

        background: #312f2f;

        padding: 15px 0 0px;

        width: 200px;

        display: none; }

        .head-menu .menu > li ul li {

          display: block;

          position: relative;

          margin-bottom: 15px;

          padding: 0 15px;

          text-align: left; }

          .head-menu .menu > li ul li a {

            line-height: 1em;

            font-size: 15px;

            font-size: 1.0714285714rem; }

            .head-menu .menu > li ul li a:hover {

              opacity: .6; }

      .head-menu .menu > li > ul {

        left: -15px;

        top: 52px; }

  .head-menu.head-menu--s1 {

    background: rgba(0, 0, 0, 0.55); }

    .head-menu.head-menu--s1 .menu > li ul {

      background: rgba(0, 0, 0, 0.55); }

  .head-menu.head-menu--s3 {

    text-align: left; }

    @media (max-width: 991px) {

      .head-menu.head-menu--s3 {

        text-align: center; } }



#mobile-menu:not(.mm-menu) {

  display: none; }



.mm-clear::after, .mm-clear::before, .mm-close::after, .mm-close::before {

  width: 7px;

  height: 7px; }



#breadcrumbs {

  padding: 20px 0;

  white-space: nowrap;

  overflow-x: auto; }

  #breadcrumbs span.separator {

    padding: 0 4px;

    opacity: .5; }

  #breadcrumbs span.item-current {

    opacity: .5; }



/* ========================================================== */

/* 			                   Main                           */

/* ========================================================== */

#main {

  overflow-x: hidden;

  /* margin: 60px 0; */ } 

  @media (max-width: 991px) {

    #main {

      margin: 40px 0; } }

  @media (max-width: 575px) {

    #main {

      margin-bottom: 0; } }



.body-show-breadcrumbs:not(.home):not(.body-fullscreen-sections) #main {

  margin: 0 0 60px; }

  @media (max-width: 575px) {

    .body-show-breadcrumbs:not(.home):not(.body-fullscreen-sections) #main {

      margin-bottom: 0; } }

.body-show-breadcrumbs:not(.home):not(.body-fullscreen-sections) .banner-wrapper.banner-wrapper--top {

  margin-top: 0; }

.body-show-breadcrumbs:not(.home):not(.body-fullscreen-sections).body-single-affiliates-s2 .banner-wrapper.banner-wrapper--top, .body-show-breadcrumbs:not(.home):not(.body-fullscreen-sections).body-single-affiliates-s3 .banner-wrapper.banner-wrapper--top {

  margin-bottom: 60px; }

  @media (max-width: 991px) {

    .body-show-breadcrumbs:not(.home):not(.body-fullscreen-sections).body-single-affiliates-s2 .banner-wrapper.banner-wrapper--top, .body-show-breadcrumbs:not(.home):not(.body-fullscreen-sections).body-single-affiliates-s3 .banner-wrapper.banner-wrapper--top {

      margin-bottom: 40px; } }



.body-single-affiliates-s1 .main-area-review {

  margin-top: 60px; }

.body-single-affiliates-s1 #main {

  margin: 0 0 60px; }

  @media (max-width: 991px) {

    .body-single-affiliates-s1 #main {

      margin-bottom: 40px; } }

  @media (max-width: 575px) {

    .body-single-affiliates-s1 #main {

      margin-bottom: 0px; } }



.body-single-affiliates-s1.body-show-breadcrumbs .banner-wrapper.banner-wrapper--top {

  margin-top: 0;

  margin-bottom: 40px; }



.body-fullscreen-sections .banner-wrapper.banner-wrapper--top {

  margin-bottom: 0; }



.hidden {

  display: none; }



.section {

  padding: 60px 0 40px; }

  @media (max-width: 991px) {

    .section {

      padding: 40px 0 30px; } }



.body-header-style1.home .section--first {

  background: none !important;

  padding-top: 0; }

  .body-header-style1.home .section--first .text-area {

    -webkit-border-radius: 5px 5px 0 0;

    -moz-border-radius: 5px 5px 0 0;

    -ms-border-radius: 5px 5px 0 0;

    -o-border-radius: 5px 5px 0 0;

    border-radius: 5px 5px 0 0;

    margin-left: -30px;

    margin-right: -30px;

    margin-top: -6px;

    padding-left: 30px;

    padding-right: 30px;

    padding-top: 30px; }

    @media (max-width: 991px) {

      .body-header-style1.home .section--first .text-area {

        margin-left: -15px;

        margin-right: -15px;

        padding-left: 15px;

        padding-right: 15px; } }

.body-header-style1.home .banner-wrapper.banner-wrapper--top {

  display: none; }



.body-header-style4.home .section--first {

  padding-top: 20px; }

.body-header-style4.home .banner-wrapper.banner-wrapper--top {

  margin-bottom: 40px; }

  @media (max-width: 991px) {

    .body-header-style4.home .banner-wrapper.banner-wrapper--top {

      margin-bottom: 20px; } }



.text-area p {
font-weight: normal;
  margin-bottom: 20px;
  font-size: 18px; }

  .text-area p:empty {

    margin-bottom: 0; }

  .text-area p a {

    color: inherit;

    text-decoration: underline; }

    .text-area p a:hover {

      text-decoration: none; }

.text-area > h1 {

  margin-bottom: 20px;

  font-weight: 700; }

.text-area > h2 {

  margin-bottom: 20px; }

.text-area > h3 {

  margin-bottom: 15px; }

.text-area > h4, .text-area > h5, .text-area > h6 {

  margin-bottom: 15px; }

.text-area .img-wrapper {

  margin-bottom: 20px; }

.text-area > ul, .text-area > ol {

  margin-bottom: 20px; }

  .text-area > ul li, .text-area > ol li {

    margin: 8px 0; }

.text-area .text-list {

  margin-bottom: 20px; }

  .text-area .text-list li {

    list-style: none;

    display: block;

    margin: 8px 0;

    line-height: 1.15em; }

    .text-area .text-list li:before {

      color: #2d739b;

      font-family: FontAwesome;

      display: inline-block;

      margin-right: 8px; }

  .text-area .text-list--one li:before {

    content: "\f0da"; }

  .text-area .text-list--two li:before {

    content: "\f138"; }

  .text-area .text-list--three li:before {

    content: "\f00c"; }

  .text-area .text-list--four li:before {

    content: "\f058"; }

  .text-area .text-list--five li:before {

    content: "\f046"; }

  .text-area .text-list--six li:before {

    content: "\f111"; }

  .text-area .text-list--underline li {

    text-decoration: underline; }

.text-area > table {

  width: 100%; }

  .text-area > table thead {

    background: rgba(0, 0, 0, 0.05);

    border-bottom: 1px solid rgba(0, 0, 0, 0.1); }

    .text-area > table thead th {

      padding: 5px 10px; }

  .text-area > table tbody td {

    padding: 5px 10px; }

.text-area hr {

  margin-top: 2rem;

  margin-bottom: 2rem; }



/* ========================================================== */

/* 			           Review Single                   */

/* ========================================================== */

.row--20 {

  margin: 0 -20px; }

  .row--20 > div {

    padding: 0 20px; }



.review-up-area {

  padding: 40px 0;

  background-color: #efefef; }

  .review-up-area.review-up-area--s1 {

    margin-bottom: 60px; }

  .review-up-area .col-review-logo {

    min-width: 28%;

    flex: 0 0 28%; }

  .review-up-area .col-review-bonus {

    flex: 0 0 37.333333%;

    max-width: 37.333333%; }

  .review-up-area .col-review-overview {

    flex: 0 0 34.6%;

    max-width: 34.6%; }

  .review-up-area h5 {

    font-weight: 900;

    text-transform: uppercase;

    font-size: 14px;

    font-size: 1rem;

    text-align: center;

    margin-bottom: 10px; }

  .review-up-area .review-logo-group {

    max-width: 293px; }

    @media (max-width: 767px) {

      .review-up-area .review-logo-group {

        margin: 0 auto; } }

    .review-up-area .review-logo-group .btn {

      line-height: 58px;

      padding: 0;

      font-size: 21px;

      font-size: 1.5rem; }

      .review-up-area .review-logo-group .btn .fa {

        background-color: #fff;

        color: #559f3d;

        -webkit-border-radius: 100%;

        -moz-border-radius: 100%;

        -ms-border-radius: 100%;

        -o-border-radius: 100%;

        border-radius: 100%;

        width: 22px;

        height: 22px;

        line-height: 22px;

        text-align: center;

        font-size: 16px;

        margin-left: 20px; }

    .review-up-area .review-logo-group .rating {

      margin: 10px auto 15px;

      text-align: center; }

  .review-up-area .review-bonus {

    text-align: center;

    line-height: 1.3em;

    position: relative;

    left: -30px; }

    .review-up-area .review-bonus .item {

      margin-bottom: 25px; }

    @media (max-width: 1199px) {

      .review-up-area .review-bonus {

        left: 0; } }

    @media (max-width: 575px) {

      .review-up-area .review-bonus {

        padding-top: 20px;

        margin-top: 20px;

        position: relative; } }

    .review-up-area .review-bonus h4 {

      font-size: 21px;

      font-size: 1.5rem;

      font-weight: 400; }

      .review-up-area .review-bonus h4 strong {

        color: #559f3d; }

    .review-up-area .review-bonus p {

      line-height: 1.4em;

      font-size: 13px;

      font-size: 0.9285714286rem; }

    .review-up-area .review-bonus:before {

      content: "";

      display: block;

      width: 1px;

      height: 100px;

      background-color: #dddddd;

      position: absolute;

      top: 50%;

      margin-top: -50px;

      left: -30px; }

      @media (max-width: 1199px) {

        .review-up-area .review-bonus:before {

          left: -15px; } }

      @media (max-width: 575px) {

        .review-up-area .review-bonus:before {

          display: none; } }

    .review-up-area .review-bonus:after {

      content:unset;

      display: block;

      width: 1px;

      height: 100px;

      background-color: #dddddd;

      position: absolute;

      top: 50%;

      margin-top: -50px;

      right: -30px; }

      @media (max-width: 1199px) {

        .review-up-area .review-bonus:after {

          right: -15px; } }

      @media (max-width: 767px) {

        .review-up-area .review-bonus:after {

          display: none; } }

      @media (max-width: 575px) {

        .review-up-area .review-bonus:after {

          content: "";

          display: block;

          width: 160px;

          height: 1px;

          background-color: #dddddd;

          position: absolute;

          top: 0px;

          margin-left: -80px;

          left: 50%;

          margin-top: auto;

          right: auto; } }

  @media (max-width: 767px) {

    .review-up-area .review-overview {

      text-align: center;

      padding-top: 20px;

     /*  margin-top: 20px; */

      position: relative; }

      .review-up-area .review-overview:after {

        content: "";

        display: block;

        width: 160px;

        height: 1px;

        background-color: #dddddd;

        position: absolute;

        top: 0px;

        margin-left: -80px;

        left: 50%; } }

  .review-up-area .review-overview .review-info ul {

    overflow: hidden;

    list-style: none;

    padding-bottom: 10px;

    display: flex;

    flex-wrap: wrap; }

    @media (max-width: 991px) {

      .review-up-area .review-overview .review-info ul {

        margin-bottom: 0; } }

  .review-up-area .review-overview .review-info li {

    width: 50%;

    margin-bottom: 18px;

    float: left;

    padding-right: 4%;

    font-size: 13px;

    font-size: 0.9285714286rem; }

    @media (max-width: 991px) {

      .review-up-area .review-overview .review-info li {

        float: none;

        width: 100%;

        padding: 0; } }

    .review-up-area .review-overview .review-info li strong {

      display: block; }

    .review-up-area .review-overview .review-info li:nth-child(even) {

      padding: 0 0 0 4%; }

      @media (max-width: 991px) {

        .review-up-area .review-overview .review-info li:nth-child(even) {

          padding-left: 0; } }

  .review-up-area--dif {

    background-color: transparent;

    padding: 0;

    margin-top: 10px;

    margin-bottom: 15px; }

    .review-up-area--dif .review-up-area__top {

      background: rgba(0, 0, 0, 0.01);

      border-bottom: 1px solid rgba(0, 0, 0, 0.04);

      padding: 30px 30px 10px; }

    .review-up-area--dif .review-bonus:after {

      content: none; }

      @media (max-width: 575px) {

        .review-up-area--dif .review-bonus:after {

          content: ""; } }

    .review-up-area--dif .free-spins-group {

      margin-top: 40px; }

    .review-up-area--dif .review-overview {

      /*background: rgba(0, 0, 0, 0.03);*/
	  background: #eaebeb;
      padding: 30px; }

      .review-up-area--dif .review-overview h5 {

        margin-bottom: 15px; }

      .review-up-area--dif .review-overview .btn {

        line-height: 58px;

        padding: 0;

        font-size: 21px;

        font-size: 1.5rem; }

        .review-up-area--dif .review-overview .btn .fa {

          background-color: #fff;

          color: #559f3d;

          -webkit-border-radius: 100%;

          -moz-border-radius: 100%;

          -ms-border-radius: 100%;

          -o-border-radius: 100%;

          border-radius: 100%;

          width: 22px;

          height: 22px;

          line-height: 22px;

          text-align: center;

          font-size: 16px;

          margin-left: 20px; }

      .review-up-area--dif .review-overview .review-info ul {

        position: relative; }

        .review-up-area--dif .review-overview .review-info ul li {

          font-size: 14px;

          font-size: 1rem; }

          @media (max-width: 991px) {

            .review-up-area--dif .review-overview .review-info ul li {

              float: left;

              width: 50%;

              padding-right: 30px; } }

          @media (max-width: 575px) {

            .review-up-area--dif .review-overview .review-info ul li {

              float: none;

              width: 100%;

              padding: 0; } }

          .review-up-area--dif .review-overview .review-info ul li:nth-child(even) {

            padding-left: 40px; }

            @media (max-width: 991px) {

              .review-up-area--dif .review-overview .review-info ul li:nth-child(even) {

                padding-left: 40px;

                padding-right: 0; } }

            @media (max-width: 575px) {

              .review-up-area--dif .review-overview .review-info ul li:nth-child(even) {

                float: none;

                width: 100%;

                padding: 0; } }

        .review-up-area--dif .review-overview .review-info ul:after {

          content: "";

          display: block;

          width: 1px;

          height: 70%;

          background-color: #dddddd;

          position: absolute;

          top: 0;

          margin-top: 10px;

          left: 50%; }

          @media (max-width: 575px) {

            .review-up-area--dif .review-overview .review-info ul:after {

              content: none; } }

  .review-up-area--dif2 {

    background-color: #fff;

    padding: 30px 25px;

    margin-bottom: 30px; }

    .review-up-area--dif2 .review-overview {

      margin-top: 0;

      margin-bottom: 5px;

      background: none;

      padding: 0; }

      @media (max-width: 767px) {

        .review-up-area--dif2 .review-overview:after {

          display: none; } }

      @media (max-width: 575px) {

        .review-up-area--dif2 .review-overview {

          padding-top: 15px;

          margin-top: 15px; }

          .review-up-area--dif2 .review-overview:after {

            content: "";

            display: block;

            width: 160px;

            height: 1px;

            background-color: #dddddd;

            position: absolute;

            top: 0px;

            margin-left: -80px;

            left: 50%;

            margin-top: auto;

            right: auto; } }

      .review-up-area--dif2 .review-overview .review-info ul {

        overflow: visible; }

        .review-up-area--dif2 .review-overview .review-info ul li {

          width: 100%;

          display: block;

          float: none;

          padding: 0;

          margin-bottom: 15px;

          font-size: 13.5px;

          font-size: 0.9642857143rem; }

          .review-up-area--dif2 .review-overview .review-info ul li:nth-child(even) {

            float: none;

            padding: 0;

            width: 100%; }

        .review-up-area--dif2 .review-overview .review-info ul:after {

          left: 0;

          margin-left: -35px;

          margin-top: 0px;

          height: 95%; }

    .review-up-area--dif2 .review-bonus {

      left: 0; }

      .review-up-area--dif2 .review-bonus:before {

        content: none; }

      .review-up-area--dif2 .review-bonus h4 {

        font-size: 18px;

        font-size: 1.2857142857rem; }

    .review-up-area--dif2 .free-spins-group {

      margin-top: 30px; }



.main-area-review h1 {

  font-weight: 900;

  padding-bottom: 15px; }

.main-area-review h2 {

  font-size: 30px;

  font-size: 2.1428571429rem;

  padding-bottom: 10px;

  margin-top: 40px; }

.main-area-review p {

  font-size: 14px;

  font-size: 1rem;

  line-height: 1.9em; }



.review-bottom-group {

  text-align: center;

  background-color: #eaebeb;

  padding: 30px 20px;
 border: 1px solid #dddddd;
  padding-bottom: 30px;

  margin-top: 40px; }

  .review-bottom-group > img {

    max-width: 160px; }

  .review-bottom-group h4 {


    font-size: 19px; margin: 0;

    padding: 0px 0;color: #333;

    font-weight: 400;
overflow: hidden; }

    .review-bottom-group h4 strong {

      color: #559f3d; }

  .review-bottom-group .btn {

    max-width: 275px;

    line-height: 58px;

    padding: 0;

    margin: 0 auto;

    -webkit-box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.1);

    -moz-box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.1);

    -ms-box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.1);

    -o-box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.1);

    box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.1); }

    .review-bottom-group .btn .fa {

      background-color: #fff;

      color: #559f3d;

      -webkit-border-radius: 100%;

      -moz-border-radius: 100%;

      -ms-border-radius: 100%;

      -o-border-radius: 100%;

      border-radius: 100%;

      width: 22px;

      height: 22px;

      line-height: 22px;

      text-align: center;

      font-size: 16px;

      margin-left: 20px; }

  .review-bottom-group--dif h4 {

    font-size: 20px;

    font-size: 1.4285714286rem;

    padding: 10px 0;

    line-height: 1.25em; }



.ups-downs {

  background-color: #fff;

  padding: 40px;

  margin: 40px 0; }

  .ups-downs h5 {

    text-align: center;

    color: #222020;

    font-size: 16px;

    font-size: 1.1428571429rem;

    font-weight: 900;

    margin: 0 auto;

    margin-bottom: 30px;

    padding: 0 20px;

    padding-bottom: 8px;

    border-bottom: 1px solid #e6e6e6;

    display: block; }

  .ups-downs ul {

    padding-left: 60px; }

    @media (max-width: 767px) {

      .ups-downs ul {

        margin: 15px 0; } }

    .ups-downs ul li {

      list-style: none;

      font-size: 13px;

      font-size: 0.9285714286rem;

      padding-bottom: 6px;

      margin-bottom: 6px;

      border-bottom: 1px solid #e6e6e6; }

      .ups-downs ul li:last-child {

        padding-bottom: 0;

        margin-bottom: 0;

        border-bottom: none; }

  .ups-downs .icon {

    width: 32px;

    height: 32px;

    line-height: 32px;

    color: #fff;

    text-align: center;

    position: absolute;

    left: 15px;

    top: 50%;

    margin-top: -16px;

    -webkit-border-radius: 100%;

    -moz-border-radius: 100%;

    -ms-border-radius: 100%;

    -o-border-radius: 100%;

    border-radius: 100%; }

    .ups-downs .icon.green {

      background-color: #628955; }

    .ups-downs .icon.red {

      background-color: #ab5751; }



.slider-carousel-group {

  background-color: #fff;

  padding-top: 30px;

  margin: 40px 0; }

  .slider-carousel-group h5 {

    text-align: center;

    color: #222020;

    font-size: 16px;

    font-size: 1.1428571429rem;

    font-weight: 900;

    margin: 0 auto;

    border-bottom: 1px solid #e6e6e6;

    display: block;

    padding-bottom: 10px; }

  .slider-carousel-group .carousel-screenshot {

    padding: 30px 80px; }

    .slider-carousel-group .carousel-screenshot .owl-next, .slider-carousel-group .carousel-screenshot .owl-prev {

      position: absolute;

      font-size: 0;

      z-index: 10;

      width: 34px;

      height: 34px;

      line-height: 34px;

      background-color: #eeedeb;

      top: 50%;

      margin-top: -17px;

      -webkit-border-radius: 100%;

      -moz-border-radius: 100%;

      -ms-border-radius: 100%;

      -o-border-radius: 100%;

      border-radius: 100%;

      text-align: center; }

    .slider-carousel-group .carousel-screenshot .owl-next {

      right: 25px; }

      .slider-carousel-group .carousel-screenshot .owl-next:after {

        content: "\f054";

        font-family: FontAwesome;

        font-style: normal;

        font-weight: normal;

        text-decoration: inherit;

        color: #559f3d;

        font-size: 14px;

        display: inline-block;

        text-indent: 1px; }

    .slider-carousel-group .carousel-screenshot .owl-prev {

      left: 25px; }

      .slider-carousel-group .carousel-screenshot .owl-prev:after {

        content: "\f053";

        font-family: FontAwesome;

        display: inline-block;

        font-style: normal;

        font-weight: normal;

        text-decoration: inherit;

        color: #559f3d;

        font-size: 14px;

        text-indent: -1px; }



/* ========================================================== */

/* 			           Category                               */

/* ========================================================== */

.taxonomy-intro {

  margin-bottom: 40px; }



.group-category .news-item {

  margin-bottom: 30px; }

  .group-category .news-item .thumb-wrapper img {

    width: 100%;

    vertical-align: middle; }

  .group-category .news-item .new-text-group {

    background-color: #fff;

    border-bottom: 2px solid rgba(0, 0, 0, 0.04);

    padding: 30px; }

    .group-category .news-item .new-text-group .news-info {

      margin-bottom: 15px;

      color: #a8a8a6;

      font-weight: 700;

      font-size: 12px;

      font-size: 0.8571428571rem; }

      .group-category .news-item .new-text-group .news-info span {

        font-weight: 400; }

    .group-category .news-item .new-text-group h2 {

      font-weight: 700;

      font-size: 22px;

      font-size: 1.5714285714rem;

      line-height: 1.25em;

      margin-bottom: 15px; }

      @media (max-width: 991px) {

        .group-category .news-item .new-text-group h2 {

          min-height: 100%;

          margin-bottom: 10px; } }

    .group-category .news-item .new-text-group p {

      font-size: 14px;

      font-size: 1rem;

      line-height: 1.8em;

      margin-bottom: 15px; }

    .group-category .news-item .new-text-group .read-more {

      color: #d02d21;

      font-size: 14px;

      font-size: 1rem;

      font-weight: 700; }

      .group-category .news-item .new-text-group .read-more i {

        font-size: 12px;

        font-size: 0.8571428571rem;

        vertical-align: middle;

        position: relative;

        top: -1px; }

  .group-category .news-item--reviews .thumb-wrapper {

    padding: 0 20px;

    text-align: center;

    min-height: 196.7px;

    line-height: 196.7px; }

    @media (max-width: 1199px) {

      .group-category .news-item--reviews .thumb-wrapper {

        min-height: 162px;

        line-height: 162px; } }

    .group-category .news-item--reviews .thumb-wrapper img {

      width: auto;

      vertical-align: middle; }

  .group-category .news-item--dif {

    position: relative; }

    .group-category .news-item--dif .new-text-group {

      padding: 0;

      padding-left: 120px;

      background: rgba(0, 0, 0, 0.02);

      position: relative;

      border-bottom: 0 none; }

      @media (max-width: 767px) {

        .group-category .news-item--dif .new-text-group {

          padding: 0; } }

      .group-category .news-item--dif .new-text-group .date-item {

        margin-top: 10px; }

        @media (max-width: 767px) {

          .group-category .news-item--dif .new-text-group .date-item {

            margin-top: 0; } }

      .group-category .news-item--dif .new-text-group .new-text-group__text {

        padding: 30px;

        background: #fff; }

      .group-category .news-item--dif .new-text-group .news-info {

        position: absolute;

        left: 0;

        padding-left: 30px;

        width: 100px;

        top: 30px;

        font-size: 13px;

        font-size: 0.9285714286rem; }

        .group-category .news-item--dif .new-text-group .news-info strong {

          display: block;

          word-break: break-all; }

        @media (max-width: 767px) {

          .group-category .news-item--dif .new-text-group .news-info {

            position: relative;

            width: 100%;

            padding: 0;

            top: 0;

            padding: 20px 30px;

            margin-bottom: 0; } }

        .group-category .news-item--dif .new-text-group .news-info span {

          display: block; }

          @media (max-width: 767px) {

            .group-category .news-item--dif .new-text-group .news-info span {

              display: inline-block;

              margin: 0; } }

          .group-category .news-item--dif .new-text-group .news-info span:first-of-type {

            display: block;

            font-weight: 500; }

            @media (max-width: 767px) {

              .group-category .news-item--dif .new-text-group .news-info span:first-of-type {

                display: inline-block;

                font-weight: normal; } }

      .group-category .news-item--dif .new-text-group .btn {

        font-size: 12px;

        font-size: 0.8571428571rem;

        margin-top: 15px; }



/* ========================================================== */

/* 			           Reviews List                              */

/* ========================================================== */

.btn--shadow {

  -webkit-box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.1);

  -moz-box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.1);

  -ms-box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.1);

  -o-box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.1);

  box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.1); }



.table-reviews .row {

  align-items: center; }

.table-reviews .item {

  padding: 25px 15px;

  padding-top: 27px;

  padding-bottom: 16px;

  border-bottom: 2px solid #eeedeb; }

  .table-reviews .item:nth-of-type(odd) {

    background-color: #f4f2ef; }

  .table-reviews .item:nth-of-type(even) {

    background-color: #f8f6f4; }

  @media (max-width: 767px) {

    .table-reviews .item {

      text-align: center; } }

  .table-reviews .item .c1 {

    width: 45px;

    height: 45px;

    line-height: 45px;

    background-color: #fff;

    color: #1eae50;

    text-align: center;

    -webkit-border-radius: 100%;

    -moz-border-radius: 100%;

    -ms-border-radius: 100%;

    -o-border-radius: 100%;

    border-radius: 100%;

    font-size: 14px;

    font-size: 1rem;

    font-weight: 700;

    border: 1px solid #dedddb;

    margin-top: 8px;

    display: block;

    vertical-align: middle;

    float: left; }

  .table-reviews .item .c2 {

    vertical-align: middle;

    width: calc(100% - 45px);

    float: left;

    padding-left: 30px; }

    @media (max-width: 991px) {

      .table-reviews .item .c2 {

        margin-bottom: 30px; } }

  .table-reviews .item .c3 {

    position: relative;

    top: 9px; }

    @media (max-width: 991px) {

      .table-reviews .item .c3 {

        margin-bottom: 30px; } }

    .table-reviews .item .c3 h4 {

      font-size: 19px;

      font-size: 1.3571428571rem;

      font-weight: 400;

      line-height: 1.3em; }

      .table-reviews .item .c3 h4 strong {

        color: #559f3d; }

    .table-reviews .item .c3 p {

      font-size: 12px;

      font-size: 0.8571428571rem;

      line-height: 1.5em; }

  .table-reviews .item .c6 .btn {

    width: 100%;

    display: block;

    max-width: 210px; }

    @media (max-width: 767px) {

      .table-reviews .item .c6 .btn {

        margin: 5px auto; } }

    .table-reviews .item .c6 .btn--blue {

      background-color: #2d739b;

      margin-bottom: 3px; }



.taxonomy-list-dif .aff-single-widget {

  margin-bottom: 30px;

  position: relative;

  padding: 25px 0 55px; }

  @media (max-width: 991px) {

    .taxonomy-list-dif .aff-single-widget {

      padding: 25px 0 100px; } }

  .taxonomy-list-dif .aff-single-widget .item-btns {

    position: absolute;

    width: 100%;

    bottom: 15px; }



/* ========================================================== */

/* 			           Pagination                              */

/* ========================================================== */

.pagination {

  display: block;

  margin: 30px auto 0;

  color: #fff;

  text-align: center; }

  .pagination span, .pagination > a {

    display: inline-block;

    min-width: 44px;

    padding: 0 12px;

    line-height: 44px;

    background-color: #312f2f;

    -webkit-border-radius: 5px;

    -moz-border-radius: 5px;

    -ms-border-radius: 5px;

    -o-border-radius: 5px;

    border-radius: 5px;

    margin: 0 4px;

    opacity: 0.4;

    color: #fff; }

  .pagination > a {

    opacity: 1;

    transition: all 400ms ease; }

    .pagination > a:hover, .pagination > a:focus {

      text-decoration: none;

      opacity: .4; }



/* ========================================================== */

/* 			           Casino guides                          */

/* ========================================================== */

.casino-guides h2 {

  margin-bottom: 25px; }

.casino-guides .casino-guide-box {

  position: relative;

  height: 160px;

  margin-bottom: 30px;

  transition: all 400ms ease; }

  .casino-guides .casino-guide-box .item {

    display: block;

    width: 100%;

    height: 100%; }

  .casino-guides .casino-guide-box .text {

    position: absolute;

    bottom: 20px;

    padding: 0 20px;

    color: #fff;

    z-index: 10; }

    .casino-guides .casino-guide-box .text a {

      color: #fff;

      text-decoration: none; }

    .casino-guides .casino-guide-box .text h4 {

      color: #fff;

      margin: 0;

      line-height: 1.3em;

      font-size: 18px;

      font-size: 1.2857142857rem; }

    .casino-guides .casino-guide-box .text p {

      color: #fff;

      margin: 11px 0;

      font-size: 12px;

      font-size: 0.8571428571rem;

      line-height: 1.45em; }

    .casino-guides .casino-guide-box .text .btn {

      background: rgba(255, 255, 255, 0.2);

      width: 100px;

      line-height: 29px;

      text-align: center;

      font-size: 12px;

      font-size: 0.8571428571rem;

      padding: 0;

      transition: all 400ms ease; }

      .casino-guides .casino-guide-box .text .btn:hover {

        background: rgba(255, 255, 255, 0.05); }

      .casino-guides .casino-guide-box .text .btn .fa {

        padding-left: 6px;

        position: relative;

        top: 1px; }

  .casino-guides .casino-guide-box:after {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    background: rgba(0, 0, 0, 0.5);

    -webkit-background: linear-gradient(rgba(0, 0, 0, 0.1), black 70%);

    -moz-background: linear-gradient(rgba(0, 0, 0, 0.1), black 70%);

    -ms-background: linear-gradient(rgba(0, 0, 0, 0.1), black 70%);

    -o-background: linear-gradient(rgba(0, 0, 0, 0.1), black 70%);

    background: linear-gradient(rgba(0, 0, 0, 0.1), black 70%);

    -webkit-transition: all 500ms ease;

    -moz-transition: all 500ms ease;

    -ms-transition: all 500ms ease;

    -o-transition: all 500ms ease;

    transition: all 500ms ease;

    opacity: .75;

    width: 100%;

    height: 100%; }

  .casino-guides .casino-guide-box:hover:after {

    opacity: 1; }

  .casino-guides .casino-guide-box--first {

    height: 350px; }

    .casino-guides .casino-guide-box--first .item h4 {

      font-size: 20px;

      font-size: 1.4285714286rem; }

  .casino-guides .casino-guide-box .label-guide {

    position: absolute;

    color: #fff;

    background: rgba(0, 0, 0, 0.4);

    z-index: 10;

    font-size: 12px;

    font-size: 0.8571428571rem;

    -webkit-border-radius: 5px;

    -moz-border-radius: 5px;

    -ms-border-radius: 5px;

    -o-border-radius: 5px;

    border-radius: 5px;

    padding: 0 13px;

    line-height: 29px;

    height: 29px;

    text-align: center;

    top: 20px;

    left: 20px; }

    .casino-guides .casino-guide-box .label-guide .fa {

      padding-right: 7px;

      font-size: 13px;

      font-size: 0.9285714286rem; }

    .casino-guides .casino-guide-box .label-guide--article .fa {

      color: #2d739b; }

    .casino-guides .casino-guide-box .label-guide--video .fa {

      color: rgba(208, 45, 33, 0.8); }

  .casino-guides .casino-guide-box:hover {

    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.3); }



/* ========================================================== */

/* 			           Slideshow                              */

/* ========================================================== */

.slideshow {

  min-height: 300px;

  margin-bottom: 50px; }

  .slideshow .slide {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat; }

    .slideshow .slide .text {

      max-width: 35%;

      margin: 5em 3em;

      background: rgba(0, 0, 0, 0.4);

      color: #fff;

      padding: 30px;

      display: inline-block;

      z-index: 10;

      position: relative; }

      @media (max-width: 991px) {

        .slideshow .slide .text {

          max-width: 50%; } }

      @media (max-width: 575px) {

        .slideshow .slide .text {

          max-width: 100%;

          margin: 3.5em 2em; } }

      .slideshow .slide .text p {

        margin: 15px 0;

        font-size: 13px;

        font-size: 0.9285714286rem; }

    .slideshow .slide .text-right {

      float: right; }

    .slideshow .slide .text-bg:after {

      position: absolute;

      width: 100%;

      background: rgba(0, 0, 0, 0.6);

      top: 0;

      left: 0;

      height: 100%;

      content: "";

      display: block;

      z-index: -1; }

    .slideshow .slide--right.text-bg:after {

      left: auto;

      right: 0; }

    .slideshow .slide > img {

      display: none; }

    .slideshow .slide .btn {

      font-size: 16px;

      font-size: 1.1428571429rem; }

  .slideshow .cycle-prev, .slideshow .cycle-next {

    display: block;

    width: 50px;

    line-height: 50px;

    text-align: center;

    color: #fff;

    background: rgba(0, 0, 0, 0.4);

    -webkit-transition: all 400ms ease;

    -moz-transition: all 400ms ease;

    -ms-transition: all 400ms ease;

    -o-transition: all 400ms ease;

    transition: all 400ms ease;

    -webkit-border-radius: 100%;

    -moz-border-radius: 100%;

    -ms-border-radius: 100%;

    -o-border-radius: 100%;

    border-radius: 100%;

    position: absolute;

    bottom: 10px;

    right: 10px;

    font-size: 20px;

    cursor: pointer;

    z-index: 101;

    text-indent: 2px; }

    @media (max-width: 575px) {

      .slideshow .cycle-prev, .slideshow .cycle-next {

        width: 35px;

        line-height: 35px;

        font-size: 16px; } }

    .slideshow .cycle-prev:hover, .slideshow .cycle-next:hover {

      background: rgba(0, 0, 0, 0.6);

      -webkit-transition: all 400ms ease;

      -moz-transition: all 400ms ease;

      -ms-transition: all 400ms ease;

      -o-transition: all 400ms ease;

      transition: all 400ms ease; }

  .slideshow .cycle-prev {

    right: 65px;

    text-indent: -2px; }

    @media (max-width: 575px) {

      .slideshow .cycle-prev {

        right: 50px; } }



/* ========================================================== */

/* 			           Custom Shortcodes                      */

/* ========================================================== */

.aff-widget-spins {

    background: #efefef;
    text-align: center;
    padding: 25px 0px;
    box-shadow: none;
    margin-bottom: 20px;
    border-radius: 0;
    border: 1px solid #dddddd;

}

  .aff-widget-spins p {

    font-size: 21px;

    font-size: 1.5rem;

    margin-bottom: 10px;

    display: block;

    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis; }

.aff-widget-spins .rating {

    margin:0 0 20px;
    background: #e8e9e9;
    padding: 10px;

}
.aff-widget-spins .thumb {
	margin-bottom: 30px;
    padding: 0 40px;

}



.aff-single-widget-big {
  margin-bottom: 30px;
  background: #eeedeb;

  padding: 30px 35px;

  text-align: center; }

  @media (max-width: 991px) {

    .aff-single-widget-big {

      margin-bottom: 6px; } }

  .aff-single-widget-big .rating {

    margin: 20px 0; }

    .aff-single-widget-big .rating i {

      font-size: 16px;

      font-size: 1.1428571429rem; }

      @media (max-width: 1199px) {

        .aff-single-widget-big .rating i {

          font-size: 15px;

          font-size: 1.0714285714rem; } }

  .aff-single-widget-big .btn {

    font-size: 16px;

    font-size: 1.1428571429rem; }

    @media (max-width: 991px) {

      .aff-single-widget-big .btn.btn--blue {

        margin-bottom: 10px; } }

  .aff-single-widget-big h4 {

    font-weight: 300;

    font-size: 22px;

    font-size: 1.5714285714rem;

    font-family: 'Nunito', sans-serif;

    margin-bottom: 5px;

    text-align: left;

    color: #2d2d2c; }

    .aff-single-widget-big h4 strong {

      color: #559f3d;

      font-weight: 700; }

  .aff-single-widget-big p {

    font-size: 13px;

    font-size: 0.9285714286rem;

    line-height: 1.2em;

    color: #2d2d2c;

    text-align: left;

    margin-bottom: 10px; }



.aff-single-widget {
    background: #fff;
    padding: 70px 0 70px;
    text-align: center;
    border: 1px solid #ccc;
}

  @media (max-width: 991px) {

    .aff-single-widget {

      margin-bottom: 20px; } }

  .aff-single-widget .btn {

    font-size: 14px;

    font-size: 1rem; }

    @media (max-width: 991px) {

      .aff-single-widget .btn.btn--blue {

        margin-bottom: 10px; } }

  .aff-single-widget .img {

    padding: 0 10px; }

  .aff-single-widget h4 {

    font-weight: 300;

    font-size: 24px;

    font-size: 1.7142857143rem;

    font-family: 'Nunito', sans-serif;

    margin-bottom: 5px;

    text-align: left; }

    .aff-single-widget h4 strong {

      color: #559f3d;

      font-weight: 700; }

  .aff-single-widget .item-bonus {

    font-size: 14px;

    font-size: 1rem;

    color: #2d2d2c;

    max-width: 260px;

    margin: 20px auto 20px;

    padding: 0 15px; }

  .aff-single-widget .item-btns {

    padding: 0 15px; }

  .aff-single-widget .ratings-wrapper {

    background: #eeedeb;

    padding: 8px 0;

    margin-top: 15px; }

    .aff-single-widget .ratings-wrapper .rating i {

      font-size: 16px;

      font-size: 1.1428571429rem; }



.aff-single-widget-xl {

  background: rgba(0, 0, 0, 0.025);

  padding: 30px;

  -webkit-border-radius: 5px;

  -moz-border-radius: 5px;

  -ms-border-radius: 5px;

  -o-border-radius: 5px;

  border-radius: 5px; }

  @media (max-width: 991px) {

    .aff-single-widget-xl {

      text-align: center; } }

  .aff-single-widget-xl .widget-img {

    text-align: center; }

  .aff-single-widget-xl .rating {

    text-align: center;

    margin-top: 10px; }

  .aff-single-widget-xl .widget-text {

    padding-left: 80px;

    position: relative; }

    @media (max-width: 991px) {

      .aff-single-widget-xl .widget-text {

        padding-left: 0;

        margin-top: 20px; } }

    .aff-single-widget-xl .widget-text i {

      position: absolute;

      font-size: 50px;

      color: #e2e2e2;

      left: 0;

      top: 50%;

      margin-top: -25px; }

      @media (max-width: 991px) {

        .aff-single-widget-xl .widget-text i {

          display: none; } }

  .aff-single-widget-xl h4 {

    font-weight: 300;

    font-size: 26px;

    font-size: 1.8571428571rem;

    font-family: 'Nunito', sans-serif;

    margin-bottom: 5px;

    color: #2d2d2c; }

    .aff-single-widget-xl h4 strong {

      color: #559f3d;

      font-weight: 700; }

  .aff-single-widget-xl p {

    font-size: 14px;

    font-size: 1rem;

    line-height: 1.4em;

    color: #2d2d2c;

    margin-bottom: 20px; }



.carousel .owl-prev, .carousel .owl-next {

  width: 54px;

  line-height: 54px;

  left: -70px;

  font-size: 20px;

  margin-top: -25px;

  position: absolute;

  background: rgba(255, 255, 255, 0.8);

  -webkit-border-radius: 100%;

  -moz-border-radius: 100%;

  -ms-border-radius: 100%;

  -o-border-radius: 100%;

  border-radius: 100%;

  text-align: center;

  top: 50%;

  text-indent: -2px;

  color: #181818;

  font-size: 28px;

  font-size: 2rem; }

  @media (max-width: 1300px) {

    .carousel .owl-prev, .carousel .owl-next {

      left: 0px; } }

  @media (max-width: 575px) {

    .carousel .owl-prev, .carousel .owl-next {

      width: 32px;

      line-height: 32px; } }

.carousel .owl-next {

  left: auto;

  right: -70px;

  text-indent: 2px; }

  @media (max-width: 1300px) {

    .carousel .owl-next {

      right: 0px; } }

.carousel.owl-carousel .owl-item img {

  width: auto;

  display: inline-block;

  max-width: 100%; }

@media (max-width: 1300px) {

  .carousel {

    padding: 0 70px; } }

@media (max-width: 575px) {

  .carousel {

    padding: 0 45px; } }



.news-list .item {

  width: 100%;

  max-width: 360px;

  margin: 0 auto 30px;

  background: #fff;

  transition: all 400ms ease;

  position: relative; }

  .news-list .item:hover {

    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);

    -moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);

    -ms-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);

    -o-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15); }

  .news-list .item .text {

    padding: 20px 25px 60px;

    position: relative; }

    .news-list .item .text h4 {

      font-size: 18px;

      font-size: 1.2857142857rem;

      font-weight: bold;

      font-family: 'Nunito', sans-serif;

      margin-bottom: 10px; }

    .news-list .item .text p {

      font-size: 13px;

      font-size: 0.9285714286rem;

      line-height: 1.3em;

      margin-bottom: 0; }

  .news-list .item .btn {

    -webkit-border-radius: 0;

    -moz-border-radius: 0;

    -ms-border-radius: 0;

    -o-border-radius: 0;

    border-radius: 0;

    font-size: 14px;

    font-size: 1rem;

    font-weight: 500;

    display: block;

    width: 100%;

    position: absolute;

    bottom: 0;

    left: 0; }

.news-list.relevant-news-wrapper .item {

  max-width: 276px;

  margin-bottom: 0; }



.box-text {

  padding: 30px;

  background: rgba(24, 24, 24, 0.05);

  border: 1px solid rgba(24, 24, 24, 0.1);

  line-height: 1.6em;

  position: relative;

  margin-bottom: 25px; }

  .box-text.box-text--icon {

    padding-left: 80px; }

    .box-text.box-text--icon:after {

      content: attr(data-icon);

      position: absolute;

      top: 35px;

      left: 25px;

      font-size: 30px;

      font-size: 2.1428571429rem;

      font-family: "FontAwesome";

      opacity: .8; }



.search-form-ajax {

  display: block;

  margin-bottom: 40px;

  width: 100%;

  position: relative; }

  .search-form-ajax .search-form-ajax-input {

    width: 100%;

    height: 54px;

    position: relative;

    border: 1px solid rgba(0, 0, 0, 0.1);

    background: #fff;

    -webkit-border-radius: 5px;

    -moz-border-radius: 5px;

    -ms-border-radius: 5px;

    -o-border-radius: 5px;

    border-radius: 5px;

    padding: 0 60px 0 20px;

    -webkit-transition: all 400ms ease;

    -moz-transition: all 400ms ease;

    -ms-transition: all 400ms ease;

    -o-transition: all 400ms ease;

    transition: all 400ms ease;

    font-size: 16px;

    font-size: 1.1428571429rem;

    font-weight: 700; }

    .search-form-ajax .search-form-ajax-input:focus {

      border: 1px solid rgba(0, 0, 0, 0.3); }

  .search-form-ajax button {

    position: absolute;

    top: 0;

    right: 0;

    width: 54px;

    height: 54px;

    text-align: center;

    background: none;

    border: 0 none;

    -webkit-border-radius: 0;

    -moz-border-radius: 0;

    -ms-border-radius: 0;

    -o-border-radius: 0;

    border-radius: 0;

    font-size: 20px;

    font-size: 1.4285714286rem;

    cursor: pointer;

    padding: 0;

    -webkit-transition: all 400ms ease;

    -moz-transition: all 400ms ease;

    -ms-transition: all 400ms ease;

    -o-transition: all 400ms ease;

    transition: all 400ms ease; }

    .search-form-ajax button:hover {

      opacity: .5; }

  .search-form-ajax .ui-autocomplete {

    background: #fff;

    -webkit-border-radius: 5px;

    -moz-border-radius: 5px;

    -ms-border-radius: 5px;

    -o-border-radius: 5px;

    border-radius: 5px;

    border: 1px solid rgba(0, 0, 0, 0.1);

    position: absolute !important;

    margin-top: 54px;

    z-index: 1000;

    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1); }

    .search-form-ajax .ui-autocomplete .custom-li-el {

      display: block;

      border-bottom: 1px solid rgba(0, 0, 0, 0.1);

      padding: 20px;

      position: relative;

      -webkit-transition: all 400ms ease;

      -moz-transition: all 400ms ease;

      -ms-transition: all 400ms ease;

      -o-transition: all 400ms ease;

      transition: all 400ms ease; }

      .search-form-ajax .ui-autocomplete .custom-li-el .img {

        width: 293px;

        top: 20px;

        left: 20px;

        position: absolute; }

        @media (max-width: 991px) {

          .search-form-ajax .ui-autocomplete .custom-li-el .img {

            width: 100%;

            top: auto;

            left: auto;

            position: relative;

            text-align: center; } }

      .search-form-ajax .ui-autocomplete .custom-li-el .text {

        padding-left: 320px;

        text-align: left;

        color: #2d2d2c; }

        @media (max-width: 991px) {

          .search-form-ajax .ui-autocomplete .custom-li-el .text {

            padding-left: 0;

            text-align: center; } }

        .search-form-ajax .ui-autocomplete .custom-li-el .text .title {

          font-size: 24px;

          font-size: 1.7142857143rem;

          display: inline-block;

          font-weight: 700; }

          @media (max-width: 991px) {

            .search-form-ajax .ui-autocomplete .custom-li-el .text .title {

              font-size: 20px;

              font-size: 1.4285714286rem; } }

        .search-form-ajax .ui-autocomplete .custom-li-el .text p {

          font-size: 20px;

          font-size: 1.4285714286rem;

          font-weight: 300;

          margin-bottom: 10px; }

          @media (max-width: 991px) {

            .search-form-ajax .ui-autocomplete .custom-li-el .text p {

              font-size: 16px;

              font-size: 1.1428571429rem; } }

          .search-form-ajax .ui-autocomplete .custom-li-el .text p strong {

            color: #559f3d;

            font-weight: 700; }

        .search-form-ajax .ui-autocomplete .custom-li-el .text .btn {

          display: block; }

      .search-form-ajax .ui-autocomplete .custom-li-el:hover {

        background: rgba(0, 0, 0, 0.02); }

      .search-form-ajax .ui-autocomplete .custom-li-el:last-child {

        border-bottom: 0 none; }



#main .search-form-ajax .ui-autocomplete .custom-li-el .img {

  width: 210px; }

  @media (max-width: 991px) {

    #main .search-form-ajax .ui-autocomplete .custom-li-el .img {

      width: 100%; } }

#main .search-form-ajax .ui-autocomplete .custom-li-el .text {

  padding-left: 230px; }

  @media (max-width: 991px) {

    #main .search-form-ajax .ui-autocomplete .custom-li-el .text {

      padding-left: 0; } }



.ui-helper-hidden-accessible {

  display: none !important; }



/* ========================================================== */

/* 			          Table list shortcode                    */

/* ========================================================== */

.table-s1 {

  margin-bottom: 20px; }

  .table-s1 .item {

    padding: 25px 0;

    background: #f4f2ef;

    border-bottom: 2px solid #eeedeb;
display: table;
    width: 100%;
    /* display: flex;  */}

    @media (max-width: 991px) {

      .table-s1 .item {

        display: block; } }

    .table-s1 .item:nth-child(even) {

      background: #f8f6f4; }

    .table-s1 .item > div {

      padding: 0 10px; float:left; }

      @media (max-width: 991px) {

        .table-s1 .item > div {

          height: auto;

          float: left; } }

    .table-s1 .item .c1 {

      width: 7%; padding-top: 20px;

      text-align: center; }

      @media (max-width: 991px) {

        .table-s1 .item .c1 {

          width: 100%;

          position: relative; } }

    .table-s1 .item .c2 {

      width: 20%; padding-top: 12px;

      text-align: center; }

      .table-s1 .item .c2 a {

        -webkit-transition: all 400ms ease;

        -moz-transition: all 400ms ease;

        -ms-transition: all 400ms ease;

        -o-transition: all 400ms ease;

        transition: all 400ms ease;

        display: block; }

      @media (max-width: 991px) {

        .table-s1 .item .c2 {

          width: 100%; } }

      @media (max-width: 575px) {

        .table-s1 .item .c2 {

          padding: 0 50px; } }

    .table-s1 .item .c3 {

      width: 20%;

      text-align: center; }

      .table-s1 .item .c3 .rating {

        display: inline-block; padding-top: 30px; }

      @media (max-width: 991px) {

        .table-s1 .item .c3 {

          width: 100%;

          padding: 12px 0 20px; } }

    .table-s1 .item .c4 {

      width: 33%;

      position: relative;

      padding-left: 35px; }

      .table-s1 .item .c4 i, .table-s1.table-big .item  i {

        position: absolute;

        font-size: 30px;

        color: #e2e2e2;

        left: 0;

        top: 50%;

        margin-top: -15px;

        margin-left: -10px; }

        @media (max-width: 991px) {

          .table-s1 .item .c4 i {

            display: none; } }

      .table-s1 .item .c4 h4 {

        font-weight: 300;

        font-size: 20px;

        font-size: 1.4285714286rem;

        font-family: 'Nunito', sans-serif;

        margin-bottom: 5px; }

        .table-s1 .item .c4 h4 strong {

          color: #559f3d;

          font-weight: 700; }

      .table-s1 .item .c4 p {

        font-size: 13px;

        font-size: 0.9285714286rem;

        line-height: 1.5em;

        color: #2d2d2c;

        margin: 0; }

        @media (max-width: 991px) {

          .table-s1 .item .c4 p {

            max-width: 400px;

            margin: 0 auto; } }

      @media (max-width: 991px) {

        .table-s1 .item .c4 {

          width: 100%;

          padding-left: 0;

          text-align: center;

          padding-bottom: 20px; } }

      @media (max-width: 575px) {

        .table-s1 .item .c4 {

          padding: 0 20px 20px; } }

    .table-s1 .item .c5 {

      width: 20%; }

      .table-s1 .item .c5 .btn {

        font-size: 16px;

        font-size: 1.1428571429rem; }

      .table-s1 .item .c5 .btn--blue {

        margin-bottom: 4px; }

      @media (max-width: 991px) {

        .table-s1 .item .c5 {

          width: 100%; } }

    .table-s1 .item .count {

      background: #fff;

      width: 47px;

      line-height: 47px;

      text-align: center;

      border: 1px solid #eeedeb;

      -webkit-border-radius: 100%;

      -moz-border-radius: 100%;

      -ms-border-radius: 100%;

      -o-border-radius: 100%;

      border-radius: 100%;

      color: #1eae50;

      font-size: 18px;

      font-size: 1.2857142857rem;

      font-weight: bold;

      text-indent: 3px;

      display: inline-block; }

      @media (max-width: 991px) {

        .table-s1 .item .count {

          position: absolute;

          top: 0;

          left: 10px; } }

      @media (max-width: 575px) {

        .table-s1 .item .count {

          width: 36px;

          line-height: 36px;

          font-size: 12px;

          font-size: 0.8571428571rem;

          left: 5px; } }

    .table-s1 .item:hover .c2 a {

      -webkit-transform: scale(1.15);

      -moz-transform: scale(1.15);

      -ms-transform: scale(1.15);

      -o-transform: scale(1.15);

      transform: scale(1.15); }

  .table-s1.table-big {

    background: #f4f4f4;

    -webkit-border-radius: 5px;

    -moz-border-radius: 5px;

    -ms-border-radius: 5px;

    -o-border-radius: 5px;

    border-radius: 5px;

    overflow: hidden; }

    .table-s1.table-big .item .c1 {

      padding-left: 20px; }

    .table-s1.table-big .item .c2 {

      width: 20%; }

      @media (max-width: 991px) {

        .table-s1.table-big .item .c2 {

          width: 100%;

          padding: 0 65px; } }

      @media (max-width: 575px) {

        .table-s1.table-big .item .c2 {

          padding: 0 50px; } }

      .table-s1.table-big .item .c2 a {

        display: block;

       /* background: rgba(45, 115, 155, 0.1);*/

        padding: 30px 15px;

        -webkit-border-radius: 5px;

        -moz-border-radius: 5px;

        -ms-border-radius: 5px;

        -o-border-radius: 5px;

        border-radius: 5px;

        /*border-bottom: 3px solid rgba(45, 115, 155, 0.11);*/ }

    .table-s1.table-big .item .c3 {

      width: 19%; }

      @media (max-width: 991px) {

        .table-s1.table-big .item .c3 {

          width: 100%; } }

      .table-s1.table-big .item .c3 .review-link {

        display: block;

        text-decoration: underline;

        margin-top: 10px; }

        .table-s1.table-big .item .c3 .review-link:hover {

          text-decoration: none; }

    .table-s1.table-big .item .c4 {

      width: 31%;

      padding-right: 40px;

      padding-left: 40px; }

      @media (max-width: 991px) {

        .table-s1.table-big .item .c4 {

          width: 100%; } }

      .table-s1.table-big .item .c4 p {

        display: none; }

      /*.table-s1.table-big .item .c4 h4 {

        font-size: 26px;

        font-size: 1.4285714286rem;

        color: #2d2d2c; }

      .table-s1.table-big .item .c4 i {

        font-size: 30px;


        color: #ececec;

        left: -10px;

        margin-top: -30px; }*/

        .table-s1.table-big .item .c4 i.icon-right {

          left: auto;

          right: 0px; }

        @media (max-width: 1199px) {

          .table-s1.table-big .item .c4 i {

            font-size: 40px;

            font-size: 2.8571428571rem;

            margin-top: -20px;

            left: 10px; } }

    .table-s1.table-big .item .c5 {

      padding-right: 20px; }

      @media (max-width: 991px) {

        .table-s1.table-big .item .c5 {

          padding: 0 20px; } }

      .table-s1.table-big .item .c5 .btn {

        padding: .7rem 1rem;

        font-size: 21px;

        font-size: 1.5rem; }

  .table-s1.table-s1--ncount .item .c1 {

    display: none; }

  .table-s1.table-s1--ncount .item .c2 {

    width: 24%; }

    @media (max-width: 991px) {

      .table-s1.table-s1--ncount .item .c2 {

        width: 100%; } }

  .table-s1.table-s1--ncount .item .c3 {

    width: 23%; }

    @media (max-width: 991px) {

      .table-s1.table-s1--ncount .item .c3 {

        width: 100%; } }

  .table-s1.table-s1--ncount.table-big .item .c2 {

    width: 24%;

    padding-left: 30px; }

    @media (max-width: 991px) {

      .table-s1.table-s1--ncount.table-big .item .c2 {

        padding: 0 65px;

        width: 100%; } }

    @media (max-width: 575px) {

      .table-s1.table-s1--ncount.table-big .item .c2 {

        padding: 0 50px; } }



.main-col .table-s1 .item .count {

  width: 32px;

  line-height: 32px;

  font-size: 12px;

  font-size: 0.8571428571rem; }

.main-col .table-s1 .item .c3 .rating i {

  width: 22px;

  line-height: 22px;

  font-size: 12px;

  font-size: 0.8571428571rem; }

  @media (max-width: 1199px) {

    .main-col .table-s1 .item .c3 .rating i {

      width: 18px;

      line-height: 18px;

      font-size: 11px;

      font-size: 0.7857142857rem; } }

  @media (max-width: 991px) {

    .main-col .table-s1 .item .c3 .rating i {

      width: 28px;

      line-height: 28px;

      font-size: 16px;

      font-size: 1.1428571429rem; } }

.main-col .table-s1 .item .c4 {

  padding-left: 10px; }

  .main-col .table-s1 .item .c4 i {

    display: none; }

  .main-col .table-s1 .item .c4 p {

    display: none; }

.main-col .table-s1.table-s1--ncount .item .c2 {

  width: 22%; }

  @media (max-width: 991px) {

    .main-col .table-s1.table-s1--ncount .item .c2 {

      width: 100%; } }

.main-col .table-s1.table-s1--ncount .item .c3 {

  width: 25%; }

  @media (max-width: 991px) {

    .main-col .table-s1.table-s1--ncount .item .c3 {

      width: 100%; } }



/* ========================================================== */

/* 			    Single post and default text styles           */

/* ========================================================== */

.single-post-wrapper {

  margin-bottom: 40px; }

  .single-post-wrapper .post-info {

    background-color: #eeedeb;

    padding: 10px 20px;

    margin-bottom: 20px;

    font-size: 12px;

    font-size: 0.8571428571rem; }

    .single-post-wrapper .post-info .post-info__left {

      float: left; }

      @media (max-width: 575px) {

        .single-post-wrapper .post-info .post-info__left {

          float: none;

          text-align: center; } }

      .single-post-wrapper .post-info .post-info__left .seperator {

        padding: 0 8px;

        opacity: .5;

        display: inline-block; }

    .single-post-wrapper .post-info .post-info__right {

      float: right; }

      @media (max-width: 575px) {

        .single-post-wrapper .post-info .post-info__right {

          float: none;

          text-align: center;

          padding-top: 7px;

          margin-top: 7px;

          border-top: 1px solid rgba(0, 0, 0, 0.1); } }

  .single-post-wrapper .post-share {

    background-color: #eeedeb;

    text-align: center;

    padding: 10px 20px;

    margin: 20px 0; }

    .single-post-wrapper .post-share span {

      opacity: .7; }

    .single-post-wrapper .post-share ul li {

      display: inline-block;

      padding: 0 5px; }

      .single-post-wrapper .post-share ul li a {

        width: 28px;

        line-height: 28px;

        -webkit-border-radius: 100%;

        -moz-border-radius: 100%;

        -ms-border-radius: 100%;

        -o-border-radius: 100%;

        border-radius: 100%;

        background-color: #2d739b;

        display: inline-block;

        color: #fff;

        transition: all 400ms ease; }

        .single-post-wrapper .post-share ul li a i {

          vertical-align: middle; }

        .single-post-wrapper .post-share ul li a:hover {

          opacity: .5; }



#comments-section .login-register {

  margin-top: 30px; }

  #comments-section .login-register label {

    display: block;

    margin-bottom: 10px; }

  #comments-section .login-register input[type="text"], #comments-section .login-register input[type="password"], #comments-section .login-register input[type="email"] {

    display: block;

    width: 100%;

    margin: 0 0 10px;

    padding: 5px 10px;

    max-width: 300px;

    background: #fff;

    border: 1px solid rgba(0, 0, 0, 0.3); }

  #comments-section .login-register input[type="submit"] {

    border: 0 none;

    background: #2d739b;

    color: #fff;

    font-weight: 500;

    padding: 5px 15px;

    cursor: pointer; }

  @media (max-width: 575px) {

    #comments-section .login-register #loginform {

      margin-bottom: 30px; } }

  #comments-section .login-register #loginform p {

    margin-bottom: 0; }

  #comments-section .login-register .errors {

    margin: 20px 0; }

    #comments-section .login-register .errors li {

      font-size: 12px;

      font-size: 0.8571428571rem;

      color: #d02d21; }

#comments-section .comment-form label {

  display: block;

  margin-bottom: 10px; }

#comments-section .comment-form #comment {

  display: block;

  width: 100%;

  resize: none;

  padding: 10px; }

#comments-section .comment-form #submit {

  border: 0 none;

  background: #2d739b;

  color: #fff;

  font-weight: 500;

  padding: 5px 15px;

  cursor: pointer; }

#comments-section .comment-list li {

  display: block; }

  #comments-section .comment-list li .comment-body {

    margin-bottom: 15px;

    border-bottom: 1px solid #eeedeb;

    padding-bottom: 15px; }

  #comments-section .comment-list li .avatar {

    -webkit-border-radius: 100%;

    -moz-border-radius: 100%;

    -ms-border-radius: 100%;

    -o-border-radius: 100%;

    border-radius: 100%;

    margin-right: 10px; }

  #comments-section .comment-list li .comment-meta {

    font-size: 12px;

    font-size: 0.8571428571rem;

    opacity: .7;

    margin-bottom: 5px;

    margin-left: 52px;

    position: relative;

    top: -10px; }

  #comments-section .comment-list li .reply {

    padding-left: 52px; }

    #comments-section .comment-list li .reply .comment-reply-link {

      opacity: .7;

      color: #2d739b; }

  #comments-section .comment-list li p {

    padding-left: 52px; }

  #comments-section .comment-list li .comment-respond h2 {

    font-size: 21px;

    font-size: 1.5rem;

    padding-left: 52px; }

    #comments-section .comment-list li .comment-respond h2 #cancel-comment-reply-link {

      color: #2d739b;

      font-size: 14px;

      font-size: 1rem;

      padding-left: 10px; }

  #comments-section .comment-list li ol.children {

    padding-left: 30px;

    position: relative; }

    #comments-section .comment-list li ol.children:after {

      position: absolute;

      top: 5px;

      left: 0;

      content: "\f064";

      font-family: FontAwesome;

      opacity: .06;

      font-size: 18px;

      font-size: 1.2857142857rem;

      -webkit-transform: rotateX(180deg);

      -moz-transform: rotateX(180deg);

      -ms-transform: rotateX(180deg);

      -o-transform: rotateX(180deg);

      transform: rotateX(180deg); }

#comments-section .comments-title {

  margin-bottom: 30px; }



.relevant-news-wrapper {

  position: relative;

  margin-bottom: 40px; }

  .relevant-news-wrapper:after {

    content: "";

    display: block;

    width: 120px;

    position: absolute;

    top: 0;

    right: -1px;

    bottom: 0;

    z-index: 100;

    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.79) 61%, white 100%);

    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.79) 61%, white 100%);

    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.79) 61%, white 100%);

    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=1 ); }

    @media (max-width: 575px) {

      .relevant-news-wrapper:after {

        width: 60px; } }

  .relevant-news-wrapper > h3 {

    margin-bottom: 20px; }



.banner-wrapper.banner-wrapper--bottom {

  margin-bottom: 60px; }

  @media (max-width: 991px) {

    .banner-wrapper.banner-wrapper--bottom {

      margin-bottom: 40px; } }

  @media (max-width: 575px) {

    .banner-wrapper.banner-wrapper--bottom {

      margin-top: 40px; } }

.banner-wrapper.banner-wrapper--top {

  margin-top: 60px;

  margin-bottom: 60px; }

  @media (max-width: 991px) {

    .banner-wrapper.banner-wrapper--top {

      margin-top: 40px;

      margin-bottom: 40px; } }



/* ========================================================== */

/* 			          Wordpress default styles                */

/* ========================================================== */

img.size-auto, img.size-full, img.size-large, img.size-medium, .attachment img, .widget-container img {

  max-width: 100%;

  height: auto; }



.alignleft, img.alignleft {

  display: inline;

  float: left;

  margin-right: 30px;

  margin-bottom: 20px; }



.alignright, img.alignright {

  display: inline;

  float: right;

  margin-left: 30px;

  margin-bottom: 20px; }



.aligncenter, img.aligncenter {

  clear: both;

  display: block;

  margin-left: auto;

  margin-right: auto; }



img.alignleft, img.alignright, img.aligncenter {

  margin-bottom: 12px; }



.wp-caption {

  background: #f1f1f1;

  line-height: 18px;

  margin-bottom: 20px;

  max-width: 632px !important;

  padding: 4px;

  text-align: center;

  width: auto !important; }



.wp-caption img {

  margin: 0; }



.wp-caption p.wp-caption-text {

  color: #888;

  font-size: 12px;

  margin: 5px; }



.gallery {

  margin: 0 auto 18px; }



.gallery .gallery-item {

  float: left;

  margin-top: 0;

  text-align: center;

  width: 33%; }



.gallery-columns-2 .gallery-item {

  width: 50%; }



.gallery-columns-4 .gallery-item {

  width: 25%; }



.gallery img {

  border: 10px solid #f1f1f1; }



.gallery-columns-2 .attachment-medium {

  max-width: 92%;

  height: auto; }



.gallery-columns-4 .attachment-thumbnail {

  max-width: 84%;

  height: auto; }



.gallery .gallery-caption {

  color: #888;

  font-size: 12px;

  margin: 0 0 12px; }



.gallery br + br {

  display: none; }



#content .attachment img {

  display: block;

  margin: 0 auto; }



.wp-smiley, .gallery dl {

  margin: 0; }



/*# sourceMappingURL=styles.css.map */





/* ==================Added CSS====================== */
.bannr_txt h1, h4 {
	color: #fff;
}

.head-main .bannr_txt {

    display: none;

}

@media only screen and (max-width: 600px) {
    .head-main .bannr_txt { display: none;}
}

@media (max-width: 575px) {
	#page-wrapper header {
		height: 145px !important;
	}
}

.text-area .text_area_bonus {
	text-align: center;
}

body .btn--blue {
    background: #1aa1de;
    color: #fff;
}
body .btn--green {
    background: #1eae50;
    color: #fff;
}
.table-s1 .item .c4 h4 {
    color: #333;
}
.hf_links .btn {
    font-size: 13px;
   /* font-weight: normal; */ text-transform: uppercase;
    width: 49%;
}
.aff-widget-spins .hf_links {

    padding: 0 10px;

}
body .aff-widget-spins p {
    font-size: 12px;
    margin-bottom: 25px;
    display: block; 
    overflow: hidden;
    white-space: inherit;
    text-overflow: ellipsis; padding: 0 40px
}
body .btn{font-size: 13px !important;  /*font-weight: normal !important;*/ text-transform: uppercase;}

.table-s1 {

    margin-bottom: 20px;
    background: #f4f2ef;

}
.item.top-casiono_heading {

    background: #dadad9; border-bottom: 1px solid #fff;
    color: #333;
    text-shadow: 0px 1px 0px #fff;
    padding: 15px 0; font-size: 18px;

}
.item.top-casiono_heading .c2, .item.top-casiono_heading .c3{ text-align:left;}
.item.top-casiono_heading .c2 {padding-top: 0;  width: 29.5%; padding-left: 16px; }
.item.top-casiono_heading .c4 { padding-left: 7px; width: 30%; }
.carousel_post_title {
    text-align: center;
    color: #fff;
    font-size: 28px;
    font-weight: normal;
    margin-bottom: 32px !important;
}

.table-s1.table-big .item.top-casiono_heading .c2{width: 29.5%;}
.table-s1.table-big .item.top-casiono_heading .c3{text-align: left;}
.table-s1.table-big .item.top-casiono_heading .c4{padding-left: 14px;}
.table-s1.table-big .item.top-casiono_heading .c5{padding-right: 10px;}


.home #main {
    background: #fff;
}

div#home_f img {
    width: 100%;
}
.home .footer-copyright{display:none;}
.search-form-ajax {
    max-width: 100%;
    margin: auto;
}
.footer_outer_1 ul {
    list-style: none;
    text-align: center;
    font-size: 15px;
}
.footer_outer_1 ul li {
    display: inline-block;
    margin-right: 20px;
}
.footer_outer_1 ul li img {
    margin-right: 10px;
}
.sidebar {
    margin-bottom: 30px;
}

#main .text-area > h2 {
   font-size: 26px;
}

#main .text-area > h4 {
    color: #333;
    font-size: 19px;
    font-weight: normal;
}
.head-main .bannr_txt h1 {
    font-size: 28px;
}

.head-main .bannr_txt h4 {
    font-size: 20px;
    font-weight: normal;
	margin-top: 12px;

}
div#home_f {
    margin: 0 40px !important;
    text-align: center;}
.sidebar .widget-s1 .widget-sites-group .text-down .btn {
    font-size: 11px !important; width: 100px;
}
.sidebar_img_link img {

    width: 100%;

}

.review-up-area .review-bonus h4{color: #000;}

.search {width: 600px;float: right;}.search-form-ajax-input::placeholder {color: #000;}

.item.top-casiono_heading .search-form-ajax .search-form-ajax-input {
    width: 100%;
    height: 40px;
    border: 0;
    background: none;
    border-radius: 0px;
    outline: 0;
    padding: 8px 35px 0 0px;
    font-size: 17px !important;
    border-bottom: 1px solid #333;
    font-weight: normal;
	box-shadow: 0px 1px 0px 0px white;
}
.item.top-casiono_heading .search-form-ajax button {
    width: 35px;
    height: 40px;
}
.item.top-casiono_heading .search-form-ajax  {
    margin-top: -10px;
}

.carousel .owl-prev, .carousel .owl-next {
    width: 40px;
    line-height: 63px;
    font-size: 37px;
    height: 40px;
}
.f-section {
    border: 1px solid #dcdcdc;
    position: relative;
    padding: 40px 100px;
    background: #f3f3f3; text-align:center;
}
.f-section .f-s-img {
    position: absolute;
    top: 20px;
    left: 20px;
}
.f-s-content h2 {
    margin: 0 0 30px;
}
.f-s-content p {
    font-size: 18px;
}
body .section {
    padding: 0px 0 20px ;
}
body .aff-widget-spins {
    margin-bottom: 0;
}
.sidebar {
    border: 1px solid #dddddd;
}
.search-form-ajax .ui-autocomplete .custom-li-el .img {
    width: 150px;
    top: 0;
    left: 0;
    position: inherit;
}
.search-form-ajax .ui-autocomplete .custom-li-el .text {
    padding-left: 0;
    text-align: left;
    color: #2d2d2c; min-width: 260px;
}
.search-form-ajax .ui-autocomplete .custom-li-el .text .title {
    font-size: 20px ;
}
.search-form-ajax .ui-autocomplete .custom-li-el .text p {
    font-size: 16px;
}


.head-menu.head-menu--s1{
	/* Permalink - use to edit and share this gradient: colorzilla/gradient-editor/#24c94a+0,1eaa59+100 */
background: #24c94a; /* Old browsers */
background: -moz-linear-gradient(top, #24c94a 0%, #1eaa59 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #24c94a 0%,#1eaa59 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #24c94a 0%,#1eaa59 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#24c94a', endColorstr='#1eaa59',GradientType=0 ); /* IE6-9 */
	margin:20px auto;
}
.head-menu .menu > li {
    margin: 0 -4px 0 0;
    display: inline-block;
    position: relative;
    border-left: 1px solid #079e3b;
    border-right: 1px solid #43d074;
}
.head-menu .menu > li:first-child{border-left:0;}
.head-menu .menu > li:last-child{border-right:0;}
.head-menu .menu > li:after{ display:none;}

.head-menu .menu > li a {
    font-size: 13px;
    padding: 0 15px; text-transform:capitalize;
}
.menu-item i._before, .rtl .menu-item i._after {
    margin-right: 6px;
    margin-top: -4px;
}

.head-menu .menu > li a:hover, .head-menu .menu > li.current_page_item a {
/* Permalink - use to edit and share this gradient: colorzilla/gradient-editor/#1eaa59+0,24c94a+100 */
background: #1eaa59; /* Old browsers */
background: -moz-linear-gradient(top, #1eaa59 0%, #24c94a 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #1eaa59 0%,#24c94a 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #1eaa59 0%,#24c94a 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1eaa59', endColorstr='#24c94a',GradientType=0 ); /* IE6-9 */
}

body{ margin:-21px 0 0 0;}

.row--20 .overview_secc {
	background: #eaeaeb;
	padding-top: 20px;
	padding-bottom: 20px;
	margin-top: 20px;
}
.review-overview a {
	padding: 15px 0;
	font-size: 21px !important;
}
.review-overview a i {
	margin-left: 10px;
}
.review-overview li strong {
	font-size: 17px;
}
.review-overview h5 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 20px;
}
.main-area-review .single-post p {
	font-size: 22px;
}
.review-up-area {
	padding-bottom: 0;
	margin-bottom: 30px;
}
.review-up-area h5 {
	font-size: 18px;
	/* display:none; */
}
.review-up-area .review-bonus p {
	font-size: 16px;
}
.review-up-area .review-overview .review-info li {
	font-size: 15px;
}
.ups-downs .icon {
	padding-top: 8px;
}

.aff-single-widget .item-bonus {
	font-size: 20px;
}

.overview_secc {
	display: inline-block;
	width: 100%;
}

.mm-page.mm-slideout .section.section--first {
	background: none !important;
}

.section.section--first .text-area {
	background: none !important;
}

.footer_data .col-sm-4.text-center {
	list-style: none;
	font-size: 19px;
	font-weight: 700;   
} 

.footer_data li img {
	margin-right: 11px;
}

.footer-copyright {
	display: none;
}

.three_posts_slide .img {min-height: 90px;}
.three_posts_slide .aff-single-widget {
	background: #FFF;
	padding: 70px 0 70px;
	text-align: center;
	border: 1px solid #ccc;
}
.three_posts_slide  .aff-single-widget .ratings-wrapper {
	background: #FFF;
}
.carousel .owl-prev, .carousel .owl-next {
	line-height: 43px !important;
}

@media (max-width: 991px) {
.all_casino_list .table {height: auto;}
.all_casino_list .table-s1 .item .count {position: static;}
.all_casino_list .item.top-casiono_heading {display: inline-block;width: 100%;}
.all_casino_list .table-s1 .top-casiono_heading .c2, .all_casino_list .table-s1 .top-casiono_heading .c3, .all_casino_list .table-s1 .top-casiono_heading .c4, .all_casino_list .table-s1 .top-casiono_heading .c5{width:auto; display:inline-block; padding:0 15px;}
}

@media (max-width: 767px) {
.all_casino_list .table-s1 .top-casiono_heading .c2, .all_casino_list .table-s1 .top-casiono_heading .c3, .all_casino_list .table-s1 .top-casiono_heading .c4, .all_casino_list .table-s1 .top-casiono_heading .c5 {
width: 100%;padding: 0 20px !important;text-align: left;margin-bottom: 10px;}
.f-section {padding: 40px;}
.table-s1 .top-casiono_heading .c2, .table-s1 .top-casiono_heading .c3, .table-s1 .top-casiono_heading .c4{display:none !important;} 
.item.top-casiono_heading {
    display: table;
    width: 100%;

}
}

.owl-stage-outer .carousel .owl-prev, .carousel .owl-next {line-height: 42px !important;}



.review-up-area__top{
	background: #efefef !important;
}


.review-bottom-group h1, h4 {
    /*color: #000;*/
}


@media (max-width: 575px) {
	
	.review-up-area .review-bonus h4 {
    font-size: 16px !important;
  }

	body .btn {
    font-size: 11px !important;
}

	#main {
    margin: 0px !important;
	}

	body .section {
    padding: 0px !important;
}

    .home .head-main {
    padding: 10px 0 20px !important;
	top: 70px !important;
	}
	
	.head-main {
		top: 78px !important;
	}
	
	.owl-nav {
    display: none;
	}

		
		.f-s-content p {
			padding-top: 4px;
    font-size: 15px !important;
}

	.f-s-content h2 {
    font-size: 22px !important;
	margin-left: 40px;
	margin-top: 5px;
	}
	.f-section {
    padding: 10px !important;
}

/*.section.section--first {
    display: none;
}
*/
.sidebar {
    margin-bottom: 0px !important;
}

 }

::-moz-placeholder {
    color: #000000 !important;
    text-shadow: 0px 1px 0px #000 !important;
}

.head-main {
	padding: 0;
	position: absolute;
	top: 95px;
	left: 0;
	right: 0;
	max-width: 630px;
	margin: auto;
}
#page-wrapper header {
	height: 185px;
}
.section--first .hf_links .btn {
	line-height: 16px;
}
.desc_txt {
    width: 100%;
    height: 65px;
    overflow: hidden;
    margin-bottom: 20px;

}
body .aff-widget-spins .desc_txt p {

    display: table-cell;
    vertical-align: middle;
    overflow: hidden;
    width: 355px;

}
/*
.footer_data .col-sm-4.text-center.spela_footer {

    text-align: left !important;
    padding-left: 25px;
    margin-top: -5px;

}*/
.footer .footer_data ul {

    margin: 0;
    list-style: none;
    text-align: center;
    display: block;

}
.footer .footer_data ul li {

    display: inline-block;
    padding: 0 15px;
    font-size: 17px;
    font-weight: 700;

}
.footer .footer_data li img {

    margin-right: 11px;
    max-width: 40px;
    float: left;
    margin-top: -8px;
}
.body-single-affiliates-s1 .main-area-review {
    margin-top: 0;
}
.page_title {
    margin: 0 0 20px 0;
}
.review-up-area {
    margin-left: 0;
    margin-right: 0;
    border: 1px solid #dddddd;
}
.review-bottom-group .review_bimg {
    margin-top: 10px;
}
.video_bx_main {
    display: table;
    width: 100%;
}
.video_bx_main .video_box {
	float: left;
	width: 65%;
}
.video_bx_main .col-lg-4 {
    float: left;
    width: 35%; padding: 0; 
}
.video_bx_main .video_box iframe {
  /*  width: 100%;
    height: 406px;*/
}
.player .vp-player-layout {

    width: 100% !important;
    left: 0 !important;
}
.video_bx_main .col-lg-4 .desc_txt,.video_bx_main .col-lg-4 .desc_txt p  {
    height: 110px;
}

.sidebar_img a {
    display: block;
}
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
} 

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.three_posts_slide p {
    text-align: center;
    color: #fff;
    line-height: 20px;
    font-size: 15px; margin:0 0 30px
}
.table-s1 .item:nth-child(2n) {
    display:block !important;
}
.review-bottom-group .row {
	display: table;
	width:100%;
	vertical-align: middle;
	margin:0;
}
.review-bottom-group .row > div {
    float: none;
    display: table-cell;
    vertical-align: middle;
}

#return-to-top {
	position: fixed;
	bottom: 20px;
	left: 20px;
	z-index: 9999999;
	background: #1eae50;
	width: 40px;
	height: 40px;
	text-decoration: none;
	border: 1px solid #1eae50;
	-webkit-border-radius: 35px;
	-moz-border-radius: 35px;
	border-radius: 0;
	display: none;
	-webkit-transition: all .3s linear;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}
#return-to-top i {
	color: #fff;
	margin: 0;
	position: relative;
	left: 10px;
	top: 9px;
	font-size: 19px;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.home .section.section--four .container {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    margin: auto;
}
.page-id-210  .section.section--four {display: none;}
.home .section.section--four {
    padding: 0 !important; 
    position: relative;
    margin: 0 0 30px;
    height: 720px; overflow: hidden;
}

.home #main .page_title ,
.page-id-261 #main .page_title ,
.page-id-210 #main .page_title {
    display: none;
}




/**/
@media (max-width: 1199px) {
.video_bx_main .col-lg-4 .desc_txt, .video_bx_main .col-lg-4 .desc_txt p {
    height: 65px;
}
.home .section.section--four {
    height: 650px;
}
	
}
@media (max-width: 991px) {
.all_casino_list .table-s1 .item {
	position: relative;
}
.all_casino_list .table-s1 .item .c2 {
    padding: 0 45px;
}
.table-s1 .item .c3 .rating {
    display: inline-block;
    padding-top: 0px;
}
.all_casino_list .table-s1 .item .c1 {
    width: auto;
    position: absolute;
    left: 0; top: 5px;

}
.sidebar .widget-s1 .number-box {
    position: absolute;
    left: 20px;
}
.sidebar .widget-s1 .widget-sites-group .img {
    margin: 0 auto;
    max-width: 80%;
}
.sidebar .widget-s1 .widget-sites-group .text-down .btn {
    width: 150px;
    padding: 4px;
}
.sidebar .widget-s1 .widget-sites-group .text-down p {
    margin-bottom: 10px;
}
.footer_data .col-sm-4.text-center {
    list-style: none;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 9px;
}
.footer_data li img {
    margin-right: 11px;
    max-width: 30px;
}
.footer .footer_data ul li {
    margin: 0 0 10px;
}
.footer .footer_data li img {
    max-width: 30px;
    margin-top: -5px;
}

.section.section--four #particles1-js {
    display: none;
}
.home .section.section--four .container {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.home .section.section--four {
	height: auto;
    padding: 40px 0 !important;

}
.video_bx_main .video_box {
	float: none;
	width: 100%; height: auto; overflow:hidden;
}
.video_bx_main .col-lg-4 {
    float: none;
    width: 100%;
}

.video_bx_main .col-lg-4 .desc_txt,.video_bx_main .col-lg-4 .desc_txt p {
    height: 65px;
}

/**/

}

@media (max-width: 767px) {
.aff-widget-spins .thumb {
    margin-bottom: 20px;
}
body .aff-widget-spins {
    margin-bottom: 20px;
}
.aff-single-widget-big p{
    font-size: 16px;
}

.review-up-area {
    border: 1px solid #ccc;
}



.f-s-content h2 {
    font-size: 16px !important;
    margin-left: 40px;
    margin-top: 13px;
}

.f-section {
    margin:  -20px 0px 0px 0px;
}


.all_casino_list .table-s1 .item {

    position: relative;
    margin: 0;
    border-bottom: 6px solid #fff;

}
.carousel_post_title {
    font-size: 16px; font-weight: bold;
}
.three_posts_slide p {

    font-size: 14px;

}


.review-bottom-group .row > div {float: none;display: table;padding: 10px 10px;width: 100%;max-width: 100%;}

.review-up-area .review-logo-group {
    text-align: center;
}

.box-text {
	margin-bottom: 0;
}
body .aff-widget-spins {
	margin-top: 20px; margin-bottom: 0;
}
.review-bottom-group h4 {

	overflow: visible;
}
.carousel_post_title br, .three_posts_slide p br{
	display: none;
}
.carousel_post_title {
    font-size: 14px;
}

.three_posts_slide p {

    font-size: 16px !important;

}
/**/
}

@media (max-width: 530px) {
.hf_links .btn {
    width: 100%;
    margin-bottom: 10px;
}


}



.page-id-186 .page_title {
    display: none;
}

.page_title {
	display: none;
}

.all_casino_list .aff-single-widget-xl {
	border: 1px solid #e3e3e3;
}

.all_casino_list .aff-single-widget-big {
    border: 1px solid #dcdcdc;
}