/* --------------------------------------
=========================================
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;
}

body.home {
  background: #FFF;
}

/*---------------------------------------
   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;
}

p {
  text-align: justify;
}

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 {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: bold;
  color: #323232;
  margin-bottom: 0;
  margin-top: 0;
}

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

h2 {
  font-size: 2.188rem;
  font-weight: 600;
}

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

h4 {
  font-size: 1.25rem;
  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;
  aspect-ratio: 137/73;
}


.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;
  margin-left: 20px;
}

.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: inherit;
}

.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;
}

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%;
}

.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);
}

#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-left: 15px;
  padding-right: 15px;
}

@media (max-width: 768px) {
  .post-title-row {
    padding-right: 0;
  }
}

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

.page-id-3954 .top-description p:last-child {
  margin: 0;
}

.page-id-3954 .top-description {
  margin: -15px 0 0;
}

.page-id-3954 .post-title,
.archive.category .left-column h1 {
  display: inline-block;
  vertical-align: middle;
}

.page-id-3954 #search-filters,
.archive.category #search-filters {
  width: auto;
  margin: 0 0 0 20px;
  vertical-align: middle;
}

.page-id-3954 .top-description .guru-show-more,
.archive.category .top-description .guru-show-more {
  margin: 0;
}

.page-id-3954 .top-description p:empty,
.archive.category .top-description p:empty {
  display: none;
}

.archive.category .top-description {
  margin: 15px 0 0;
}

@media (max-width: 635px) {
  .page-id-3954 .post-title,
  .archive.category .left-column h1 {
    display: block;
  }

  .page-id-3954 #search-filters,
  .archive.category #search-filters {
    display: inline-block;
    width: 100%;
    margin: 15px 0 0;
  }

  .page-id-3954 .top-description,
  .archive.category .top-description {
    padding-top: 0;
  }

  .page-id-3954 .top-description .guru-show-more,
  .archive.category .top-description .guru-show-more {
    margin: 10px 0 0;
  }
}

.bottom-description {
  margin: 30px 0 0;
}

.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 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,
.archive .post .post-contents .post-description {
  text-align: justify;
}

.widget_siteorigin-panels-postloop .post h2 {
  font-size: 1.6rem;
  line-height: 2rem;
  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;
}

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

.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 .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;
  padding: 0;
  margin: 0 0 10px;
}

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

.sidebar .video-reviews-widget .video-review-listing .image {
  display: inline-block;
  position: relative;
  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;
}

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

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

.filter select {
  height: 30px;
}

#search-filters select {
  background-color: #f9f8f8;
  border: 1px solid #323232;
  color: #323232;
  height: 37px;
  width: 240px;
  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;
}

@media (max-width: 1200px) {
  #search-filters select {
    width: 208px;
  }
}




.filter.keyword-search {
  position: relative;
  margin-right: 0;
}

.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 {
  background: #FFF;
  padding: 15px;
  margin: 15px 0;
  box-shadow: 0 1px 2px rgba(0,0,0,.1);
}

.single-post .post-description {
  max-width: 600px;
  margin: 0 auto;
}

.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 .post-description h2 {
  font-size: 1.7rem;
  line-height: 2.375rem;
}

.single-post .post-description h3 {
  font-size: 1.7rem;
}

.single-post .post-description h2,
.single-post .post-description h3 {
  margin: 1rem 0 1rem;
}

.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-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: "\f35d";
  display: inline-block;
  padding-left: 5px;
  vertical-align: top;
  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 .bookmaker-review-terms {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

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

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

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

.single-video_review .sidebar .widget {
  padding: 15px;
  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 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;
}


.single-video_review .post-contents h2 img.alignnone,
.single-video_review .post-contents h2 img.alignleft,
.single-video_review .post-contents h2 img.alignright,
.single-video_review .post-contents h3 img.alignnone,
.single-video_review .post-contents h3 img.alignleft,
.single-video_review .post-contents h3 img.alignright,
.single-video_review .post-contents h4 img.alignnone,
.single-video_review .post-contents h4 img.alignleft,
.single-video_review .post-contents h4 img.alignright {
  display: inline-block;
  margin: 10px 10px 10px 0;
}

h2 img.alignnone,
h2 img.alignleft,
h2 img.alignright,
h3 img.alignnone,
h3 img.alignleft,
h3 img.alignright,
h4 img.alignnone,
h4 img.alignleft,
h4 img.alignright {
  display: inline-block !important;
  margin: 10px 10px 10px 0 !important;
}

.single-video_review .post-contents ul,
.single-video_review .post-contents ol {
  padding-left: 0;
  font-size: 16px;
}


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

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

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

.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;
}

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

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

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

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

.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;
}

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

.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;
}

.single-video_review .reviews, .user-reviews .reviews{
  max-width: 600px;
  margin: 50px auto 0;
}

.single-video_review .reviews h3, .user-reviews .reviews h3 {
  margin: 0 0 30px;
}

.single-video_review .reviews .testimonial_group .testimonial, .user-reviews .reviews .testimonial_group .testimonial {
  width: 100%;
}

.single-video_review .reviews-form, .user-reviews .reviews-form {
  border-top: 1px solid #CCC;
  padding: 20px 0 0;
  margin: 20px 0 20px;
}

.single-video_review .reviews-form h3, .user-reviews .reviews-form h3 {
  margin: 0 0 15px;
  font-weight: normal;
}

.reviews-form .recaptcha-info {
  margin: 20px 0 0;
}

.reviews-form .recaptcha-info p {
  margin: 0;
}

.single-video_review .testimonial_group .testimonial .rr_review_text .drop_cap {
  display: none;
}

.single-video_review .testimonial_group .testimonial .rr_review_name {
  text-align: center;
  padding: 0;
}

.single-video_review .rr_review_form .form_table .rr_form_row .rr_form_heading,
.single-video_review .rr_review_form .form_table .rr_form_row td {
  border-top: none !important;
  padding: 10px 15px;
}

.single-video_review .rr_review_form .form_table .rr_form_row .rr_form_input {
  border-top: none !important;
}

.single-video_review .rr_review_form .form_table {
  border-bottom: none;
  margin: 0;
}

.single-video_review .rr_review_form .rr_stars_container {
  font-size: 16px;
}

.single-video_review .cta-button {
  max-width: 600px;
  margin: 0 auto;
}

.single-video_review .cta-button a {
  display: block;
  text-decoration: none;
  color: #FFF;
  background: #137F5D;
  margin: 10px 0 20px;
  text-align: center;
}

.single-video_review .sidebar .logos {
  display: inline-block;
  margin: 5px 0 0;
}

.single-video_review .sidebar .logos img {
  float: left;
  max-width: 80px;
  height: auto;
}

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

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

.single-video_review .sidebar .widget_bookmaker_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: 50%;
  left: 50px;
  transform: translate(-50%, -50%);
  text-align: center;
}

.single-video_review .sidebar .widget_bookmaker_bonus span {
  padding-left: 85px;
  padding-right: 29px;
  display: inline-block;
}


.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);
  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/gold_medal.png) no-repeat;
  width: 100px;
  height: 100px;
  display: block;
  background-size: 71px;
  top: 27px;
  left: 18px;
}

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

.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%;
}

.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: 50%;
    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 {
  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;
}

.home .video-review-link p {
  margin: 0;
}

.home .video-review-link i {
  color: #c60303;
  margin: 0 10px 0 0;
}

.home .video-review-link a {
  font-size: 18px;
  color: #c60303;
}

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

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

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

.pum-theme-3349 .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;
 }

.wpcf7 div.wpcf7-validation-errors {
  clear: both;
  margin: 1em 0 0;
  float: left;
  width: 100%;
}

.wpcf7 .left-side,
.wpcf7 .right-side,
.wpcf7 .submit-wrap {
  padding: 0;
}

.wpcf7 .left-side p {
  margin: 0 0 25px;
}

.wpcf7-form-control-wrap.message {
  padding: 0;
  margin: 0;
  background: transparent;
  color: #000;
  border-left: none;
}

.page-id-3954 .sidebar,
.page-id-3956 .sidebar,
.single-post .sidebar {
  display: none;
}

.page-id-3954 .left-column,
.page-id-3956 .left-column,
.single-post .left-column {
  float: none;
  text-align: left;
  margin: 0 auto;
  padding-right: 0;
}

#pg-3954-0 .panel-grid-cell,
#pg-3956-0 .panel-gird-cell {
  padding-right: 0 !important;
}

.home .video-review-link p {
  margin: 0;
}

.home .video-review-link i {
  color: #c60303;
  margin: 0 10px 0 0;
}

.home .video-review-link a {
  font-size: 18px;
  color: #c60303;
}

.featherlight .featherlight-content {
  width: 650px;
}

@media (max-width: 1200px) {
  .home .so-widget-sow-hero-default-240c1a91e21b .sow-slider-base ul.sow-slider-images .sow-slider-image-wrapper {
    padding-top: 20px;
    padding-bottom: 50px;
  }

  #pg-652-2> .panel-row-style {
    padding-top: 0 !important;
  }
}

.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;
}

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

.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) {
  .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;
  max-width: 256px;
}

@media (max-width: 1200px) {
  .archive.category .left-column h1,
  .archive.tag .left-column h1 {
    max-width: 155px;
  }
}

@media (max-width: 992px) {
  .archive.category .left-column h1,
  .archive.tag .left-column h1 {
    width: 258px;
    max-width: none;
  }
}

@media (max-width: 768px) {
  #search-filters {
    display: flex;
  }
  .archive.category .left-column h1,
  .archive.tag .left-column h1 {
    width: auto;
  }
}

@media (max-width: 635px) {
  .post-title-title-search__wrapper {
    display: block !important;
  }
}
@media (max-width: 369px) {
  #search-filters .filter select {
    max-width: 130px !important;
    margin: 0 auto !important;
  }
}

.archive .left-column,
.archive.category .left-column,
.archive.tag .left-column {
  float: none;
  text-align: left;
  margin: 0 auto;
}

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

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

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

.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 ul,
.siteorigin-widget-tinymce ol,
.siteorigin-widget-tinymce span {
  text-align: justify !important;
}

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

/* Images in Site Origin Editor */

