/* --------------------------------------
=========================================
LandX - Responsive App Landing Page
Version: 1.1 (Initial Release)
Designed By: Mizanur Rahman
=========================================

1. IMPORT CSS

2. GLOBAL STYLES (USED IN VARIOUS SECTION OF THE WEBSITE)
  2.1 GENERAL STYLES
  2.2 PRE LOADER
  2.3 ANCHOR AND BOLD TEXT

3. COMPONENTS (ELEMNTS USED IN MANY SECTION)
  3.1 BACKGROUND COLORS AND LINE
  3.2 TYPOGRAPHY
  3.3 BUTTONS

4. SECTION STYLES AND COMPONENTS
  4.1 SECTIONS PADDING AND COLOR OVERLAY

  4.2 SECTION: HOME
    4.2.1 BASIC STYLES
    4.2.2 NAVIGATION
    4.2.3 FEATURE LIST
    4.2.4 VERTICAL REGISTRATION FORM

  4.3 SECTION: WITH LEFT / RIGHT SCREENSHOT
    4.3.1 BASIC STYLES
    4.3.2 FEATURE LIST

  4.4 SECTION: FEATURES

  4.5 SECTION: PRICING TABLE

  4.6 SECTION: VIDEO
    4.6.1 BASIC STYLE / RESET
    4.6.2 VIDEO FEATURES

  4.7 SECTION: SCREENSHOTS

  4.8 SECTION: CLIENTS AND FEEDBACKS
    4.8.1 CLIENTS LOGO
    4.8.2 FEEDBACKS

  4.9 SECTION: CALL TO ACTION
    4.9.1 CALL TO ACTION WITH TEXT/BUTTON
    4.9.2 SUBSCRIBE FORM

  4.10 SECTION: CONTACT US
    4.10.1 BASIC STYLES
    4.10.2 CONTACT FORM


  4.11 SECTION: FOOTER

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

/*---------------------------------------
   1. IMPORT GOOGLE WEB FONTS
-----------------------------------------*/

/*@import url(http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700,400italic|Raleway:500,600,700);*/

/* --------------------------------------
=========================================
   2. GLOBAL STYLES
=========================================
-----------------------------------------*/

/*---------------------------------------
   2.1 GENERAL STYLES
-----------------------------------------*/

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  background: #EEEEEE;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  color: #727272;
  line-height: 25px;
  overflow-x: hidden !important;
  margin: auto !important;
}

/*---------------------------------------
   2.2 PRE LOADER
-----------------------------------------*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fefefe;
  z-index: 99999;
  height: 100%;
  width: 100%;
  overflow: hidden !important;
  background-repeat: no-repeat;
  background-position: center;
}

.status {
  width: 40px;
  height: 40px;
  position: absolute;
  left: 50%;
  top: 50%;
  background-image: url(../images/loading.gif);
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  background-size: cover;
  margin: -20px 0 0 -20px;
}

/*---------------------------------------
   2.3 ANCHOR AND BOLD TEXT
-----------------------------------------*/
a {
  text-decoration: none;
  -webkit-transition: all ease 0.25s;
  transition: all ease 0.25s;
}

a:hover {
  text-decoration: underline;
}

a:focus {
  outline: inherit;
  color: inherit;
}

strong {
  font-weight: 700;
}

.strong {
  font-weight: 700;
}

table {
  border-bottom: 1px solid #ededed;
  border-collapse: collapse;
  border-spacing: 0;
  color: #757575;
  font-size: 12px;
  font-size: 0.857142857rem;
  line-height: 2;
  margin: 0 0 24px;
  margin: 0 0 1.714285714rem;
  width: 100%;
}
tr th {
  color: #636363;
  font-size: 11px;
  font-size: 0.785714286rem;
  font-weight: bold;
  line-height: 2.181818182;
  text-align: left;
  text-transform: uppercase;
}
td {
  border-top: 1px solid #ededed !important;
  color: #757575;
  font-size: inherit;
  font-weight: normal;
  padding: 6px 10px 6px 0;
  text-align: left;
}

/*---------------------------------------
   2.4 MISC FIXES
-----------------------------------------*/
@-webkit-viewport {
  width: device-width;
}

@-moz-viewport {
  width: device-width;
}

@-ms-viewport {
  width: device-width;
}

@-o-viewport {
  width: device-width;
}

@viewport {
  width: device-width;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.widget > ul{
  padding-left: 0;
}
/* --------------------------------------
=========================================
   3. COMPONENTS
=========================================
-----------------------------------------*/

/*---------------------------------------
   3.1 BACKGROUND COLORS AND LINE
-----------------------------------------*/

.dark-bg {
  background: #323232;
  color: #ffffff;
}

.color-bg {
  color: #ffffff;
}

.bgcolor-2 {
  background: #f7f8fa;
}

.bgcolor-white {
  background: #ffffff;
}

.colored-line {
  height: 1px;
  width: 70px;
  margin: auto;
  margin-top: 10px;
  margin-bottom: 10px;
}


/*---------------------------------------
   3.2 TYPOGRAPHY
-----------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6,
h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: bold;
  color: #323232 !important;
  margin-bottom: 0;
  margin-top: 0;
}

/*h1 {
  font-size: 2.813rem;
  font-weight: 600;
}*/

h2 {
  font-size: 27px;
  font-weight: 600;
}

h3 {
  font-size: 23px;
  line-height: 2.375rem;
  font-weight: 600;
}

h4 {
  font-size: 20px;
  line-height: 2rem;
  font-weight: 600;
}

h5 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
}

h6 {
  font-size: 16px;
  line-height: 25px;
  font-weight: 700;
}


/*---------------------------------------
   3.3 BUTTONS
-----------------------------------------*/
.btn:focus,
.btn:active,
.btn,
.open .dropdown-toggle.btn {
  outline: inherit;
  border-color: inherit;
}

.newsletter-submit,
.standard-button {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 3px;
  padding: 15px 30px;
  border: 0;
  margin: 5px;
  line-height: inherit;
  -webkit-transition: all ease 0.25s;
  transition: all ease 0.25s;
  color: #fff;
}

.secondary-button {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 3px;
  padding: 15px 30px;
  border: 0;
  margin: 5px;
  border: 1px solid #727272;
  color: #323232;
  background: #ffffff;
  line-height: inherit;
  -webkit-transition: all ease 0.25s;
  transition: all ease 0.25s;
}


/* --------------------------------------
=========================================
   4. SECTION SPECIFIC CSS
=========================================
-----------------------------------------*/

/*---------------------------------------
   4.1 SECTIONS PADDING AND COLOR OVERLAY
-----------------------------------------*/

.section1,
.section2,
.section3,
.section4,
.section5,
.section6,
.section7 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.color-overlay {
  background: rgba(0, 0, 0, 0.6);
}

.light .color-overlay {
  background: rgba(255, 255, 255, 0.6);
}


.page-template-page-templatessqueeze-page-php .navbar.non-sticky {
  padding: 47px 0 30px 0;
}

.slider-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.custom-slider {
  position: relative;
  z-index: 2;
}
/*========================================
   4.2 SECTION: HOME
==========================================*/

/*---------------------------------------
   4.2.1 BASIC STYLES
-----------------------------------------*/

header .vertical-registration-form {
  margin-top: 60px;
}

header.dark .vertical-registration-form {
  margin-top: 0;
}

header.light .vertical-registration-form {
  margin-top: 0;
}

.navigation-header {
  padding-top: 47px;
  padding-bottom: 30px;
}

.intro-section {
  margin-top: 50px;
  margin-bottom: 137px;
}

.intro {
  color: #ffffff;
}

.light .intro {
  color: #323232;
}

.navbar-header img {
  max-height: 73px;
}


.navbar-inverse .navbar-nav>li>a:focus{
  color: #323232;
}

.intro-section .sub-heading {
  font-size: 20px;
  padding-right: 10%;
  padding-left: 10%;
  color: #ffffff;
  margin-top: 25px;
  line-height: 30px;
}


/*---------------------------------------
   4.2.2 NAVIGATION
-----------------------------------------*/
/* NAV RESETS */
.navbar-brand {
  padding: 0 15px;
  line-height: 50px;
}

.navbar-nav > li > a {
  padding: 28px 15px;
}

.navbar-nav > li > a:hover {
  background: inherit;
}

/* NORMAL NAVIGATION WITH SOCIAL ICON AND LOGO ONLY */
.non-sticky .navbar-nav.navbar-right:last-child {
  margin-right: 0;
}

.non-sticky .navbar-nav > li > a {
  font-size: 25px;
  padding: 0;
  padding-left: 5px;
  padding-top: 3px;
  color: #ffffff;
}

.light .non-sticky .navbar-nav > li > a {
  color: #323232;
}

.navbar .nav li{
  position: relative;
}

.navbar .nav > li ul{
  display: none;
  position: absolute;
  top: 45px;
  left: auto;
  min-width: 280px;
  right: 0;
  text-align: right;
  background-color: #fff;
  padding: 15px;
}

.navbar .nav > li ul ul{
  background-color: #fff;
    display: none;
    left: auto;
    min-width: 280px;
    padding: 15px;
    position: absolute;
    right: 250px;
    text-align: right;
    top: 0;
}

.navbar .nav li:hover > ul{
  display: block;
}

.navbar-toggle {
  margin-top: 21px;
}

@media (max-width: 1200px) {
  .navbar-inverse .navbar-collapse {
    margin-top: 14px !important;
    border-color: #333333 !important;
  }
}

@media (max-width: 767px) {
  .navbar-inverse .navbar-collapse {
    margin-top: 23px !important;
  }
}

/* STICKY NAVIGATION */
.sticky-navigation {
  min-height: 95px;
  background: #ffffff;
  -webkit-backface-visibility: hidden;
  border: 0;
  box-shadow: 0 1px 2px rgba(0,0,0,.1);
}

.sticky-navigation .navbar-header {
  padding-top: 10px;
}

.sticky-navigation .main-navigation {
  padding-top: 13px;
}

.sticky-navigation .main-navigation .current a {
  -webkit-backface-visibility: hidden;
  outline: inherit;
  position: relative;
}

.navbar li ul a,
.sticky-navigation .navbar-nav > li > a {
  font-family: Arial, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  color: #FFF;
}


/*---------------------------------------
   4.2.3 FEATURE LIST
-----------------------------------------*/

.feature-list-1,
.feature-list{
  list-style: none;
  padding-left: 0;
}

.feature-list-1 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.content .feature-list-1 {
  margin-top: 0;
}

.feature-list-1 li {
  margin-top: 25px;
  margin-bottom: 25px;
}

.feature-list-1 li .icon-container {
  width: 32px;
  height: 32px;
  border-radius: 3px;
  line-height: 32px;
  margin-right: 15px;
  margin-top: 8px;
  text-align: center;
  margin-bottom: 18px;
}

.feature-list-1 li p {

  font-size: 18px;
  line-height: 30px;
  text-align: left;
}

.dark .feature-list-1 li p {
  color: rgba(255, 255, 255, 0.8);
}


/*---------------------------------------
   4.2.4 VERTICAL REGISTRATION FORM
-----------------------------------------*/
.panel-grid .panel.widget_newsletterwidget,
.vertical-registration-form {
  background: rgba(0, 0, 0, 0.5) !important;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  max-width: 390px;
  margin: auto;
  padding-bottom: 30px;
  text-align: center;
}

.intro-section .wpcf7 {
  background: rgba(0, 0, 0, 0.5) !important;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  max-width: 390px;
  margin: auto;
  padding-bottom: 30px;
  text-align: center;
}

.light .intro-section .wpcf7 {
  background: rgba(255, 255, 255, 0.5) !important;
}

.light .vertical-registration-form {
  background: rgba(255, 255, 255, 0.5) !important;
}

header .sf-container {
  background: rgba(0, 0, 0, 0.5);
  padding: 5px;
  margin-bottom: 80px;
  margin-top: 50px;
}

.vertical-registration-form .colored-line {
  margin-top: 0;
}

.widget_newsletterwidget h3,
.vertical-registration-form h3 {
  color: #ffffff;
  text-transform: uppercase;
  margin-top: 30px;
  margin-bottom: 30px;
}

.widget_newsletterwidget{
  position: relative;
}

.panel-grid .widget_newsletterwidget h3{
  margin-top: 15px !important;
}

.widget_newsletterwidget:before{
  height: 1px;
  width: 70px;
  content: "";
  position: absolute;
  top: -1px;
  left: calc(50% - 35px);
}

.widget_newsletterwidget p{
  margin: 0;
}

.light .vertical-registration-form h3 {
  color: #000;
}

.newsletter-firstname,
.newsletter-lastname,
.newsletter-email,
.vertical-registration-form .input-box {
  width: 100%;
  margin-top: 25px;
  margin-bottom: 25px;
  height: 45px;
  background: #000000;
  border-radius: 3px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  box-shadow: inherit;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  padding: 6px 12px;
}

