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

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: 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 {
  background: url(../images/bg-image-1.jpg) no-repeat center top fixed;
  -webkit-background-size: cover;
  background-size: cover;
}

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: 50px;
}


.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-brand img {
  margin-top: -2px;
}

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


/* STICKY NAVIGATION */
.sticky-navigation {
  min-height: 75px;
  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: auto;
}

.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.bgcolor-2,
footer.bgcolor-2 p {
  color: #FFF;
}

footer.bgcolor-2 p {
  font-size: 14px;
}

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

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

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

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

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

@media (max-width: 580px) {
  footer .awareness a:first-child img {
    margin-bottom: 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: -1px;
}

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

footer .logos a:first-child img {
  width: 262px;
  margin-bottom: -35px;
}

@media (max-width: 992px) {
  footer .logos a {
    margin: 0;
    display: block;
  }

  footer .logos a:first-child img {
    margin-bottom: 10px;
  }

  footer .logos a:last-child img {
    margin-top: 20px;
  }
}

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

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

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

.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 !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-image: url("data:image/svg+xml;utf8,<svg fill='#323232' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 98%;
  background-position-y: center;
  border: 1px solid #323232;
  border-radius: 3px;
  padding-right: 2rem;
}

.filter.keyword-search .search-term {
  float: left;
  margin: 0 10px 0 0;
}

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

.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: 3px;
  padding: 5px 13px 6px;
  background: #000000;
  color: #FFF;
}

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

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

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

.single-post .post-description a:visited {
  color: #1a0dab !important;
  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-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;
  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;
}

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

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

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

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

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

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

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

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

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

.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 15px;
  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 {
  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 .panel-grid h3 {
  margin: 0;
}

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

.page-betting-listing .panel-row-style.bookmaker .video-icon {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 120px;
}

.page-betting-listing .panel-row-style.bookmaker .tooltip {
  margin-left: 23px;
}

.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-content {
  width: 650px;
}

.siteorigin-panels .post-contents {
  width: 100%;
  margin: 0 auto;
  background: #FFF;
  padding: 15px;
  box-shadow: 0 1px 2px rgba(0,0,0,.1);
}

.siteorigin-panels .post-contents h1 {
  text-align: center !important;
  margin: 0 0 20px;
}

.siteorigin-panels .post-contents .panel-layout {
  max-width: 600px;
  margin: 0 auto;
}

.page-betting-listing.siteorigin-panels .post-contents {
  width: initial;
  margin: 0;
  padding: 0;
  box-shadow: initial;
  background: transparent;
}

.page-betting-listing.siteorigin-panels .post-contents .panel-layout {
  max-width: initial;
  margin: inherit;
}

@media (min-width: 992px) {
  .siteorigin-panels .post-contents {
    width: 66.7%;
  }
}