@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;
}

/* Modal related style */

.page-template-page-custom-popup header,
.page-template-page-custom-popup footer,
.page-template-page-custom-popup #wpadminbar,
.page-template-page-custom-popup #catapult-cookie-bar {
  display: none;
}

.page-template-page-custom-popup .landx-page {
  padding-bottom: 0;
}

.page-template-page-custom-popup .panel-grid-cell-empty {
  visibility: hidden;
}

.landx-page .modal-button-cell .widget {
  margin-bottom: 15px !important;
}

.landx-page .modal-button-cell .widget:last-child {
  margin-bottom: 0 !important;
}

iframe {
  max-width: 100% !important;
}

.modal-wrapper {
  z-index: 100007;
}

.modal-wrapper .modal {
  overflow: hidden !important;
}

.modal-wrapper .modal #modal-content {
  background: #EEEEEE;
}

.modal-wrapper.styled .modal {
  border: none !important;
  transition: all 0.5s ease !important;
  padding: 0 !important;
  margin: 2vh auto;
}

.modal-wrapper.styled .modal {
  width: 95%;
}

@media (min-width: 992px) {
  .modal-wrapper.styled .modal {
    width: 33%;
  }

  .modal-wrapper.styled {
    overflow: hidden;
  }
}

.modal-worldcup-block {
  background: #FFF;
  padding: 19px;
  border-radius: 5px;
  box-shadow: 0 1px 5px #CCC;
  position: relative;
}