.intro-section .wpcf7 .wpcf7-form-control.input-box {
  width: 100%;
  margin-top: 25px;
  margin-bottom: 0;
  height: 45px;
  background: #000000;
  border-radius: 3px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  box-shadow: inherit;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  padding: 6px 12px;
  border-left-width: 3px;
}

.intro-section .wpcf7 .wpcf7-form-control.textarea-box {
  background: #000000;
  color: rgba(255, 255, 255, 0.5);
  border-radius: 3px;
  font-size: 16px;
  box-shadow: inherit;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.intro-section div.wpcf7 img.ajax-loader {
  display: none;
}

.newsletter-firstname,
.newsletter-lastname,
.newsletter-email{
  margin-top: 0;
}

.newsletter-firstname{
  margin-top: 30px;
}

.newsletter-sex{
  padding: 6px 12px;
  margin: 0 0 30px;
  width: 100%;
  color: #000 !important;
}

.light .vertical-registration-form .input-box {
  background: #fff;
}

.vertical-registration-form .input-box:focus,
.vertical-registration-form .input-box:active {
  box-shadow: inherit;
  color: #ffffff;
}

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


/*========================================
   4.3 SECTION WITH LEFT / RIGHT SCREENSHOT
==========================================*/
/*---------------------------------------
   4.3.1 BASIC STYLES
-----------------------------------------*/
.side-screenshot,
.side-screenshot2 {
  max-width: 532px;
}

.brief h2 {
  margin-top: 0;
  margin-bottom: 10px;
}

.brief p {
  margin-top: 45px;
}

/*---------------------------------------
   4.3.2 FEATURE LIST
-----------------------------------------*/

.feature-list {
  margin-top: 25px;
}

.feature-list li {
  overflow: auto;
  padding-top: 12px;
  padding-bottom: 12px;
}

.feature-list li .icon-container {
  width: 32px;
  height: 32px;
  border-radius: 3px;
  color: #ffffff;
  line-height: 32px;
  margin-right: 15px;
  margin-top: 5px;
  float: left;
  text-align: center;
}

.feature-list li .details {
  width: 89%;
  text-align: left;
}

.feature-list li .details p {
  margin-top: 5px;
}

header{
  color: #fff !important;
}

header.light .form-control,
header.light{
  color: #000 !important;
}

header h1,
header h2,
header h3,
header h4,
header h5,
header h6,
header a,
header .feature-list h6{
  color: #fff;
}

 header.light h1,
 header.light h2,
 header.light h3,
 header.light h4,
 header.light h5,
 header.light h6,
 header.light a,
 header.light .feature-list h6 {
  color: #323232;
}

.light .breadcrumbs li a {
    color: #727272;
}

header .feature-list p {
  color: rgba(255, 255, 255, 0.8);
  text-align: left;

}


/*========================================
   4.4 SECTION: FEATURES
==========================================*/
.features {
  margin-top: 35px;
}

.feature {
  margin-top: 40px;
}

.feature .icon {
  font-size: 50px;
  margin-bottom: 30px;
}

.feature h4 {
  margin-bottom: 10px;
}


/*========================================
   4.5 SECTION: PRICING TABLE
==========================================*/
.pricing-table {
  margin-top: 35px;
}

.package {
  overflow: auto;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  margin-top: 40px;
}

.package .header {
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
}

.package .header h3 {
  color: #ffffff;
}

.package-features .column-9p {
  width: 90%;
  float: left;
  text-align: left;
}

.package-features .column-1p {
  width: 10%;
  float: right;
  text-align: right;
  color: #323232;
}

.package-features .column-7p {
  width: 60%;
  float: left;
  text-align: left;
}

.package-features .column-3p {
  width: 40%;
  float: right;
  text-align: right;
}

.package-features ul li {
  overflow: auto;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-right: 35px;
  padding-left: 35px;
  border-bottom: 1px dotted #e3e3e3;
}

.package-features .bottom-row {
  overflow: auto;
  padding-top: 8px;
  padding-bottom: 17px;
  padding-right: 35px;
  padding-left: 35px;
}

.package-features .bottom-row h6 {
  padding-top: 5px;
}

.package-features .bottom-row .secondary-button,
.package-features .bottom-row .standard-button {
  margin: 0;
  padding: 7px 15px;
  vertical-align: middle;
}


/*========================================
   4.6 SECTION: VIDEO
==========================================*/
/*---------------------------------------
   4.6.1 BASIC STYLE / RESET
-----------------------------------------*/
video {
  max-width: 100%;
  height: auto;
}

iframe,
embed,
object {
  max-width: 100%;
}

.video-container {
  width: 100%;
  background: #ffffff !important;
  margin-top: 75px;
}

.video {
  background: #ffffff !important;
}


/*---------------------------------------
   4.6.2 VIDEO FEATURES
-----------------------------------------*/
.video-features {
  margin-top: 40px;
}

.video-features .inline-icon {
  padding-right: 5px;
}


/*========================================
   4.7 SECTION: SCREENSHOTS
==========================================*/
#screenshots {
  margin-top: 68px;
}

.shot {
  margin: 10px;
  border-radius: 3px;
  border: 5px solid #ffffff;
}

.shot img {
  max-width: 100%;
  width: 100%;
}

.shot img:hover {
  cursor: crosshair;
  opacity: 0.8;
}


/*========================================
   4.8 SECTION: CLIENTS AND FEEDBACKS
==========================================*/
/*---------------------------------------
   4.8.1 CLIENTS LOGO
-----------------------------------------*/
.clients {
  margin-top: 35px;
}

.client-logos li {
  display: inline-block;
  vertical-align: middle;
  margin: 15px;
}

/*---------------------------------------
   4.8.2 FEEDBACKS
-----------------------------------------*/
.testimonials {
  margin-top: 15px;
}

.single-feedback {
  position: relative;
  margin-top: 20px;
  text-align: center;
}

.single-feedback .client-pic {
  width: 48px;
  height: 48px;
  margin: auto;
  position: relative;
  margin-bottom: -24px;
  z-index: 999;
  border: 3px solid #ffffff;
  box-shadow: 0px 0px 0px 3px #f7f8fa;
}

.single-feedback .client-pic img {
  max-width: 100%;
}

.single-feedback .box {
  margin-right: 15px;
  margin-left: 15px;
  border-radius: 3px;
  position: relative;
  background: #f7f8fa;
  padding-top: 20px;
  -webkit-box-shadow: 0px 1px 0px 0px rgba(229, 229, 229, 0.75);
  -moz-box-shadow: 0px 1px 0px 0px rgba(229, 229, 229, 0.75);
  box-shadow: 0px 1px 0px 0px rgba(229, 229, 229, 0.75);
}

.single-feedback .box .message {
  padding: 25px;
  font-style: italic;
}

.single-feedback .box:after,
.single-feedback .box:before {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.single-feedback .box:after {
  border-color: rgba(247, 248, 250, 0);
  border-top-color: #f7f8fa;
  border-width: 15px;
  margin-left: -15px;
}

.single-feedback .box:before {
  border-color: rgba(229, 229, 229, 0);
  border-top-color: #e5e5e5;
  border-width: 16px;
  margin-left: -16px;
}

.single-feedback .client-info {
  margin-top: 30px;
}

.single-feedback .client-info .client-name {
  line-height: 20px;
}

.single-feedback .client-info .company {
  font-size: 13px;
}


/*========================================
   4.9 SECTION: CALL TO ACTION
==========================================*/
/*---------------------------------------
   4.9.1 CALL TO ACTION WITH TEXT/BUTTON
-----------------------------------------*/
.cta-section {
  background-image: url(../images/bg-image-2.jpg);
  background-size: cover;
  padding: 0 !important;
  text-align: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  z-index: 999;
  position: relative;

}

.cta-section h4 {
  color: #ffffff;
}

.cta-section h2 {
  color: #ffffff;
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 40px;
}

.cta-section p{
  color: rgba(255, 255, 255, .8);
}

.cta-section h3 {
  color: #ffffff;
}

.cta-section .color-overlay {
  padding-top: 125px;
  padding-bottom: 125px;
}


/*---------------------------------------
   4.9.2 SUBSCRIBE FORM
-----------------------------------------*/
.subscribe-section {
  margin-top: 75px;
}


.subscription-form .input-box {
  width: 300px;
  margin-top: 25px;
  margin-bottom: 25px;
  height: 55px;
  border-radius: 3px;
  font-size: 16px;
  color: #000000;
  box-shadow: inherit;
}

.subscription-success,
.subscription-error {
    color: #FFFFFF;
}

/*========================================
   4.10 SECTION: CONTACT US
==========================================*/
/*---------------------------------------
   4.10.1 BASIC STYLES
-----------------------------------------*/
.contact-us {
  padding-top: 75px;
  padding-bottom: 75px;
}

.contact-us .heading {
  margin-bottom: 10px;
}

.contact-link {
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 50px;
  font-family: 'Raleway', sans-serif;
  cursor: pointer;
}

.contact-link:hover {
  text-decoration: none;
}

.contact-link span {
  margin-right: 10px;
}


/*---------------------------------------
   4.10.2 CONTACT FORM
-----------------------------------------*/
.contact-form, .wpcf7-form{
  margin-top: 25px;
}

.contact-form .success,
.contact-form .error,
.wpcf7-form .success,
.wpcf7-form .error {
  display: none;
}

.contact-form .input-box,
.contact-form .textarea-box,
.wpcf7-form .input-box,
.wpcf7-form .textarea-box {
  margin-bottom: 15px;
  margin-top: 15px;
  outline: 0;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #e3e3e3;
  border-radius: 3px;
  color: #727272;
  padding-left: 12px;
  font-size: inherit;
  line-height: normal;
}

.contact-form .input-box,
.wpcf7-form .input-box {
  min-height: 50px;
}

.contact-form .textarea-box,
.wpcf7-form .textarea-box {
  min-height: 200px;
  -webkit-backface-visibility: hidden;
}

.contact-form .input-box:active,
.contact-form .textarea-box:active,
.contact-form .input-box:focus,
.contact-form .textarea-box:focus,
.wpcf7-form .input-box:active,
.wpcf7-form .textarea-box:active,
.wpcf7-form .input-box:focus,
.wpcf7-form .textarea-box:focus {
  color: #323232;
}

.contact-form .btn,
.wpcf7-form .btn {
  margin-top: 25px;
}


/*========================================
   4.11 SECTION: FOOTER
==========================================*/
footer {
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
}

footer .logos {
  margin: 0 0 30px;
  border-bottom: 1px solid #545454;
  padding: 0 0 30px;
}

footer .badges {
  margin: 0 0 30px;
}

footer .awareness {
  margin: 40px 0 0;
}

footer .awareness a {
  margin: 0 7px;
}

footer .awareness a:first-child img {
  margin-top: -15px;
}

@media (max-width: 427px) {
  footer .awareness a:first-child img {

  }
}

footer .badges a {
  margin: 0 7px;
}

footer .badges img {
  width: 110px;
}

footer .logos a {
  margin: 0 20px;
}

footer .logos a:first-child {
  margin-left: 12px;
}

@media (max-width: 427px) {
  footer .logos a:first-child img {
    margin-bottom: 15px;
  }
}

footer .logos a img {
  width: 160px;
}

footer .logos a:last-child img {
  width: 150px;
}

footer .footer-menu {
  list-style: none;
  padding: 15px 0 0;
  border-top: 1px solid #545454;
  margin: 10px 0 0;
  display: inline-block;
  width: 100%;
}

footer .footer-menu li {
  display: inline-block;
  margin: 0 7px;
}

footer .footer-menu li a {
  color: #e41f49;
}

footer .footer-menu li a:hover {
  text-decoration: none;
}

.footer-logo {
  max-width: 180px;
  margin: auto;
  display: none;
}

.copyright {
  margin-top: 15px;
  margin-bottom: 15px;
}

.social-icons {
  padding-left: 0;
}

.social-icons li {
  display: inline;
  margin: 2px;
}

.social-icons li a {
  font-size: 25px;
  color: #919191;
}

.social-icons li a:hover {
  text-decoration: none;
}

.content{
  width: 100%;
  overflow: hidden;
  margin: 45px 0;
}

.landx-onepage .content{
  margin: 0;
}

section{
  padding-top: 90px;
  padding-bottom: 90px;
}

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

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

.sub-heading{
  width: 100%;
  overflow: hidden;
}

.panel-grid .panel {
  background: none!important;
}

.panel-grid .panel {
  box-shadow: none!important;
}

header .button-container {
    margin-bottom: 25px;
    margin-top: 75px;
}

.client-logos{
  margin-top: 35px;
  text-align: center;
}


.search-submit,
.secondary-button {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 3px;
  padding: 15px 30px;
  border: 0;
  margin: 5px;
  border: 1px solid #727272;
  color: #323232;
  background: #ffffff;
  line-height: inherit;
  -webkit-transition: all ease 0.25s;
  transition: all ease 0.25s;
}

.secondary-button-white {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 3px;
  padding: 14px 30px;
  border: 0;
  margin: 5px;
  border: 1px solid #727272;
  color: #ffffff;
  background: transparent;
  line-height: inherit;
  border: 1px solid rgba(255,255,255,0.5);
  -webkit-transition: all ease 0.25s;
  transition: all ease 0.25s;
}

.secondary-button-white:hover {
    border: 1px solid rgba(255,255,255,1);
    color: #ffffff;
}

.bypostauthor{
  font-style: italic;
}

.screen-reader-text{
  display: block;
}

.search-field{
  padding: 5px 15px;
  margin-top: 1px;
}

.search-submit{
  color: #fff;
  padding: 6px 15px;
  border: none;
  font-size: 14px;
  margin: 0;
}

.posts-blog-page {
  display: block;
  width: 100%;
  overflow: hidden;
}

.posts-blog-page div {
  list-style: none;
}

.posts-blog-page div a {
  font-size: 14px;
}

.sidebar {
  padding: 15px;
  margin: 15px 0 20px;
  box-shadow: 0 1px 2px rgba(0,0,0,.1);
}

.sidebar:empty {
  display: none;
}

#pg-949-0 .panel-grid-cell {
  padding-right: 0 !important;
}

.page-id-949 .landx-page,
.blog-posts {
  padding: 0;
}

.widget_siteorigin-panels-post-content {
  background: #FFF;
  box-shadow: 0 1px 2px rgba(0,0,0,.1);
  margin: 15px 0 0 !important;
  padding: 15px;
}

.widget_siteorigin-panels-post-content h1 {
  font-size: 1.8rem;
  line-height: 2rem;
  font-weight: bold;
}

.widget_siteorigin-panels-postloop {
  background: #FFF;
  box-shadow: 0 1px 2px rgba(0,0,0,.1);
  margin: 15px 0 0;
  padding: 15px;
}

.post-title-row {
  padding: 0 15px;
}

.post-title-block {
  background: #FFF;
  box-shadow: 0 1px 2px rgba(0,0,0,.1);
  margin: 15px 0 0;
  padding: 15px;
}

.post-title-block h1 {
  font-size: 1.8rem;
  line-height: 2rem;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: bold;
}

.widget_siteorigin-panels-postloop .post {
  border: none;
  border-bottom: 1px solid #e6e5e5;
  margin: 0 0 25px;
  padding: 0 0 30px;
  display: inline-block;
  width: 100%;
}

@media (max-width: 767px) {
  .widget_siteorigin-panels-postloop .post {
    padding: 0 0 25px;
  }
}

.widget_siteorigin-panels-postloop .post .featured-image {
/*  padding: 0;
  margin: 0 15px 15px 0;
  float: left;
  max-width: 40%;*/
  padding: 0 0 0 15px;
}

@media (max-width: 767px) {
  .widget_siteorigin-panels-postloop .post .featured-image {
    padding: 0 15px;
  }
}

.widget_siteorigin-panels-postloop .post.has-video .featured-image a {
  position: relative;
  display: block;
}

.widget_siteorigin-panels-postloop .post.has-video .featured-image a:before {
  content: '';
  position: absolute;
  background: url(../images/youtube-icon.png) no-repeat center center;
  background-size: 50px;
  width: 100%;
  height: 100%;
  margin-top: 0;
}

.widget_siteorigin-panels-postloop .post .post-contents {
  padding: 0 15px;
}

.widget_siteorigin-panels-postloop .post .post-contents .post-description {
  text-align: justify;
}

.widget_siteorigin-panels-postloop .post h2 {
  font-size: 22px;
  font-weight: bold;
  line-height: 25px;
  margin: 0 0 15px;
  font-family: 'Source Sans Pro', sans-serif;
}

@media (max-width: 767px) {
  .widget_siteorigin-panels-postloop .post h2 {
    margin: 15px 0;
  }
}

.widget_siteorigin-panels-postloop .post .colored-line {
  display: none;
}

.navigation {
  text-align: center;
  display: inline-block;
  width: 100%;
  margin: 0 0 20px 0;
}

.navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.navigation ul li {
  display: inline-block;
  margin: 0 2px 5px;
}

.navigation ul li a {
  cursor: pointer;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 15px;
  border: 1px solid #CCC;
  color: #999;
  display: block;
}

.navigation li a:hover,
.navigation li.active a {
  background-color: #FFF;
  border: 1px solid #000796;
  color: #000594 !important;
}

.post-meta .meta-category {
  margin: 5px 0 0;
  background: #FFF;
  padding: 0;
}

.post-meta .meta-category span {
  display: none;
}

.post-meta .meta-category a {
  color: #121794;
  font-size: 0.9rem;
  border: 1px solid #00057d;
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 5px 5px 0;
  display: inline-block;
}

.post .tags {
  border-bottom: none;
  padding: 0;
  margin: 10px 0 0;
}

.post .tags a {
  color: #3f8041;
  font-size: 0.9rem;
  border: 1px solid #3f8041;
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 5px 5px 0;
  display: inline-block;
}

.single .post-contents > h1 {
  font-size: 30px;
}

.single-post .post-meta {
  background: #f7f7f7;
  margin: 20px 0 0;
}

.single-post .meta-author,
.single-post .meta-date,
.single-post .meta-category {
  background: transparent;
  margin: 0 !important;
}

.single-post .meta-author img {
  border-radius: 50%;
  max-width: 40px;
  margin: 0 5px 0 0;
}

.single-post .meta-author a {
  color: #121794;
}

.single-post .tags {
  max-width: 600px;
  margin: 0 auto 30px;
  border-bottom: none;
  padding: 0;
}

.single-post .tags a {
  color: #3f8041;
  font-size: 0.9rem;
  border: 1px solid #3f8041;
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 5px 10px 0;
  display: inline-block;
}

.single-post .fb-comments {
  margin: 0 auto;
  max-width: 600px;
  display: block;
}

.sidebar .widget.widget_video_reviews_widget {
  padding: 0;
}

.sidebar .widget .widget-title {
  border-bottom: none;
  margin: 0;
}

.sidebar .video-reviews-widget {
  margin: 0;
}

.sidebar .video-reviews-widget .video-review-listing {
  list-style: none;
  display: inline-block;
  position: relative;
  padding: 0;
  margin: 0 0 10px;
}

.sidebar .video-reviews-widget .video-review-listing:last-child {
  margin: 0;
}

@media (min-width: 667px) and (max-width: 992px) {
  .sidebar .video-reviews-widget .video-review-listing,
  .sidebar .video-reviews-widget .video-review-listing:last-child {
    width: 50%;
    vertical-align: top;
    width: 47%;
    width: calc(50% - 20px);
    margin: 0 10px 20px 10px;

  }
}

.sidebar .widget_video_games_reviews_widget .widget-title {
  text-align: center;
  line-height: normal;
  padding-bottom: 15px;
}

.sidebar .video-reviews-widget .video-review-listing .image {
  display: inline-block;
  float: left;
  width: 100%;
  margin: 0 10px 0 0;
}

.sidebar .video-reviews-widget .video-review-listing .image:before {
  content: '';
  position: absolute;
  background: url(../images/youtube-icon.png) no-repeat center center;
  background-size: 50px;
  width: 100%;
  height: 100%;
  margin-top: -15px;
}

.sidebar .video-reviews-widget .video-review-listing a:hover {
  text-decoration: none;
  color: #121794;
}

.sidebar .video-reviews-widget .video-review-listing .post-title-wrap {
  background: rgba(0,0,0,.9);
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px 10px;
  color: #FFF;
}

.sidebar .video-reviews-widget .video-review-listing .post-title {
  line-height: 1rem;
  vertical-align: middle;
  display: inline;
  font-size: 1.3rem;
  color: #FFF !important;
}

#search-filters {
  margin: 15px 0 0;
  display: inline-block;
  width: 100%;
}

.filter {
  float: left;
  margin: 0 10px 0 0;
}

.filter select {
  max-width: 160px;
  height: 30px;
}

#search-filters select {
  background-color: #f9f8f8;
  border: 1px solid #323232;
  color: #323232;
  height: 37px;
  width: 100%;
  cursor: pointer;
  display: block;
  position: relative;
  padding: 0 3.125em 0 0.625em;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url(../images/down-arrow.svg) no-repeat center right;
  background-position-x: calc(100% - 7px);
  background-size: 10px;
  background-color: #FFF;
  border: 1px solid #323232;
  border-radius: 3px;
  padding-right: 25px;
}

.filter.keyword-search {
  position: relative;
}

.filter.keyword-search .search-term {
  margin: 0;
  min-width: 65%;
}

.filter.keyword-search .search-term input {
  border: 1px solid #323232;
  background-color: #f9f8f8;
  border-radius: 3px;
  padding: 5px 10px;
  padding-right: 45px;
}

.filter.keyword-search .search-term input::-webkit-input-placeholder { /* WebKit, Blink, Edge */
  color: #323232;
}

.filter.keyword-search .search-term input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: #323232;
  opacity: 1;
}

.filter.keyword-search .search-term input::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #323232;
  opacity: 1;
}

.filter.keyword-search .search-term input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #323232;
}

.filter.keyword-search button {
  border: none;
  border-radius: 0 3px 3px 0;
  padding: 5px 13px 6px;
  background: #000000;
  color: #FFF;
  position: absolute;
  right: 0;
  top: 0;
}

#search-filters .clear-filters a {
  float: left;
  color: #db1b47;
  line-height: 35px;
}

.single-post .post-contents,
.page-id-1781 .post-contents,
.page-id-1725 .post-contents,
.left-column-wrapper .post-contents {
  background: #FFF;
  padding: 15px;
  margin: 15px 0;
  box-shadow: 0 1px 2px rgba(0,0,0,.1);
}

.page-id-1781 .post-contents h1,
.page-id-1725 .post-contents h1,
.left-column-wrapper .post-contents h1 {
  text-align: center !important;
  margin: 0 0 20px;
}

.single-post .post-description,
.page-id-1781 .post-contents .panel-layout,
.page-id-1725 .post-contents .panel-layout,
.left-column-wrapper .post-contents .panel-layout {
  max-width: 600px;
  margin: 0 auto;
}

.page-id-1781 .landx-page,
.page-id-1725 .landx-page,
.page-id-2032 .landx-page,
.page-id-17439 .landx-page,
.page-template-page-left-column-type .landx-page {
  margin: 0 !important;
}

.single-post .post-description a:link {
  color: #bc0d33;
  text-decoration: underline;
}

.single-post .post-description a:hover {
  text-decoration: none;
}

.single-post .post-description a:visited {
  color: #1a0dab;
  text-decoration: underline;
}

.single-post .post-description a.external {
  text-decoration: none;
}

.single-post .post-description a.external:hover {
  text-decoration: underline;
}

.single .post-description h2,
.single .post-contents .panel-grid h2,
.page .post-description h2,
.page .post-contents .panel-grid h2 {
  font-size: 27px;
  line-height: 2.375rem;
}

.single .post-description h3,
.single .post-contents .panel-grid h3,
.page .post-description h3,
.page .post-contents .panel-grid h3 {
  font-size: 23px;
}

.single .post-description h4,
.single .post-contents .panel-grid h4,
.page .post-description h4,
.page .post-contents .panel-grid h4 {
  font-size: 20px;
}

.single .post-description h5,
.single .post-contents .panel-grid h5,
.page .post-description h5,
.page .post-contents .panel-grid h5 {
  font-size: 18px;
}

.single .post-description h2,
.single .post-description h3,
.single .post-description h4,
.single .post-description h5 {
  margin: 20px 0;
}

.single .post-description h2 > span,
.single .post-contents .panel-grid h2 > span,
.page .post-description h2 > span,
.page .post-contents .panel-grid h2 > span,
.single .post-description h3 > span,
.single .post-contents .panel-grid h3 > span,
.page .post-description h3 > span,
.page .post-contents .panel-grid h3 > span,
.single .post-description h4 > span,
.single .post-contents .panel-grid h4 > span,
.page .post-description h4 > span,
.page .post-contents .panel-grid h4 > span,
.single .post-description h5 > span,
.single .post-contents .panel-grid h5 > span,
.page .post-description h5 > span,
.page .post-contents .panel-grid h5 > span {
  font-weight: bold !important;
}

.single-post .post-description h2 strong,
.single-post .post-description h3 strong {
  color: #333333;
}

a.external_icon {
  background: none;
  padding-right: 0;
  text-decoration: none;
}

a.external_icon:after {
  font-family: FontAwesome;
  content: "\f08e";
  display: inline-block;
  padding-left: 5px;
  vertical-align: middle;
  font-size: 0.8em;
}