.modal-worldcup-block .so-widget-sow-button.absolute {
  width: auto;
  left: 10px;
  right: 10px;
  bottom: 10px;
  position: absolute;
}

.modal-custom-close-button {
  background: transparent !important;
  border: none !important;
}

.modal-wrapper.styled .modal .close-modal {
  top: 10px !important;
  right: 15px !important;
}

.modal-wrapper.hideItPlease {
  visibility: hidden !important;
}

.single .post-description table {
  border: 1px solid #FFCA28;
  background: #FFFDE7;
}

.single .post-description table tr td {
  border-top: 1px solid #FFCA28 !important;
  color: #000;
  font-size: 16px;
}

.single .post-description table tr:not(:first-child) td {
  line-height: normal;
}

.single .post-description table tr td.has-image:first-child {
  padding: 6px 10px;
}

.single .post-description table tr td p {
  margin: 0;
}

.single .post-description table tr td img {
  padding-bottom: 0;
}

.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 (max-width: 992px) {
  .desktop-only {
    display: none;
  }
}

@media (min-width: 992px) {
  .desktop-only {
    display: block;
  }
}

@media (min-width: 1200px) {
  .desktop-only.infographic {
    margin: 0 -83px;
  }
}

@media (min-width: 992px) {
  .mobile-only {
    display: none;
  }
}

@media (max-width: 992px) {
  .mobile-only {
    display: block;
  }
}