.video-holder {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  background: #000;
}

.video-holder iframe, .video-holder embed, .video-holder object {
  height: 100% !important;
  width: 100% !important;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  position: absolute;
}

.single-video_review .sidebar {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.single-video_review .sidebar .widget {
  padding: 15px !important;
  background: #FFF;
  margin: 15px 0;
  box-shadow: 0 1px 2px rgba(0,0,0,.1);
}

.single-video_review .video-wrapper {
  margin: 15px 0 0;
}

.single-video_review .sidebar .bookmaker_info .widget-title {
  padding: 0;
}

.single-video_review .sidebar .widget .field {
  margin: 0 0 5px;
}

.single-video_review .sidebar .widget .field:last-child {
  margin: 0;
}

.single-video_review .sidebar .widget .field.field-casino-game {
  padding: 0 0 10px;
}

.single-video_review .sidebar .widget .field.field-casino-game:last-child {
  padding: 0;
}

.single-video_review .sidebar .widget_casino_info_games .tooltip.left {
  margin-left: -9px;
}

.single-video_review .sidebar .widget_casino_info_games .tooltip .tooltip-inner {
  padding: 10px;
}

.single-video_review .sidebar .widget_casino_info_games .tooltip p {
  color: #FFF;
  margin: 0;
  font-size: 14px;
}

.single-video_review .sidebar .widget_casino_info_games .icon {
  float: left;
  width: 20px;
  height: 20px;
  vertical-align: unset;
  margin: 3px 7px 0 0;
}

.single-video_review .sidebar .widget_casino_info_games .icon.roulette {
  background: url(../images/game-icons/roulette.png) no-repeat;
  background-size: 20px 20px;
}

.single-video_review .sidebar .widget_casino_info_games .icon.blackjack {
  background: url(../images/game-icons/pair-of-cards.png) no-repeat;
  background-size: 20px 20px;
}

.single-video_review .sidebar .widget_casino_info_games .icon.slots {
  background: url(../images/game-icons/slot-machine.png) no-repeat;
  background-size: 20px 20px;
}

.single-video_review .sidebar .widget_casino_info_games .icon.fourcolors {
  background: url(../images/game-icons/four-aces.png) no-repeat;
  background-size: 20px 20px;
}

.single-video_review .sidebar .widget_casino_info_games .icon.onecard {
  background: url(../images/game-icons/ace-of-spades.png) no-repeat;
  background-size: 20px 20px;
}

.single-video_review .sidebar .widget_casino_info_games .icon.twocards {
  background: url(../images/game-icons/pair-of-aces.png) no-repeat;
  background-size: 20px 20px;
}

.single-video_review .sidebar .widget_casino_info_games .icon.threecards {
  background: url(../images/game-icons/three-cards.png) no-repeat;
  background-size: 20px 20px;
}

.single-video_review .sidebar .widget_casino_info_games .icon.fivecards {
  background: url(../images/game-icons/five-cards.png) no-repeat;
  background-size: 20px 20px;
}

.single-video_review .sidebar .widget_casino_info_games .icon.dices {
  background: url(../images/game-icons/dices.png) no-repeat;
  background-size: 20px 20px;
}

.single-video_review .sidebar .widget_casino_info_games .icon.threedices {
  background: url(../images/game-icons/three-dices.png) no-repeat;
  background-size: 20px 20px;
}

.single-video_review .sidebar .widget_casino_info_games .icon.wheel {
  background: url(../images/game-icons/fortune-wheel.png) no-repeat;
  background-size: 20px 20px;
}

.single-video_review .sidebar .widget_casino_info_games .icon.balls {
  background: url(../images/game-icons/lottery-machine.png) no-repeat;
  background-size: 20px 20px;
}

.single-video_review .sidebar .widget .field.field-casino-game .title {
  font-size: 20px;
  margin: 0 0 5px;
}

.single-video_review .sidebar .widget.widget_casino_bonus {
  background: transparent;
  box-shadow: none;
  padding: 0 !important;
}

.single-video_review .sidebar .widget.widget_casino_bonus .cta-button a {
  margin: 0 0 10px;
  padding: 30px;
  font-size: 23px;
  font-weight: bold;
  white-space: normal;
  line-height: 25px;
  position: relative;
  text-align: center;
}

.single-video_review .sidebar .widget_casino_bonus .icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: url(../images/euros-money-bag.png) no-repeat;
  background-size: 50px 50px;
  vertical-align: middle;
  position: absolute;
  top: 51%;
  left: 15px;
  transform: translate(-50%, -50%);
  text-align: center;
}

.single-video_review .sidebar .widget_casino_bonus span {
  padding-left: 42px;
  display: inline-block;
}

.single-video_review .casino-review-terms {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  line-height: 10px;
}

.single-video_review .casino-review-terms a {
  color: #000;
  -webkit-transition: all ease 0.25s;
  transition: all ease 0.25s;
}

.single-video_review .casino-review-terms a:hover {
  color: #e41f49;
  text-decoration: none;
}

.single-video_review .cta-button .button-inner {
  display: inline-block;
  position: relative;
}

.single-video_review .sidebar .widget .field.field-casino-game .title {
  font-size: 20px;
  margin: 0 0 5px;
}

.single-video_review .sidebar .widget .field span {
  display: block;
  text-align: justify;
}

.single-video_review .sidebar .widget .field .title {
  font-weight: bold;
}

.single-video_review .sidebar .widget .flags {
  list-style: none;
  padding: 0;
  margin: 0 0 0 -3px;
  display: inline-block;
  max-width: 300px;
}

.single-video_review .sidebar .widget .flags li {
  display: inline-block;
  padding: 0;
  float: left;
  margin: 0 2px -6px;
}

.single-video_review .sidebar .widget .flags .flag {
  display: inline-block;
  width: 20px;
  height: 16px;
  background-position: left -2px;
  background-size: 20px 40px;
}

.single-video_review .sidebar .widget .field-rating span {
  display: inline;
}

.single-video_review .sidebar .widget table.profit-margin {
  border: 1px solid #9E9E9E;
  margin: 0;
}

.single-video_review .sidebar .widget table.profit-margin td {
  background: #f7f6f6;
  border-right: 1px solid #8c8c8c;
  border-bottom: 1px solid #9E9E9E;
  padding: 0 5px;
  border-top: 1px solid #9E9E9E !important;
  color: #000;
}

.single-video_review .sidebar .widget table.profit-margin .td2 {
  background: #eaeaea;
}

.single-video_review .sidebar .widget table.profit-margin .total td {
  background: #eaf9f4;
}

.single-video_review .post-description {
  text-align: justify !important;
}

.single-video_review .post-contents h2 {
  font-weight: bold;
}

.vegashero_games .glsr-default .glsr-review-date,
.single-video_review .glsr-default .glsr-review-date {
  display: block;
}

.vegashero_games .glsr-default .glsr-review-author:before,
.single-video_review .glsr-default .glsr-review-author:before {
  display: none;
}

.vegashero_games .glsr-ltr .glsr-default .glsr-review-rating,
.single-video_review .glsr-ltr .glsr-default .glsr-review-rating {
  margin-right: 0;
}

.vegashero_games .glsr-default .glsr-review-date,
.vegashero_games .glsr-ltr .glsr-default .glsr-review-rating,
.vegashero_games .glsr-default .glsr-review .glsr-review-content,
.single-video_review .glsr-default .glsr-review-date,
.single-video_review .glsr-ltr .glsr-default .glsr-review-rating,
.single-video_review .glsr-default .glsr-review .glsr-review-content {
  margin-bottom: 10px;
}

.vegashero_games .glsr-ltr .glsr-default .glsr-review-rating,
.single-video_review .glsr-ltr .glsr-default .glsr-review-rating {
  margin-bottom: 5px;
}

.vegashero_games .glsr-default .glsr-review-date,
.single-video_review .glsr-default .glsr-review-date {
  font-size: 14px;
}

.vegashero_games .glsr-ltr .glsr-default .glsr-review-content p {
  margin-bottom: 0;
  font-weight: bold;
}

.single-video_review .glsr-ltr .glsr-default .glsr-review-content p {
  margin-bottom: 0;
}

.vegashero_games .glsr-form .grecaptcha-badge,
.single-video_review .glsr-form .grecaptcha-badge {
  display: none;
}

.vegashero_games .glsr-default .glsr-review-author,
.vegashero_games .glsr-default .glsr-review-ip-address,
.single-video_review .glsr-default .glsr-review-author,
.single-video_review .glsr-default .glsr-review-ip-address {
  font-size: 14px;
  vertical-align: middle;
  margin: 0;
}

.vegashero_games .glsr-default .glsr-review-ip-address,
.single-video_review .glsr-default .glsr-review-ip-address {
  display: inline-block;
  margin-left: 5px;
}

.glsr-review-ip-address span {
  vertical-align: middle;
}

.glsr-review-ip-address img {
  max-width: 20px;
  vertical-align: middle;
  margin: 0 3px;
}

.vegashero_games .glsr-default .glsr-review {
  margin-bottom: 30px;
}

.glsr-form-wrap .glsr-has-error .invalid-feedback {
  color: red;
}

.glsr-form-wrap .glsr-has-error .form-control.is-invalid {
  border: 1px solid red;
}

.glsr-form-wrap .glsr-form-message {
  margin: 20px 0 20px;
}

.glsr-form-wrap .glsr-form-message.glsr-has-errors {
  color: red;
}

.page-betting-listing .panel-row-style.featured.bookmaker {
  background: #eaf7db;
  padding: 50px 30px 30px;
}

.page-betting-listing .panel-row-style.bookmaker {
  background: #fff;
  padding: 50px 30px 30px;
  box-shadow: 0 1px 2px rgba(0,0,0,.1);
  margin: 0;
  position: relative;
}

.page-betting-listing .panel-row-style.featured.bet365,
.page-betting-listing .panel-row-style.featured.unibet {
  border: 1px solid #017b5b;
}

.page-betting-listing .panel-row-style.featured.betfair {
  border: 1px solid #ffa200;
}

.page-betting-listing .panel-row-style.featured.nordicbet {
  border: 1px solid #006eb7;
  background: #FFF;
}

.page-betting-listing .panel-row-style.featured:before {
  content: '';
  position: absolute;
  background: url(../images/ribbon_achievement.png) no-repeat;
  width: 100px;
  height: 100px;
  display: block;
  background-size: 71px;
  top: 27px;
  left: 1px;
}

.page-betting-listing .bookmaker .widget_sow-editor {
  float: left;
  margin: -38px 0px 6px 0 !important;
  width: 48%;
}

.page-betting-listing .bookmaker.bet365 .widget_sow-editor {
  margin: -38px 0px 6px 0 !important;
}

.page-betting-listing .bookmaker .widget_sow-editor h3 {
  margin: 0 0 10px;
}

.page-betting-listing .bookmaker .widget_sow-button {
  display: inline-block;
  width: 100%;
  margin: 0;
}

.page-betting-listing .bookmaker .widget_sow-button a {
  width: 100% !important;
}

.page-betting-listing .bookmaker .widget_sow-editor span {
  word-break: break-all !important;
}

@media (max-width: 768px) {
  .page-betting-listing .bookmaker .widget_sow-editor,
  .page-betting-listing .bookmaker.bet365 .widget_sow-editor {
    width: 48%;
    margin: 0 0 10px 0 !important;
  }
}

@media (max-width: 480px) {
  .page-betting-listing .bookmaker .widget_sow-editor,
  .page-betting-listing .bookmaker.bet365 .widget_sow-editor {
    width: 100%;
    margin: 0 0 10px 0 !important;
  }
}

.page-id-2248 .post-contents {
  background: #FFF;
  padding: 15px;
  margin: 15px 0;
  box-shadow: 0 1px 2px rgba(0,0,0,.1);
}

.left-column,
.left-column-wrapper {
  padding-right: 0;
}

.home .landx-page,
.page-id-2248 .landx-page {
  padding: 0;
}

.archive .left-column {
  background: #FFF;
  padding: 15px;
  margin: 15px 0;
  box-shadow: 0 1px 2px rgba(0,0,0,.1);
}

.archive .left-column .post {
  border: none;
  border-bottom: 1px solid #e6e5e5;
  margin: 0 0 25px;
  padding: 0 0 30px;
  display: inline-block;
  width: 100%;
  text-align: left;
}

@media (max-width: 767px) {
  .archive .left-column .post {
    padding: 0 0 25px;
  }
}

.archive .left-column .post .featured-image,
.archive .left-column .post .post-contents {
  padding: 0 15px;
}

.archive .left-column .post.has-video .featured-image a {
  position: relative;
  display: block;
}

.archive .left-column .post.has-video .featured-image a:before {
  content: '';
  position: absolute;
  background: url(../images/youtube-icon.png) no-repeat center center;
  background-size: 50px;
  width: 100%;
  height: 100%;
  margin-top: 0;
}

.archive .left-column .post h2 {
  font-size: 1.6rem;
  line-height: 2rem;
  margin: 0 0 15px;
}

@media (max-width: 767px) {
  .archive .left-column .post h2 {
    margin: 15px 0;
  }
}

.archive .left-column h1 {
  font-size: 1.8rem;
  line-height: 2rem;
  font-weight: bold;
  margin: 0 0 20px;
}

.siteorigin-panels .left-column {
  /*padding: 0 15px;*/
  margin: 0 0 15px 0;
}

.siteorigin-panels.single-post .left-column {
  padding-right: 0;
}

.perch-button {
  background: none !important;
  padding-right: 0;
}

.single-video_review .left-column {
  padding-right: 15px;
}

.single .post-description {
  text-align: justify !important;
}

.single-post .post-description .yuzo_related_post a:link,
.single-post .post-description .yuzo_related_post a:visited {
  color: #333 !important;
  text-decoration: none !important;
  font-weight: bold;
}

.single-post .post-description .yuzo_related_post a:hover {
  text-decoration: underline !important;
}

.single-post .post-description .yuzo_related_post .relatedthumb:hover {
  background: transparent !important;
}

.single-post .post-description .yuzo_related_post .yuzo-img {
  border: 1px solid #b1b1b1;
}

.post-contents .bookmaker.first {
  margin: 0 0 20px;
}

.post-contents .bookmaker.first .sow-image-container img {
  margin: 0 auto;
  max-width: 330px;
}

.post-contents .so-widget-sow-button a:link,
.post-contents .so-widget-sow-button a:visited {
  color: #FFF !important;
  text-decoration: none;
  width: 55%;
}

.post-contents .bookmaker.other {
  margin: 0 0 20px;
}

.post-contents .bookmaker.other .so-widget-sow-button a:link {
  width: 100%;
}

.page-casino-games .so-panel .so-widget-sow-editor h2 {
  margin: 20px 0;
}

@media (min-width: 1201px) {
  .home .sow-features-list .sow-features-feature .sow-icon-container {
    height: auto !important;
    width: auto !important;
  }

  .home .sow-features-list .sow-features-feature .sow-icon-container [class^="sow-icon-"],
  .home .sow-features-list .sow-features-feature .sow-icon-container .sow-icon-image {
    position: relative !important;
  }


  .home .zaidimai .sow-icon-image {
    height: 208px !important;
    width: 346px !important;
  }

}

.pum-theme-4002 .pum-title {
  color: #FFF !important;
  margin: 40px 0 0 !important;
  font-weight: bold !important;
 }

.pum-theme-4002 .pum-container {
  background-color: #0b1423 !important;
}

.pum-theme-4002 .so-widget-sow-button {
  margin: 0 0 80px !important;
}

.pum-theme-4002 .so-widget-sow-button a {
  background: #f50 !important;
  width: 80% !important;
  font-weight: bold !important;
  font-size: 20px !important;
  box-sizing: border-box;
  font-size: 1em;
  box-shadow: rgba(255, 255, 255, 0.2) 0px 1px 0px inset, rgba(0, 0, 0, 0.067) 0px 1px 2px;
  text-shadow: rgba(0, 0, 0, 0.05) 0px 1px 0px;
  color: rgb(255, 255, 255);
  padding: 1em 2em;
  background: -webkit-gradient(linear, 0% 100%, 0% 0%, from(rgb(0, 0, 1)), to(rgb(0, 0, 52)));
  border-width: 1px;
  border-style: solid;
  border-image: initial;
  border-color: rgb(5, 5, 5) rgb(0, 0, 0) rgb(0, 0, 0);
  border-radius: 0.25em;
}

.archive .left-column {
  margin: 15px auto;
}

.sidebar .widget {
  padding: 0 !important;
}

@media (min-width: 780px) AND (max-width: 1200px) {
  #pg-652-0> .panel-row-style {
    padding: 0 !important;
  }
}

@media (max-width: 992px) {
  .page-betting-listing.siteorigin-panels .post-contents h3 {
    margin: 0 0 20px;
  }

  .page-betting-listing .post-contents h2 {
    margin: 0;
  }

  .page-betting-listing .bookmaker .widget_sow-editor h3 {
    text-align: left !important;
  }

  .page-betting-listing.siteorigin-panels .post-contents .panel-layout {
    padding: 0;
  }

  .page-betting-listing .panel-row-style.bookmaker {
    margin: 0;
  }

  .sidebar {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .landx-page .post-contents h3 {
    margin: 15px 0 15px;
    font-size: 24px;
  }

  .landx-page .post-contents h2 {
    margin: 20px 0;
    font-size: 30px;
  }

  .home .landx-page .post-contents h3 {
    font-size: 16px;
  }

  .page-betting-listing .landx-page .post-contents h2 {
    margin: 0;
  }

  .landx-page .widget_siteorigin-panels-postloop .post h2 {
    margin-top: 0;
  }

  .siteorigin-panels .post-contents .panel-layout {
    padding: 15px 15px 5px;
  }

  .siteorigin-panels .post-contents .bookmaker .sow-image-container img {
    max-width: 100% !important;
  }

  .landx-page {
    padding-bottom: 30px;
  }
  .page-id-16442.siteorigin-panels .post-contents .panel-layout,
  .page-id-15132.siteorigin-panels .post-contents .panel-layout,
  .page-id-93749.siteorigin-panels .post-contents .panel-layout,
  .page-id-2032.siteorigin-panels .post-contents .panel-layout,
  .page-id-17439.siteorigin-panels .post-contens .panel-layout {
    padding: 0;
  }

  .page-id-2032 .post-title-block,
  .page-id-17439 .post-title-block {
    margin-right: 0;
  }

  .archive .left-column {
    margin: 15px;
  }

  .landx-page .widget_siteorigin-panels-postloop .post h2 {
    margin: 20px 0;
  }
}

@media (max-width: 480px) {
  .siteorigin-panels .post-contents .alignright,
  .siteorigin-panels .post-contents .alignleft {
    float: none;
    padding-left: 0;
    padding-right: 0;
  }

  .landx-page .post-contents h2,
  .landx-page .post-contents h3 {
    text-align: center !important;
  }

  .siteorigin-panels .featured-image {
    padding: 0;
    margin: 15px 0 0;
  }
}

.single-post .post-description .yuzo_related_post .yuzo-img {
  border: none;
}

.single-post .post-description .yuzo_related_post .yuzo-img {
  border: none;
  height: 170px !important;
}

.single-post .yuzo_related_post .relatedthumb {
  padding: 0;
}

@media (min-width: 768px) {
  .single-post .yuzo_related_post .relatedthumb {
    width: 46% !important;
    height: auto !important;
    padding: 0;
  }
}

.white-box {
  background-color: #FFF;
  border: 0;
  box-shadow: 0 1px 2px rgba(0,0,0,.1);
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  margin-top: 15px;
}

.vh-keyword-search {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 15px;
}

.vh-keyword-search input {
  font-size: 15px;
  padding: 5px 30px 5px 10px;
  background-color: #fff;
  border: 1px solid #d3d3d3;
  box-shadow: 0 1px 0 rgba(0,0,0,.05);
  border-radius: 3px;
  max-width: 167px;
}

.vh-keyword-search #filtersubmit {
  position: relative;
  z-index: 1;
  left: -25px;
  top: 0px;
  color: #7B7B7B;
  cursor: pointer;
  width: 0;
}

@media (max-width: 480px) {
  .vh-keyword-search {
    display: block;
    margin: 15px 0 0;
  }

  .vh-keyword-search input {
    width: 70%;
    max-width: initial;
    font-size: 15px;
    padding: 8px 35px 8px 15px;
    background-color: #fff;
    border: 1px solid #d3d3d3;
    box-shadow: 0 1px 0 rgba(0,0,0,.05);
    border-radius: 3px;
  }

  .vh-keyword-search #filtersubmit {
    left: -33px;
    font-size: 18px;
    padding: 0 5px;
  }
}

/* Slots listing */

.vh-pagination {
  width: 100%;
  clear: both;
  margin: -10px 0 0;
  display: block;
  text-align: center;
  background: #FFF;
  padding: 20px;
  text-align: center;
  box-shadow: 0 1px 2px rgba(0,0,0,.1);
}

@media screen and (max-width: 768px) {
  .vh-pagination {
    padding: 10px 0px;
  }

  .vh-pagination ul {
    padding-inline-start: 0px!important;
  }
}

.vh-pagination .prev,
.vh-pagination .next {
  background: #FFF;
  color: #000;
  border: 1px solid #CCC;
  padding: 5px 12px;
  width: auto;
  font-size: 15px;
  border: 1px solid #CCC;
  color: #999;
}

.vh-pagination ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.vh-pagination ul li {
  display: inline-block;
  margin: 10px 2px;
}

.vh-pagination ul li a {
  cursor: pointer;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 15px;
  border: 1px solid #CCC;
  color: #999;
}

.vh-pagination li a:hover,
.vh-pagination li.active a {
  background-color: #FFF;
  border: 1px solid #000796;
  color: #000594 !important;
}

.page #vh-lobby-posts-grid {
  padding: 25px 15px 0;
  margin: 0;
  box-shadow: 0 0px 2px rgba(0,0,0,.1);
  background: #FFF;
  border-bottom: 1px solid #e6e5e5;
}

.page #vh-lobby-posts-grid.shortcode {
  margin: 20px 0;
}

.page-template-page-free-slots #vh-lobby-posts-grid .vh-item {
  visibility: hidden;
}


#vh-lobby-posts-grid .vh-item .vh-game-title {
  background: transparent;
}

.litebox-overlay {
  z-index: 999999999999;
}

.litebox-overlay .litebox-close {
  display: block !important;
}

.litebox-overlay .litebox-container {
  left: 5%;
  right: 5%;
}

/* Slots (vegashero_games) page */

.vh-grid-title {
  position: relative;
}

@media (max-width: 992px) {
  .vh-grid-title {
    text-align: center;
    margin-top: -10px;
  }
}

.vh-grid-title h1 {
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 480px) {
  .vh-grid-title h1 {
    font-size: 24px !important;
  }
}

.vh-keyword-search {
  display: inline-block;
  vertical-align: middle;
  margin: 0 15px 0 0;
  position: relative;
}

.vh-keyword-search input {
  font-size: 15px;
  padding: 6px 30px 5px 35px;
  background-color: #fff;
  border: 1px solid #d3d3d3;
  box-shadow: 0 1px 0 rgba(0,0,0,.05);
  border-radius: 3px;
  max-width: 180px;
}

.vh-keyword-search #filtersubmit {
  position: relative;
  z-index: 0;
  left: 15px;
  top: 0px;
  color: #7B7B7B;
  cursor: pointer;
  width: 0;
}