.infographic-share-buttons {
  margin: -20px 0 10px;
}

@media (min-width: 1200px) {
  .infographic-share-buttons {
    margin: -20px -83px 10px;
  }
}

.addtoany_shortcode {
  text-align: center;
  border-top: 1px solid #CCC;
  padding: 15px 0 0;
}

body.from-us .landx-page .panel-layout .hide-from-us,
body.from-us .top-listing-filters {
  display: none;
}

.mobile-post-navigation {
  position: fixed;
  display: none;
  width: 35%;
}

.mobile-post-navigation a {
  color: #000;
  font-size: 16px;
  padding: 14px;
  display: block;
}

.mobile-post-navigation a i {
  margin: 0 0 0 5px;
}

@media (max-width: 768px) {
  .at-share-dock {
    width: 66% !important;
  }

  .no-post-navigation .at-share-dock {
     width: 100% !important;
  }

  .mobile-post-navigation {
    display: none;
    bottom: 0;
    right: 0;
    background: #fff;
    z-index: 100000000;
  }
}


.page-template-page-bookmakers-by-sport-type-no-dropdown:not(.siteorigin-panels) .guru-show-more {
  margin-bottom: 30px;
}

.page-template-page-bookmakers-by-sport-type-no-dropdown:not(.siteorigin-panels) h2 {
  margin: 30px 0 15px;
}

.page-template-page-bookmakers-by-sport-type-no-dropdown:not(.siteorigin-panels) ul {
  font-size: 16px;
}

.navbar .nav > li ul.sub-menu {
  min-width: 120px;
  margin-top: 11px;
  padding: 7px 15px;
  /*top: 71px;*/
}

.navbar li ul.sub-menu a,
.sticky-navigation .navbar-nav .sub-menu > li > a {
  color: #000;
}

.navbar li ul.sub-menu li {
  list-style: none;
  text-align: left;
}

.navbar li ul.sub-menu li img {
  margin: 0 5px 0 0;
}

.navbar li ul.sub-menu li img,
.navbar li ul.sub-menu li span {
  vertical-align: middle;
}

.navbar li ul.sub-menu li:hover a,
.navbar li ul.sub-menu .current-lang a {
  color: #e41f49;
}

.navbar li.pll-parent-menu-item > a img {
  margin-top: -5px;
}

.navbar li.pll-parent-menu-item > a span {
  display: none;
}

.navigation a:hover, .navigation span.page-numbers.current {
  background-color: #fff;
  border: 1px solid #000796 !important;
  color: #000594 !important;
}
.navigation a, .navigation span.page-numbers.current {
  cursor: pointer;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 15px;
  border: 1px solid #ccc;
  color: #999;
}

.post-title-title-search__wrapper {
  display: flex;
  align-items: center;
}

.bookmaker-item .second-line {
  display: flex !important;
  width: 100% !important;
}

@media (max-width: 640px) {
  .bookmaker-item .second-line {
    flex-direction: column;
  }
}

.bookmaker-item .second-line .accepting-players.crypto {
  padding: 0;
}

.ms-search {
  white-space: normal !important;
  text-align: left;
}
.ms-search .ms-select-max-text {
  line-height: 20px;
}

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

/* Author block */

.guru-author-block {
  display: flex;
  border: 1px solid #f1f1f1;
  padding: 20px;
  margin: 20px;
}