.vh-keyword-search #filterclear {
  position: absolute;
  z-index: 100;
  right: 0;
  top: 1px;
  color: #7b7b7b;
  cursor: pointer;
  padding: 11px 14px;
  font-size: 16px;
}
@media (min-width: 993px){
  .vh-filters-block {
    padding: 25px 0px!important;
  }
  .slots-games-sortby {
    margin: 0 15px 0 0!important;
  }
}
@media (max-width: 991px) {
  .slots-games-sortby {
    display: inline-block;
    margin: 0px!important;
    float: unset!important;
  }
  .vh-filters-block {
    padding: 10px!important;
  }
  .vh-filters-block {
    background: unset;
    padding: 0px;
    box-shadow: unset;
    margin-bottom: 0px;
    border-bottom: unset;
    text-align: unset;
  }
  .vh-grid-title h1 {
    display: block;
  }
  .slots-games-sortby{
    display: none;
  }
  .mobile-filter-slots {
    margin-top: 1px;
    appearance: none;
    font-size: 15px;
    padding: 10px 21px;
    background-color: #FFF;
    border: 1px solid #d3d3d3;
    box-shadow: 0 1px 0 rgb(0 0 0 / 5%);
    border-radius: 3px;
    font-weight: bold;
    text-align: left;
    line-height: 16px;
    height: auto;
    max-width: 190px;
  }

  .sticky-filter-slots {
    background: #fff;
    box-shadow: 0 14px 28px rgb(0 0 0 / 25%), 0 10px 10px rgb(0 0 0 / 22%);
    border-radius: 5px;
    padding: 10px 21px;
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 10000;
    cursor: pointer;
    border: unset;
  }
  .show-mobile-filters{
    display: block!important;
    background-color: #fff;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
  }
  .slots-games-filters .filter{
    width: 50%!important;
  }

  .slots-games-filters .found-slots-count {
    display: block!important;
    padding-top: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ebebeb;
    margin: 0px!important;
    float: unset!important;
    text-align: center!important;
    min-width: unset!important;
  }
  .slots-games-filters .clear-filters {
    position: fixed;
    top: 15px;
    right: 15px;
    margin: 0px!important;
    font-size: 21px;
    line-height: 1;
  }
  .slots-games-filters .clear-filters a {
    color: #e41f49!important;
  }
  .slots-games-filters .close{
    position: fixed;
    top: 15px;
    left: 15px;
  }
  .slots-games-filters .multiple-selection {
    min-width: unset;
  }
  .slots-games-filters .multiple-selection .ms-parent {
    min-width: unset!important;
    max-width: unset!important;
    width: 100%!important;
  }
  .slots-games-filters .multiple-selection .ms-parent .ms-choice{
    background: unset;
    border: unset;
    text-align: center;
    box-shadow: unset;
    padding: 0px;
    pointer-events: none;
  }
  .slots-games-filters .multiple-selection .ms-parent .ms-choice .placeholder{
    text-align: center!important;
    padding-left: 0px;
  }
  .slots-games-filters .multiple-selection .ms-parent .ms-drop{
    display: block;
    position: unset;
    border: unset;
  }
  .slots-games-filters .multiple-selection .ms-parent .ms-drop.bottom{
    box-shadow: unset;
  }
  .slots-games-filters .multiple-selection .ms-drop ul {
    max-height: unset!important;
  }
  .slots-games-filters .multiple-selection .ms-drop ul li label{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
  }
  .slots-games-filters .multiple-selection .ms-drop input[type=checkbox] {
    margin: 0px!important;
    float: right;
  }
  .slots-games-filters .show-results{
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 5px;
    /* border-top: 1px solid #ebebeb; */
  }
  .slots-games-filters .vh-keyword-search {
    display: flex;
    vertical-align: middle;
    margin: 0;
    padding: 5px 5px 0px 5px;
    position: fixed;
    bottom: 60px;
    left: 0;
    width: 100%;
    align-items: center;
  }
  .slots-games-filters .vh-keyword-search input {
    max-width: unset;
    width: 100%;
  }
  .slots-games-filters .show-results button{
    background: #323232;
    color: #fff;
    border-radius: 5px;
    padding: 0;
    font-size: 17px;
    width: 100%;
    height: auto;
    max-height: 48px;
    line-height: 48px;
    border: none;
    font-weight: 700;
  }
}
.slots-games-filters .mobile-button{
  display: none;
  cursor: pointer;
}

.slots-games-sortby {
  display: inline-block;
  margin: 20px 0 0 15px;
}

@media (min-width: 768px) {
  .slots-games-sortby {
    display: inline-block;
    margin: 0px 0 0 15px;
    float: right;
  }
}

.slots-games-sortby label {
  display: none;
  vertical-align: middle;
  margin: 0 7px 0 0;
}

.slots-games-sortby label span {
  display: none;
}

@media (min-width: 992px) {
  .slots-games-sortby label span {
    text-transform: capitalize;
    display: initial;
  }

  .slots-games-sortby label {
    text-transform: lowercase;
  }
}

.slots-games-sortby select {
  margin-top: 1px;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  font-size: 15px;
  padding: 10px 30px 10px 12px;
  border: none;
  background: url(../images/down-arrow.svg) no-repeat center right;
  background-position-x: calc(100% - 10px);
  background-size: 10px;
  background-color: #FFF;
  border: 1px solid #d3d3d3;
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
  border-radius: 3px;
  font-weight: bold;
  text-align: left;
  line-height: 16px;
  height: auto;
  max-width: 190px;
}

.vh-filters-block {
  background: #fff;
  padding: 25px 25px;
  box-shadow: 0 0px 2px rgba(0,0,0,.1);
  margin-bottom: -10px;
  border-bottom: 1px solid #e6e5e5;
  text-align: center;
}

@media (min-width: 1200px) {
  .vh-filters-block {
    text-align: left;
  }
}

.vh-filters-block .vh-filter-toggle {
  margin: -10px;
}

.vh-filters-block .vh-filter-toggle a {
  display: block;
  font-size: 18px;
  padding: 7px;
  background: #000;
  border: none;
}

.vh-filters-block .vh-filter-toggle a:hover,
.vh-filters-block .vh-filter-toggle a:focus {
  border: none;
}

.vh-filters-block .siteorigin-widget-tinymce {
  visibility: hidden;
  text-align: center !important;
}

@media (min-width: 1200px) {
  .vh-pagination {
    margin: -10px 0 20px;
  }
}


.slots-games-filters {
  display: inline-block;
  vertical-align: middle;
}

.slots-games-filters select {
  margin-right: 12px;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  font-size: 15px;
  padding: 10px 30px 10px 12px;
  border: none;
  background: url(../images/down-arrow.svg) no-repeat center right;
  background-position-x: calc(100% - 10px);
  background-size: 10px;
  background-color: #F8F8F8;
  border: 1px solid #d3d3d3;
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
  border-radius: 3px;
  font-weight: bold;
  text-align: left;
  line-height: 16px;
  height: auto;
  max-width: inherit;
}

.vh-filters-block p:empty,
.vh-filters-block br {
  display: none;
}

/*
.slots-games-filters .clear-filters a {
  background: #000;
  padding: 9px 20px;
  -webkit-transition: all ease 0.25s;
  transition: all ease 0.25s;
  border: none;
}*/

/*.slots-games-filters .filters-submit a:hover {
  border: none;
  background: #424242;
}*/

.slots-games-filters .clear-filters {
  display: inline-block;
}

@media (max-width: 768px) {
  .slots-games-filters .clear-filters {
    margin: 15px 0 0;
  }
}

.slots-games-filters .clear-filters a,
.slots-games-filters .clear-filters a:hover,
.slots-games-filters .clear-filters a:focus {
  background: transparent;
  color: #000;
  padding: 0;
  -webkit-transition: all ease 0.25s;
  transition: all ease 0.25s;
  border: none;
}

.slots-games-filters .clear-filters a:hover {
  color: #e41f49;
}

.slots-games-filters .multiple-selection {
  margin-right: 15px;
  min-width: 180px;
}

.slots-games-filters .multiple-selection .ms-parent {
  min-width: 180px;
  max-width: 180px;
  width: 180px;
}

.slots-games-filters .multiple-selection .ms-drop ul {
  text-align: left;
}

.slots-games-filters .multiple-selection .ms-drop input[type="checkbox"] {
  margin: -5px 5px 0 0;
  vertical-align: middle;
}

.slots-games-filters .multiple-selection .ms-choice > span.placeholder {
  color: #000;
  font-size: 15px;
  font-weight: normal;
  padding-left: 12px;
}

.slots-games-filters .multiple-selection .ms-choice > span {
  padding-left: 12px;
}

.slots-games-filters .multiple-selection .ms-choice {
  -webkit-appearance: none;
  appearance: none;
  font-size: 15px;
  font-weight: normal;
  padding: 10px 30px 10px 10px;
  border: none;
  background: url(../images/down-arrow.svg) no-repeat center right;
  background-position-x: calc(100% - 10px);
  background-size: 10px;
  background-color: #F8F8F8;
  border: 1px solid #d3d3d3;
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
  border-radius: 3px;
  text-align: left;
  line-height: 38px;
  height: 38px;
  max-width: inherit;
  vertical-align: middle;
  display: inline-block;
  color: #000;
}

.slots-games-filters .multiple-selection select {
  display: none;
  width: 180px;
  height: 38px;
  overflow: hidden;
}

.slots-games-filters .multiple-selection .ms-choice > div {
  display: none;
}

.slots-games-filters .multiple-selection .ms-drop.bottom {
  width: 100%;
}

.slots-games-filters .multiple-selection .ms-drop ul > li label {
  text-overflow: ellipsis;
  overflow: hidden;
  width: auto;
  margin: 0;
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

@media (max-width: 768px) {
  .slots-games-filters .multiple-selection .ms-drop ul > li label {
    margin: 8px 5px;
    font-size: 16px;
  }
}

.slots-games-filters .ms-drop ul > li label input {
  margin: -1px 5px 0 2px;
}

.slots-games-filters .multiple-selection .ms-drop ul > li label span {
  vertical-align: middle;
}

@media (max-width: 992px) {
  .slots-games-filters .filter {
    width: 100%;
    margin: 0 0 20px;
  }
}

.page #vh-lobby-posts-grid .no-results {
  padding: 0 0 25px;
  text-align: center;
  font-size: 18px;
}

.slots-games-filters .found-slots-count {
  display: inline-block;
  float: left;
  vertical-align: middle;
  margin: 7px 15px 0 0;
  visibility: hidden;
  font-weight: bold;
  min-width: 135px;
  text-align: right;
}

@media (max-width: 768px) {
  .slots-games-filters .found-slots-count {
    width: 100%;
    margin: 0 0 20px;
    font-size: 18px;
    text-align: center;
  }
}

.popup-container {
  position: fixed;
  z-index: 10001;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.popup-container--inside {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 10001;
}

.popup-container--inside .loading {
  width: 2px;
  height: 2px;
  margin: 0 auto 0;
  -webkit-animation: rotateplane 1.1s infinite;
  animation: rotateplane 1.1s infinite;
  border-radius: 8px;
  outline: medium none;
  background: transparent;
  box-shadow: -8px -8px 0 6px #000, 8px -8px 0 6px #e41f49;
}

.popup-container--inside .loading {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}

@-webkit-keyframes rotateplane {
  0%,
  100% {
      box-shadow: -8px -8px 0 6px #000, 8px -8px 0 6px #e41f49
  }
  50% {
      box-shadow: 8px -8px 0 6px #000, -8px -8px 0 6px #e41f49
  }
}

@keyframes rotateplane {
  0%,
  100% {
      box-shadow: -8px -8px 0 6px #000, 8px -8px 0 6px #e41f49
  }
  50% {
      box-shadow: 8px -8px 0 6px #000, -8px -8px 0 6px #e41f49
  }
}

@media (min-width: 1200px) {
  .vh-item .vh-overlay img {
    height: 171px;
  }
}

.vh-item .vh-overlay .play-now {
  text-align: center !important;
}

.archive.category .left-column,
.archive.tag .left-column {
  background: transparent;
  padding: 0 15px;
  margin: 0;
  box-shadow: initial;
}

@media (min-width: 768px) {
  .archive.category .left-column,
  .archive.tag .left-column {
    padding-right: 0;
  }
}

.archive.category .left-column > .post-contents,
.archive.tag .left-column > .post-contents {
  background: #FFF;
  padding: 15px;
  margin: 15px 0;
  box-shadow: 0 1px 2px rgba(0,0,0,.1);
}

@media (max-width: 768px) {
  .archive.category .post-title-block,
  .archive.tag .post-title-block {
    margin-right: 0;
  }

  .admin-bar.archive.category .post-title-block,
  .admin-bar.archive.tag .post-title-block {
    margin-top: 0;
  }
}

.archive.category .left-column h1,
.archive.tag .left-column h1 {
  margin-bottom: 0;
}

/* Language switcher */

@media (min-width: 1200px) {
  .navbar .nav .wpml-ls-current-language .wpml-ls-native {
    display: none;
  }
}

.navbar .nav .wpml-ls-current-language ul .wpml-ls-native {
  display: inline-block;
  margin: 0 0 0 7px;
  text-transform: initial;
  font-size: 14px;
}

.navbar .nav .wpml-ls-item ul {
  min-width: 125px;
  list-style: none;
  padding: 5px 10px 0;
  right: -40px;
  top: 57px;
  text-align: left;
  box-shadow: 1px 1px 4px #7b7b7b;
  border-radius: 3px;
  display: none !important;
}

.navbar .nav .wpml-ls-current-language ul:before {
  content: ' ';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #ffffff transparent;
  top: -7px;
  left: 50%;
  margin-left: -11px;
}

.navbar .nav .wpml-ls-item ul li {
  display: block;
  border-bottom: 1px solid #CCC;
  padding: 0 15px 5px;
  margin: 0 -10px 5px;
}

.navbar .nav .wpml-ls-item ul li:last-child {
  border-bottom: none;
  padding: 0 15px 5px;
  margin: 0 -10px 0;
}

.navbar .nav .wpml-ls-item ul li a:hover {
  color: #e41f49;
}

.navbar .nav .wpml-ls-item ul li a {
  color: #000;
}


@media (max-width: 1200px) {

  .navbar .nav > .wpml-ls-item {
    border-top: 1px solid #333333;
    display: block;
  }

  .navbar.sticky-navigation .navbar-nav .wpml-ls-current-language > a {
    padding: 15px 22px 7px;
  }

  .navbar .nav .wpml-ls-current-language .wpml-ls-native {
    display: inline-block;
    margin-left: 8px;
    font-size: 15px;
  }

  .navbar .nav .wpml-ls-item ul {
    position: relative;
    top: initial;
    left: initial;
    right: initial;
    background: transparent;
    box-shadow: none;
    color: #FFF;
    padding: 0 !important;
    display: none !important;
  }

  .navbar .nav .wpml-ls-item ul li,
  .navbar .nav .wpml-ls-item ul li:last-child {
    padding: 0;
    margin: 10px 0;
  }

  .navbar .nav .wpml-ls-item ul li a {
    color: #FFF
  }

  .navbar .nav .wpml-ls-current-language ul:before {
    display: none;
  }
}

.mobile-language-switcher-header-widget-area {
  float: right;
  width: 105px;
  margin: 25px 20px 0 0;
}

.mobile-language-switcher-header-widget-area .wpml-ls-legacy-dropdown a {
  color: #000;
}

.mobile-language-switcher-header-widget-area .wpml-ls-legacy-dropdown .wpml-ls-display {
  display: none;
}

@media (min-width: 767px) {
  .mobile-language-switcher-header-widget-area {
    display: none;
  }
}

#mobileLanguageSwitcherModal {

}

#mobileLanguageSwitcherModal .modal-dialog {
  height: 100%;
  margin: 0;
}

@media (min-width: 1200px) {
  #mobileLanguageSwitcherModal .modal-dialog {
    width: 300px;
    margin: 60px auto;
    height: auto;
  }
}

#mobileLanguageSwitcherModal .modal-content {
  border-radius: 0;
  border: none;
}

@media (max-width: 1200px) {
  #mobileLanguageSwitcherModal .modal-content {
    height: 100%;
  }
}

#mobileLanguageSwitcherModal .modal-body {
  padding-top: 10px;
}

#mobileLanguageSwitcherModal .modal-header {
  padding-left: 30px;
  border-bottom: none;
  padding-bottom: 0;
}

#mobileLanguageSwitcherModal .modal-title {
  color: #000 !important;
  font-size: 20px;
}

#mobileLanguageSwitcherModal .modal-header .close {
  opacity: 1;
  font-size: 30px;
}

.mobile-language-switcher ul li a {
  color: #000;
  font-size: 19px;
  padding: 9px 10px;
  width: 100%;
}

.mobile-language-switcher ul li a:hover,
.mobile-language-switcher ul li a:focus {
  text-decoration: none;
  color: #e41f49 !important;
}

@media (max-width: 767px) {
  .sticky-navigation .main-navigation .wpml-ls-current-language.current a {
    color: #FFF !important;
  }
}

.mobile-language-switcher ul li a img {
  display: inline;
  vertical-align: middle;
  width: 18px;
  height: 12px;
  border-radius: 3px;
}

.navbar.sticky-navigation .navbar-nav .wpml-ls-current-language > a img {
  border-radius: 3px;
}

.mobile-language-switcher .wpml-ls-legacy-list-vertical .wpml-ls-flag+span {
  margin-left: 8px;
}

.mobile-language-switcher .wpml-ls-legacy-list-vertical .wpml-ls-current-language .wpml-ls-flag+span {
  color: #e41f49;
}

.wpml-ls-menu-item .wpml-ls-flag {
  border-radius: 3px;
}

.modal-open {
  overflow: hidden;
  margin-right: 15px !important;
}

.modal-open.landx-multipage .header-on {
  margin-left: -7px;
}

body.from-uk .navbar .nav li.wpml-ls-item {
  display: none;
}

.error404wrapper {
  width: 100%;
  min-height: 630px;
  position: relative;
  padding: 60px 0;
}

.error404wrapper .box__jim {
  margin: -30px -50px;
}

.error404wrapper .box__jim img {
  border-radius: 20px 20px 0px 0;
}

.error404wrapper .bottom-menu {
  display: block;
  margin: 40px auto 0;
  text-align: left;
}

@media (min-width: 1200px) {
  .erro404wrapper .bottom-menu {
    width: 340px;
  }
}

.error404wrapper .bottom-menu h4 {
  text-align: center;
}

.error404wrapper .bottom-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.error404wrapper .bottom-menu ul li {
  display: inline-block;
  margin: 20px 20px 0;
}

.error404wrapper .bottom-menu ul li.wpml-ls-item {
  display: none;
}

.error404wrapper .bottom-menu ul li a:hover {
  text-decoration: none;
}

.siteorigin-widget-tinymce,
.siteorigin-widget-tinymce p,
.siteorigin-widget-tinymce ol,
.siteorigin-widget-tinymce span {
  text-align: justify !important;
}

.single-post .post-contents.related-posts-wrap {
  margin: 15px 0 30px;
}

@media (max-width: 768px) {
  .siteorigin-widget-tinymce > div {
    width: 100% !important;
  }
}

/* Slots Age Verification Modal */

.vertical-alignment-helper {
  display: table;
  height: 100%;
  width: 100%;
  pointer-events: none;
}

.vertical-align-center {
  /* To center vertically */
  display: table-cell;
  vertical-align: middle;
  pointer-events: none;
}

.modal-content {
  /* Bootstrap sets the size of the modal in the modal-dialog class, we need to inherit it */
  width: inherit;
  max-width: inherit; /* For Bootstrap 4 - to avoid the modal window stretching full width */
  height: inherit;
  /* To center horizontally */
  margin: 0 auto;
  pointer-events: all;
}

#slotsAgeVerificationModal {
  text-align: center;
}

#slotsAgeVerificationModal .modal-header {
  border-bottom: none;
  padding: 35px 15px 0px;
}

#slotsAgeVerificationModal .modal-header h4 {
  font-size: 26px;
}

#slotsAgeVerificationModal .modal-header .close {
  margin-top: 4px;
  display: none;
}

#slotsAgeVerificationModal .age-badge {
  border-radius: 50%;
  background: #e41f49;
  padding: 20px 10px;
  font-size: 30px;
  display: inline-block;
  color: #FFF;
  margin: 0px 0 25px;
}

#slotsAgeVerificationModal .age-logo {
  margin: 0px 0 45px;
}

#slotsAgeVerificationModal p a {
  color: #e41f49;
}

#slotsAgeVerificationModal p a:hover {
  color: #ea0738;
  text-decoration: none;
}

#slotsAgeVerificationModal .buttons {
  margin: 45px 0 30px;
}

#slotsAgeVerificationModal .buttons a {
  margin: 0 5px;
  border-radius: 5px;
  font-size: 16px;
  padding: 10px 15px;
  border: 1px solid #e41f49;
  min-width: 145px;
}

@media (max-width: 380px) {
  #slotsAgeVerificationModal .buttons a {
    display: block;
    margin: 0 0 15px;
  }

  #slotsAgeVerificationModal .buttons a:last-child {
    margin: 0;
  }
}

#slotsAgeVerificationModal .buttons #accept {
  background: #e41f49;
  color: #FFF;
}

#slotsAgeVerificationModal .buttons #accept:hover {
  background: #ff0036;
}

#slotsAgeVerificationModal .buttons #dismiss {
  color: #e41f49;
}

#slotsAgeVerificationModal .buttons #dismiss:hover,
#slotsAgeVerificationModal .buttons #dismiss:hover:active,
#slotsAgeVerificationModal .buttons #dismiss:active,
#slotsAgeVerificationModal .buttons #dismiss:focus {
  color: #ff0036;
  text-decoration: none;
}

.single-vegashero_games .modal-backdrop.in {
  opacity: 0.9;
}

/* Hide category selection on custom Card Games category page. */

.page-id-17439 #search-filters .filter[data-filter="cat"] {
  display: none;
}

/* Images spacing styles */

@media (max-width: 768px) {
  .single .post-description img.alignleft,
  .single .post-description img.alignright,
  .single .post-description img.aligncenter,
  .single .post-description img.alignnone,
  .siteorigin-widget-tinymce img.alignleft,
  .siteorigin-widget-tinymce img.alignright,
  .siteorigin-widget-tinymce img.aligncenter,
  .siteorigin-widget-tinymce img.alignnone {
    margin: 20px auto;
    float: none;
    display: block;
  }
}

@media (min-width: 768px) {
  .single .post-description img.alignleft,
  .siteorigin-widget-tinymce img.alignleft {
    margin: 20px 20px 20px 0;
    padding: 0 !important;
  }

  .single .post-description img.alignright,
  .siteorigin-widget-tinymce img.alignright {
    margin: 20px 0 20px 20px;
    padding: 0 !important;
  }

  .single .post-description img.aligncenter,
  .siteorigin-widget-tinymce img.aligncenter {
    margin: 20px auto;
    padding: 0 !important;
  }

  .single .post-description img.alignnone,
  .siteorigin-widget-tinymce img.alignnone {
    margin: 10px auto;
    padding: 0 !important;
  }
}

.single .post-description ol,
.single .post-description ul,
.siteorigin-widget-tinymce ol,
.siteorigin-widget-tinymce ul {
  list-style-position: inside;
}

.bookmakers-list .so-widget-sow-editor h1,
.so-widget-sow-editor h2,
.so-widget-sow-editor h3,
.so-widget-sow-editor h4 {
  margin: 15px 0;
}

.single .wp-caption,
.siteorigin-widget-tinymce .wp-caption {
  padding: 0;
  margin: 15px 0 10px;
}

.single .wp-caption.aligncenter,
.siteorigin-widget-tinymce .wp-caption.aligncenter {
  margin: 15px auto 10px;
}

.wp-caption .wp-caption-text,
.single .wp-caption .wp-caption-text,
.siteorigin-widget-tinymce .wp-caption .wp-caption-text {
  text-align: center;
  margin: 0;
  font-size: 12px;
}

/* Casino game demo */

.casino-game-demo-wrapper {
  position: relative;
  min-height: 250px;
}