.guru-author-block__image {
  margin-right: 20px;
  min-width: 160px;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.guru-author-block__image a {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 80px;
  overflow: hidden;
  margin-bottom: 5px;
}

.guru-author-block__image-description {
  font-size: 14px;
  line-height: 16px;
  text-align: center;
}

.guru-author-block__image-description p {
  font-size: 12px;
  margin: 3px 0;
  line-height: 16px;
  text-align: center;
}

.guru-author-block__description {
  display: flex;
  flex-direction: column;
  text-align: left;
  align-self: center;
}

.guru-author-block__description-social {
  margin-bottom: 10px;
  display: flex;
}

.guru-author-block__description-social a {
  margin-right: 10px;
}

.guru-author-block__description-social i {
  font-size: 18px;
}

.guru-author-block__description-text {
  font-size: 14px;
  color: #555;
  line-height: 18px;
}

@media screen and (max-width: 520px) {
  .guru-author-block__image {
    margin-right: 0;
  }
  .guru-author-block {
    flex-direction: column;
  }
  .guru-author-block__description-social {
    margin-top: 20px;
    align-self: center;
  }
  .guru-author-block__description-social i {
    font-size: 20px;
  }
}

@media (max-width: 1200px) {
  .top-bookmaker-navigation .top-bookmaker-nav-right {
    display: none;
  }
}

.top-bookmaker-navigation .top-bookmaker-nav-right {
  opacity: 0;
}

.bookmakers-list .show-more-button{
  max-width: 350px !important;
}


.is-closed .bookmaker-review-column.name-info, .is-closed .casino-review-column.name-info {
  max-width: none !important;
}

.is-closed .name-info .review-block+.review-block {
  margin-top: 0 !important;
}

.is-closed .bookmaker-review-column.cta-stuff, .is-closed .bookmaker-review-column.top-at, .is-closed .casino-review-column.cta-stuff, .is-closed .casino-review-column.top-at{
  display: none !important;
}

.is_closed, .is-closed {
  display: block !important;
}

.closed-text {
  white-space: normal !important;
}

.top-casino-navigation .closed-text, .top-bookmaker-navigation .closed-text{
  display: none !important;
}

/* Arbritrage calculator */
.arbitrage-calculator {
  font-size: 18px;
  line-height: 28px;
  color: white;
}
.arbitrage-calculator input {
  border: none;
}
.arbitrage-calculator .text-black {
  color: black;
}
.arbitrage-calculator .flex {
  display: flex;
}
.arbitrage-calculator .flex-col {
  flex-direction: column;
}
.arbitrage-calculator .items-end {
  align-items: flex-end;
}
.arbitrage-calculator .justify-center {
  justify-content: center;
}
.arbitrage-calculator .w-full {
  width: 100%;
}
.arbitrage-calculator .w-1-4 {
  width: 25%;
}
.arbitrage-calculator .w-1-2 {
  width: 50%;
}
.arbitrage-calculator .mb-4 {
  margin-bottom: 16px;
}
.arbitrage-calculator .mt-4 {
  margin-top: 16px;
}
.arbitrage-calculator .mt-5 {
  margin-top: 20px;
}
.arbitrage-calculator .mt-10 {
  margin-top: 40px;
}
.arbitrage-calculator .p-2 {
  padding: 8px;
}
.arbitrage-calculator .p-4 {
  padding: 16px;
}
.arbitrage-calculator .px-3 {
  padding-left: 12px;
  padding-right: 12px;
}
.arbitrage-calculator .px-4 {
  padding-left: 16px;
  padding-right: 16px;
}
.arbitrage-calculator .px-5 {
  padding-left: 20px;
  padding-right: 20px;
}
.arbitrage-calculator .py-1 {
  padding-top: 4px;
  padding-bottom: 4px;
}
.arbitrage-calculator .py-2 {
  padding-top: 8px;
  padding-bottom: 8px;
}
.arbitrage-calculator .border {
  border: 1px solid black;
}
.arbitrage-calculator .border-b {
  border-bottom: 1px solid white;
}
.arbitrage-calculator .border-white {
  border-color: white;
}
.arbitrage-calculator .bg-white {
  background-color: white;
}
.arbitrage-calculator button[type="submit"] {
  background-color: transparent;
  border: none;
}
.arbitrage-calculator .rounded {
  border-radius: 4px;
}
.arbitrage-calculator .rounded-3xl {
  border-radius: 16px;
}
.arbitrage-calculator .gap-2 {
  gap: 8px;
}
.arbitrage-calculator .gap-5 {
  gap: 20px;
}
.arbitrage-calculator .title {
  font-weight: bold;
  font-size: 20px;
  line-height: 28px;
  color: black;
}
.arbitrage-calculator .cursor-pointer:hover {
  cursor: pointer;
}

@media all and (min-width: 640px) {
  .arbitrage-calculator .sm-w-1-4 {
    width: 25%;
  }
  .arbitrage-calculator .sm-w-1-2 {
    width: 50%;
  }
  .arbitrage-calculator .sm-w-3-4 {
    width: 75%;
  }
  .arbitrage-calculator .sm-flex-row {
    flex-direction: row;
  }
  .arbitrage-calculator .sm-gap-2 {
    gap: 8px;
  }
  .arbitrage-calculator .sm-text-right {
    text-align: right;
  }
  .arbitrage-calculator .sm-block {
    display: block !important;
  }
  .arbitrage-calculator .sm-hidden {
    display: none !important;
  }
}