.casino-game-demo-wrapper .play-button-overlay {
  vertical-align: middle;
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  line-height: 100%;
  text-align: center;
  background: #000;
  color: #FFF;
  opacity: 0.7;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.casino-game-demo-wrapper .play-button {
  margin: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 50%;
  font-size: 22px;
  font-weight: bold;
  background: #ff8d00fc;
  padding: 20px;
  border-radius: 10px;
  color: #000;
  text-transform: uppercase;
  opacity: 1;
  margin-left: -100px;
  margin-top: -5px;
  min-width: 200px;
  text-align: center;
  z-index: 2;
  cursor: pointer;
  box-shadow: 1px 3px 15px;
}

.casino-game-demo-wrapper .play-button.bottom {
  bottom: 10%;
  top: initial;
}

.casino-game-demo-wrapper .play-button.top {
  top: 20%;
  transform: translateY(0);
}

.casino-game-demo-wrapper .extra-buttons {
  background: #000;
  color: #FFF;
  opacity: 1;
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 20px;
}

.casino-game-demo-wrapper .extra-buttons .play-fullscreen {
  background: #f5f6f7;
  padding: 10px;
  border-radius: 7px;
  display: inline-block;
  color: #000;
  font-weight: bold;
  cursor: pointer;
}

.casino-game-demo-wrapper .extra-buttons .play-fullscreen i {
  margin-left: 5px;
  font-weight: bold;
  font-size: 20px;
  line-height: 24px;
  vertical-align: middle;
}

.casino-game-demo-wrapper.full-screen {
  background: #000;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
}

.casino-game-demo-wrapper.full-screen {
  object-fit: contain;
  position: fixed !important;
  top: 0px !important;
  right: 0px !important;
  bottom: 0px !important;
  left: 0px !important;
  box-sizing: border-box !important;
  min-width: 0px !important;
  max-width: none !important;
  min-height: 0px !important;
  max-height: none !important;
  width: 100% !important;
  height: 100% !important;
  transform: none !important;
  margin: 0px !important;
  z-index: 1000 !important;
}

.casino-game-demo-wrapper.full-screen .extra-buttons {
  height: 12vh;
}

.casino-game-demo-wrapper.full-screen .iframe-wrap {
  height: 80vh;
  text-align: center;
  background: #000;
  position: relative;
}

.casino-game-demo-wrapper.full-screen .iframe-wrap iframe {
  height: 100%;
  max-width: 100%;
}

.casino-game-demo-wrapper .casino-game-demo-shortcode {
  border: none;
}

.casino-game-demo-wrapper .casino-under-game {
  display: none;
}

.casino-game-demo-wrapper.full-screen .casino-under-game {
  display: block;
  height: 20vh;
}

.casino-game-demo-wrapper.full-screen .casino-under-game .top-casino h3 {
  padding: 5px 0;
  max-width: 75%;
  margin-left: auto !important;
  margin-right: auto !important;
}

.casino-game-demo-wrapper.full-screen .casino-under-game .top-casino.shortcode {
  margin: 0;
  height: 100%;
}

.casino-game-demo-wrapper.full-screen .casino-under-game .top-casino.shortcode .top-casino-item {
  max-width: 50%;
  margin: 20px auto 0;
}

.casino-game-demo-wrapper.full-screen .casino-under-game .top-casino.shortcode .top-casino-item .platforms {
  display: none;
}

@media screen and (max-width: 480px) {
  .casino-game-demo-wrapper.full-screen .iframe-wrap {
    height: 43vh;
  }

  .casino-game-demo-wrapper.full-screen .casino-under-game {
    height: 61vh;
  }

  .casino-game-demo-wrapper.full-screen .casino-under-game .top-casino.shortcode .top-casino-item {
    max-width: 65%;
  }
}

@media screen and (max-width: 840px) and (orientation: landscape) {
  .casino-game-demo-wrapper.full-screen .casino-under-game {
    height: 26vh;
  }

  .casino-game-demo-wrapper.full-screen .casino-under-game .top-casino h3 {
    display: none;
  }

  .casino-game-demo-wrapper.full-screen .casino-under-game .top-casino.shortcode .top-casino-item {
    margin-top: 0px;
    padding: 9px;
    max-width: 80%;
  }

  .casino-game-demo-wrapper.full-screen .casino-under-game .top-casino.shortcode .top-casino-item .rating,
  .casino-game-demo-wrapper.full-screen .casino-under-game .top-casino.shortcode .top-casino-item .bonus {
    margin-top: 0;
  }

  .casino-game-demo-wrapper.full-screen .casino-under-game .top-casino.shortcode .top-casino-item .logo {
    width: 33%;
  }

  .casino-game-demo-wrapper.full-screen .casino-under-game .top-casino.shortcode .top-casino-item .rating-bonus-col {
    width: 33%;
  }

  .casino-game-demo-wrapper.full-screen .casino-under-game .top-casino.shortcode .top-casino-item .rating-bonus-col .rating-col {
    width: 100%;
  }

  .casino-game-demo-wrapper.full-screen .casino-under-game .top-casino.shortcode .top-casino-item .bonus-col {
    display: none;
  }

  .casino-game-demo-wrapper.full-screen .casino-under-game .top-casino.shortcode .top-casino-item .terms-col {
    display: none;
  }

  .casino-game-demo-wrapper.full-screen .casino-under-game .top-casino.shortcode .top-casino-item .deal-button-wrap {
    width: 30%;
  }

  .casino-game-demo-wrapper.full-screen .casino-under-game .top-casino.shortcode .top-casino-item .deal-button a {
    padding: 15px 0;
  }

  .casino-game-demo-wrapper.full-screen .casino-under-game .top-casino.shortcode .top-casino-item .logo img {
    max-height: 55.5px;
    width: auto;
  }

}

@media screen and (max-width: 1024px) and (orientation: landscape) {
  .casino-game-demo-wrapper.full-screen .casino-under-game {
    height: 30vh;
  }
}

@media screen and (min-width: 1200px) {
  .casino-game-demo-wrapper.full-screen .casino-under-game .top-casino.shortcode .top-casino-item {
    max-width: 766px;
  }
}

.fullscreenButton {
  width: 45px;
  height: 45px;
  border: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9;
  background-color: rgba(0,0,0,0);
  transition: all .2s;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 8px;
  cursor: pointer;
  outline: none;
}

.exitFullscreen {
  top: auto;
  line-height: normal;
  vertical-align: middle;
  text-align: center;
  right: 10px;
  color: #FFF;
  font-size: 25px;
  bottom: -59px;
  color: #fff;
  background: #000;
}

.exitFullscreen.bottom-right {
  right: 10px;
}

.exitFullscreen.top-right {
  right: 10px;
  bottom: initial;
}

.exitFullscreen.bottom-left {
  right: initial;
  left: 10px;
}

.exitFullscreen.top-left {
  right: initial;
  left: 10px;
  bottom: initial;
}

body.lights-out header,
body.lights-out section .sidebar-column,
body.lights-out footer,
body.lights-out #wpadminbar {
  display: none;
}

body.lights-out section .left-column {
  width: 100%;
  float: none;
}

.category .category-description {
  margin: 35px 0 40px;
  text-align: justify;
}

.siteorigin-widget-tinymce .guru-image-left-with-text,
.guru-image-left-with-text {
  text-align: left !important;
}

.guru-image-left-with-text span.inner-text {
  text-align: left !important;
  vertical-align: middle;
}

.guru-image-left-with-text img {
  vertical-align: middle;
  margin: 10px 10px 10px 0 !important;
}

@media (max-width: 768px) {
  .guru-image-left-with-text img {
    max-width: 50px;
  }

  .guru-image-left-with-text span.inner-text {
    max-width: 75%;
    display: inline-block;
    vertical-align: middle;
    text-align: left !important;
  }
}

@media screen and (max-width: 768px) {
  ol:not([class]), ol[class=""], ul:not([class]), ul[class=""] {
    padding-inline-start: 15px;
  }

  ol:not([class]) li, ul:not([class]) li, ol[class=""] li, ul[class=""] li {
    font-size: 16px;
    text-align: left;
  }
}

figure.aligncenter {
  margin: 15px auto 10px !important;
}

/* Ninja Tables customizations */

@media (min-width: 992px) {
  .siteorigin-widget-tinymce .ninja_table_wrapper table td img,
  .ninja_table_wrapper table td img {
    margin: 10px;
  }
}

.ninja_table_wrapper table tr th,
.ninja_table_wrapper table tbody td {
  font-size: 14px;
}

@media (max-width: 768px) {
  .ninja_table_wrapper table tr th,
  .ninja_table_wrapper table tbody td {
    font-size: 14px;
  }
}

.bootstrap4.ninja_table_wrapper .table {
  margin-bottom: 20px;
}

.ninja_table_wrapper,
.table-inner-wrapper {
  position: relative;
  overflow: auto;
}

.table-shadow {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 65px;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
}

.shadow-left {
  left: 0px;
  background-image: linear-gradient( to left, rgba(255,255,255,0), rgba(255,255,255,1) );
}

.shadow-right {
  right: 0px;
  background-image: linear-gradient( to right, rgba(255,255,255,0), rgba(255,255,255,1) );
}

.shadow-right img {
  position: absolute;
  top: 50px;
  width: 30px;
  right: 10px;
}

.very-top-block {
  margin-top: -30px;
}

@media (max-width: 768px) {
  .very-top-block {
    margin-top: -45px;
    margin-bottom: 30px;
  }
}

/*
  New footer
*/

footer .footer-menus {
  text-align: left;
  padding: 30px 0;
  border-bottom: 1px solid #545454;
  margin: 0 0 15px;
}

footer .footer-menus .footer-column h3 {
  color: #e41f49 !important;
  margin: 0 0 10px;
}

footer .footer-menus .footer-column ul {
  list-style: none;
  padding: 0;
}

footer .footer-menus .footer-column ul li {

}

footer .footer-menus .footer-column ul li a {
  color: #FFF;
  text-decoration: none;
}

footer .gambleaware-logos h3 {
  color: #e41f49 !important;
}

footer .gambleaware-logos img {
  margin: 15px;
}

footer .gambleaware-logos .border-bottom {
  border-bottom: 1px solid #545454;
  margin: 0 0 15px;
  padding: 0 0 15px;
}

.twitch-embed-wrap {
  text-align: center;
  background: #FFF;
  /*padding: 20px;*/
  margin: 0 0 20px;
  box-shadow: 0 1px 2px rgba(0,0,0,.1);
  line-height: 0;
}

.twitch-embed-wrap iframe {
  max-width: 100%;
  height: 580px !important;
}

.twitch-embed-wrap .twitch-embed-title {
  line-height: normal;
  font-size: 24px;
  font-weight: bold;
  background: #222121;
  color: #FFF;
  padding: 15px 0;
}

.twitch-embed-wrap p {
  display: none;
}

.page-id-135328 .casinos-list .title-wrapper .casino-game-type-filter {
  display: none;
}

body.en .navbar .nav li:first-child a {
  font-weight: bold;
}

body.home,
body.page-template-page-casinos-listing {
  overflow-anchor: none;
}

body.page-template-page-casinos-listing .casinos-top-rating-wrapper {
  display: inline-block;
  width: 100%;
  margin-top: 0px;
}

#vh-lobby-posts-grid.shortcode.TopGames {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0px;
}
#vh-lobby-posts-grid.shortcode.TopGames .vh-item .vh-overlay img {
  height: auto;
}
@media (min-width: 600px){
  #vh-lobby-posts-grid.shortcode.TopGames .vh-item {
    width: 33%;
  }
}
.vh-show-more {
  text-align: center;
}
.vh-show-more a span {
  margin: 0 0 0 5px;
}
.vh-show-more a {
  box-sizing: border-box;
  font-size: 20px;
  padding: 16px 20px;
  font-weight: 700;
  text-shadow: 0 1px 0 rgb(0 0 0 / 5%);
  text-align: center;
  cursor: pointer;
  text-decoration: none!important;
  line-height: 1em;
}
.vh-show-more a.show-more{
  background: #bc0d33;
  color: #fff !important;
  border: none;
}

.vh-show-more a.show-less {
  border: #000;
  background: 0 0 !important;
  border: none;
  box-shadow: none;
  color: #000 !important;
}
.admin-bar.landx-multipage .header-on,
.admin-bar .header-on {
  padding-top: 127px;
}

.buttons_full_screen {
  position: fixed!important;
  top: 0;
  right: 0;
  z-index: 100003!important;
}
.iframe_controll {
  position: absolute;
  right: 0px;
  z-index: 10;
  margin: 10px;
}
.iframe_controll .close_fullscreen{
  display: none;
}

.admin-bar.landx-multipage .header-on,
.admin-bar .header-on {
  padding-top: 127px;
}


.navbar .container {
  display: flex;
}

@media (max-width:1200px) {
  .navbar .container, .navbar .container .navbar-collapse .main-navigation {
    display: block !important;
  }
}

.navbar .container .navbar-collapse {
  width: 100%;
  float: none;
}

.navbar .container .navbar-collapse .main-navigation {
  float: none !important;
  width: 100%;
  display: flex;
  align-content: space-between;
  justify-content: space-between;
  margin-left: 0 !important;
}

.sticky-navigation .main-navigation {
  padding-top: 13px;
  margin-left: 20px;
}

.sticky-navigation .navbar-header {
  padding-top: 10px;
}

@media (max-width: 767px) {
  .navbar-inverse .navbar-collapse {
    margin-top: 10px;
    border-color: #333333 !important;
  }

  .navbar-inverse .navbar-collapse .main-navigation {
    padding-top: 0;
  }

  .sticky-navigation .navbar-nav > li > a {
    padding: 10px 22px
  }

  .sticky-navigation .navbar-header {
    padding-top: 12px;
  }
}

@media (max-width: 480px) {
  .home .post-contents {
    padding: 0 15px 15px;
  }

  .home .panel-grid-cell .panel-widget-style {
    padding: 0 !important;
  }
}

/* style for blog list block */

.post-contents  h2, .post-contents  p {
  text-align: left;
}

.archive .blog-posts .articles-listing>.post-contents{
  background: #fff;
  box-shadow: 0 1px 2px rgb(0 0 0 / 10%);
  margin-top: 15px;
  padding-top: 20px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: -15px;
  margin-right: -15px;
}

.blog .blog-posts .articles-listing {
  background: #fff;
  box-shadow: 0 1px 2px rgb(0 0 0 / 10%);
  margin-top: 15px;
  padding-top: 20px;
  padding-left: 15px;
  padding-right: 15px;
}

.blog-posts .articles-listing>.post-contents .post-contents{
  padding: 0;
  padding-left: 15px;
  padding-right: 15px;
}

.blog-posts .hentry {
  text-align: left;
}
.blog-posts .post {
  border: none;
  border-bottom: 1px solid #e6e5e5;
  margin: 0 0 25px;
  padding: 0 0 30px;
  display: inline-block;
  width: 100%;
}

.blog-posts .post h2 {
  font-size: 1.6rem;
  line-height: 2rem;
  margin: 0 0 15px;
  font-family: 'source sans pro',sans-serif;
}

.blog-posts .post .post-meta {
  text-align: left;
}

.blog-posts .post-title-row {
  margin-top: 0;
  padding: 0;
}

.blog-posts .post-title-row .post-title-block {
  box-shadow: none;
  display: flex;
  align-items: center;
  margin: 15px 0 0;
  padding: 15px;
  box-shadow: 0 1px 2px rgb(0 0 0 / 10%);
}

.blog-posts .post-title-row .post-title-block h1 {
  white-space: nowrap;
  margin-right: 20px;
}

.blog-posts .post-title-row .post-title-block #search-filters {
  margin-top: 0;
}

body > section {
  padding-bottom: 90px;
}

/* prevent invinite loading GGM-249 */

.ninja_table_wrapper table{
  display: table !important;
}

.ninja_table_wrapper .footable-loader {
  display: none !important;
}

/* prevent invinite loading GGM-249 */
