
/*------------------------------------------------------------
# Global classes
------------------------------------------------------------*/
.flex {
    display: flex;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: normal;
    color: hsl(0, 0%, 90%);
}

@font-face {
    font-family: "mountains";
    src: url(fonts/beyond_the_mountains.ttf);
    src: url(fonts/beyond_the_mountains.otf);
    font-weight: 400;
}

.d-col-n {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}

/*------------------------------------------------------------
# site-header
------------------------------------------------------------*/
.home-page {
    background: url(imgs/middle-cover.jpg) no-repeat;
}

.site-header {
    position: relative;
    width: 100%;
}

.site-header figure {
    margin: 0;
    padding: 0;
}

.site-header figure img {
    max-width: 100%;
}

/*------------------------------------------------------------
## header-bar
------------------------------------------------------------*/
.site-header .header-bar {
    /*position: absolute;
    top: -40px;
    left: 55px;
    z-index: 99;
    width: 100%;
    padding: 40px 0;*/
	position: absolute;
	top: -50px;
	left: 55px;
	z-index: 99;
	width: 100%;
	/*padding: 40px 0;left: 55px;
	right: 18%;*/
	
}

.header-bar .site-branding {
    margin-bottom: 0;
    font-size: 30px;
	color:#ff33da;
    font-weight: 800;
}

.header-bar .site-branding a {
    text-decoration: none;
}

/*------------------------------------------------------------
### site-navigation
------------------------------------------------------------*/
/*
  Hamburger Menu
----------------------------------------*/
.hamburger-menu {
    position: relative;
    width: 100%;
    max-width: 24px;
    height: 22px;
    margin-left: auto;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.hamburger-menu span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
	color:hsl(306, 89%, 48%);
    border-radius: 10px;
    opacity: 1;
    left: 0;
    transition: .25s ease-in-out;
}

.hamburger-menu span:nth-child(1) {
    top: 2px;
}

.hamburger-menu span:nth-child(2),
.hamburger-menu span:nth-child(3) {
    top: 10px;
}

.hamburger-menu span:nth-child(4) {
    top: 18px;
}

.hamburger-menu.open span:nth-child(1) {
    top: 18px;
    width: 0;
    left: 50%;
}

.hamburger-menu.open span:nth-child(2) {
    transform: rotate(45deg);
}

.hamburger-menu.open span:nth-child(3) {
    transform: rotate(-45deg);
}

.hamburger-menu.open span:nth-child(4) {
    top: 18px;
    width: 0;
    left: 50%;
}

.site-navigation {
    position: absolute;
    top: -11px;
    right: 15px;
    z-index: 9999;
    width: 100%;
    height: 22px;
    overflow: hidden;
    list-style: none;
    transition: all .35s;
    color: hsl(0, 0%, 100%);
}

.site-navigation.show {
    height: auto;
}

.site-navigation ul {
    position: fixed;
    top: 0;
    left: -320px;
    z-index: 9999;
    width: 320px;
    height: 100vh;
    overflow-x: scroll;
    padding: 30px;
    margin: 0;
    background: #050505;
    transition: all 0.35s;
}

.site-navigation.show ul {
    left: 0;
}

.site-navigation ul li {
    display: block; 
	color:#ff33da;
    padding: 15px 0;
}

.site-navigation ul li a {
    display: block;
    color:#ff33da;
    transition: all 0.35s;
    text-decoration: none; font-family: "mountains";
    font-size: 14px;
    padding-left: 40px;
}
.site-navigation ul li a:hover
{
color:rgba(237,34,38,1.00);
}

.btmline1
{
   border-bottom:0.5px solid #ff33da;
   border-bottom-left-radius:15px;
}

.btmline
{
   border-bottom:0.5px solid #ff33da;
}

.btmline2
{
   border-bottom:0.5px solid #ff33da;
   border-bottom-right-radius:15px; 
}


.celebration
{
	
	/*border:solid 1px red;*/
	color:rgba(237,34,38,1.00);
    font-family: "Edwardian Script ITC";
	text-align:center;
	position:absolute;
	top:38%;
	padding-bottom:10px;
	left:15%;
}

.celebration h1{font-size:80px;}


/*Popup Description*/

/*data-tooltip*/
[data-tooltip] {
  position: relative;
  z-index: 2;
  cursor: pointer;
}

/* Hide the tooltip content by default */
[data-tooltip]:before,
[data-tooltip]:after {
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  pointer-events: none;
}

/* Position tooltip above the element */
[data-tooltip]:before {
  position: absolute;
  bottom: 150%;
  left: 50%;
  margin-bottom: 5px;
  margin-left: -80px;
  padding: 7px;
  width: 160px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #000;
  background-color: hsla(0, 0%, 20%, 0.9);
  color: #fff;
  content: attr(data-tooltip);
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
}

/* Triangle hack to make tooltip look like a speech bubble */
[data-tooltip]:after {
  position: absolute;
  bottom: 150%;
  left: 50%;
  margin-left: -5px;
  width: 0;
  border-top: 5px solid #000;
  border-top: 5px solid hsla(0, 0%, 20%, 0.9);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: " ";
  font-size: 0;
  line-height: 0;
}

/* Show tooltip content on hover */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}


@media screen and (min-width: 992px) {
    .header-bar .site-branding {
        margin-left: 35px;
    }

    .site-navigation {
        position: relative;
        top: auto;
        right: auto;
        height: auto;
       /* padding-right: 35px; padding-right: 250px;*/
        background: transparent;
    }

    .site-navigation ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        align-items: center;
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: auto;
        padding: 0;
        overflow: auto;
        background: transparent;
    }

    .site-navigation ul li {
        padding: 0;
    }

    .site-navigation ul li:nth-last-of-type(1) {
        padding-left: 30px;
    }

    .site-navigation ul li a {
       /* color: #ff33da;*/ color: #fff;
		font-size:22px;
		font-weight:bold;
		padding:15px;letter-spacing: 4.2px;
    }
}

/*------------------------------------------------------------
# hero
-----------------------------------------------------------*/

.hero-content-main{
	padding: 220px 32% ;
    /*background: url("images/cover.jpg") no-repeat;
	background-size: cover !important;
	/*position:relative;*/
	
}

.hero-content {
    padding: 0px 0 0px 0;
   /*background: url("images/cover.jpg") no-repeat;*/
	/*background: url("img/event-party-3005668.jpg") no-repeat;*/
	
  
  animation: shrink 10s ease-in ;
  -webkit-animation: shrink 10s ease-in ;
  animation-timing-function: ease-out; 
  animation-delay: 0.2s;
   overflow: hidden; 
   background-size:100% 100%;
  
}


  


@-webkit-keyframes shrink {
  0% {
    background-size: 150% 150%;
  }
  100% {
    background-size: 100% 100%;
  }
  
}




@keyframes shrink {
  0% {
    background-size: 150% 150%;
  }
  100% {
    background-size: 100% 100%;
  }
  
}


.hero-content .entry-header {
    position: relative;
    text-align: center;
}

.hero-content .entry-header h2 {
    padding: 50px;
    margin: 0;
    font-family: mountains;
    font-size:120px;
    background: -webkit-linear-gradient(#00d0ff, #25ffbf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	
}

.hero-content .entry-header .entry-meta-date {
    position: absolute;
    width: 100%;
    top: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: hsl(0, 0%, 90%);
    text-align: center;
}

@media screen and (min-width: 992px) {
    .hero-content .entry-header h2 {
        font-size: 172px;
    }

    .hero-content .entry-header .entry-meta-date {
        top: 60px;
    }
}


/*------------------------------------------------------------
## countdown
------------------------------------------------------------*/
.countdown {
    margin-top: 40px;
}

.countdown-holder {
    min-width: 150px;
    margin-bottom: 30px;
}

.countdown-holder .dday,
.countdown-holder .dhour,
.countdown-holder .dmin,
.countdown-holder .dsec {
    display: block;
    font-size: 72px;
    font-weight: 600;
    line-height: 1;
    color: hsl(0, 0%, 100%);
}

.countdown-holder label {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: hsl(0, 0%, 100%);
}

/*------------------------------------------------------------
## hero-content entry-footer
------------------------------------------------------------*/
.hero-content .entry-footer {
    margin-top: 175px;
    text-align: center;
} 

.hero-content .entry-footer .btn {
    background: hsl(0, 0%, 100%);
    padding: 16px 40px;
    border-radius: 0;
    margin-right: 20px;
    color: hsl(0, 0%, 17%);
    font-weight: 600;
}

.hero-content .entry-footer a:hover, .hero-content .entry-footer .current {
    background: -webkit-linear-gradient(#00d0ff, #25ffbf);
    color: hsl(0, 0%, 0%);
}

/*------------------------------------------------------------
# The Lineup Artists - Headliners
------------------------------------------------------------*/
.content-section {
    min-height: 0px;
    width: 100%;
    /*padding-bottom: 120px;*/
    /*background: url("new-images/middle-cover-pattern1.jpg") no-repeat;*/
    background: url("new-images/middle-cover31-new.jpg") repeat;
    /*background-size: 100% auto;*/
}

.content-section .middle-cover {
    margin: 0;
    padding: 0;
    position: relative;
}

.content-section .middle-cover img {
    max-width: 100%;
}

/*------------------------------------------------------------
## lineup-artists-headline
------------------------------------------------------------*/
.lineup-artists-headline {
    margin-top: 50px;
}

.lineup-artists-headline .entry-title p {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.lineup-artists-headline .entry-title h2 {
   width: 100%;
    font-size: 48px;
    font-weight: 600;
    color: #ffffff;
}
    /*BACKGROUND-COLOR: #5F4431;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    color: transparent;*/
}

/*------------------------------------------------------------
## lineup-artists
------------------------------------------------------------*/
.lineup-artists {
    padding-top: 80px;
}

.lineup-artists .featured-image {
    margin: 0;
    padding: 0;
}

.lineup-artists .featured-image {
    width: 100%;
}

.lineup-artists .featured-image img {
    width: 100%;
    max-width: 100%;
}

/*------------------------------------------------------------
### lineup-artists-wrap
------------------------------------------------------------*/
.lineup-artists .lineup-artists-wrap {
    margin-top: 80px;
}

.lineup-artists .lineup-artists-wrap .lineup-artists-description {
    position: relative;
    width: 100%;
}

.lineup-artists .lineup-artists-wrap .lineup-artists-description-container {
    position: relative;
    padding: 30px;
    background: #5f4431cc;
    box-shadow: 50px 40px 115px rgba(0, 0, 0, 0.1);
}

.lineup-artists-description .entry-title {
    font-size: 30px;
    font-weight: 600;
    color: #ffffff;
}

.lineup-artists-description .entry-content {
       margin-top: 20px;
    font-size: 15px;
    color: #ffffff;
    line-height: 2;
}

.lineup-artists-wrap .box-link {
    position: absolute;
    margin: 0;
    padding: 0;
    top: -24px;
    right: 50px;
    z-index: 999;
}

@media screen and (min-width: 768px) {
    .lineup-artists .lineup-artists-wrap {
        margin-top: 30px;
    }

    .lineup-artists .featured-image {
        max-width: 360px;
    }

    .lineup-artists .lineup-artists-wrap .lineup-artists-description {
        width: calc(100% - 360px);
    }

    .lineup-artists .lineup-artists-wrap .lineup-artists-description-container {
        position: absolute;
        z-index: 99;
        top: 100px;
        left: -75px;
        width: calc(100% + 75px);
    }

    .lineup-artists .lineup-artists-wrap:nth-of-type(even) .lineup-artists-description-container {
        right: -75px;
        left: auto;
    }

    .lineup-artists .lineup-artists-wrap:nth-of-type(even) .box-link {
        right: auto;
        left: 50px;
    }
}

@media screen and (min-width: 992px) {
    .lineup-artists .lineup-artists-wrap .lineup-artists-description-container {
        padding: 40px;
    }
}


@media screen and (min-width: 1200px) {
    .lineup-artists .lineup-artists-wrap .lineup-artists-description-container {
        max-width: 790px;
    }

    .lineup-artists .lineup-artists-wrap:nth-last-of-type(1) {
        margin-left: 80px;
    }
}

/*------------------------------------------------------------
# the-complete-lineup
------------------------------------------------------------*/
.the-complete-lineup {
    margin-top: 115px;
}

.the-complete-lineup .entry-title p {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.the-complete-lineup .entry-title h2 {
    width: 100%;
    margin: 0;
    font-size: 48px;
    font-weight: 600;
    /*color: hsl(0, 0%, 0%);*/
    BACKGROUND-COLOR: #ffffff;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    color: transparent;
}

/*------------------------------------------------------------
## the-complete-lineup-artists
------------------------------------------------------------*/
.the-complete-lineup-artists {
    position: relative;
    margin-top: 110px;
    height: auto;
}

.the-complete-lineup-artists .artist-single {
    margin-bottom: 0px;
}

.the-complete-lineup-artists .artist-single:nth-of-type(even) {
    margin-top: 120px;
}

.the-complete-lineup-artists .artist-single figure {
    margin: 0;
    padding: 0;
    width: 100%;
}

.the-complete-lineup-artists .artist-single .box-link {
    position: absolute;
    top: 15px;
    left: 232px;
    cursor: pointer;
}

.the-complete-lineup-artists .artist-single .featured-image img {
    max-width: 100%;
    height: auto;
    width: 100%;
}

.the-complete-lineup-artists .artist-single .featured-image a {
    display: block;
}

.the-complete-lineup-artists .artist-single h2 {
    margin-top: 38px;
    font-size: 24px;
    font-weight: 600;
    color: hsl(0, 0%, 2%);
    text-align: center;
}

@media screen and (min-width: 768px) {
    .the-complete-lineup-artists .artist-single:nth-child(6) {
        margin-top: 120px;
    }
}


@media screen and (min-width: 1200px) {
    .the-complete-lineup-artists .artist-single:nth-child(1) {
        margin-top: 0px;
    }

    .the-complete-lineup-artists .artist-single:nth-child(2) {
        /*margin-top: 90px;*/
        margin-top:120px;
    }

    .the-complete-lineup-artists .artist-single:nth-child(3) {
        /*margin-top: 48px;*/
        margin-top:0px;
    }

    .the-complete-lineup-artists .artist-single:nth-child(4) {
        /*margin-top: 0;*/
        margin-top:120px;
    }

    .the-complete-lineup-artists .artist-single:nth-child(5) {
        /*margin-top: 75px;*/
        margin-top:0px;
    }

    .the-complete-lineup-artists .artist-single:nth-child(6) {
        /*margin-top: 165px;*/
        margin-top:120px;
    }

    .the-complete-lineup-artists .artist-single:nth-child(7) {
        /*margin-top: 25px;*/
        margin-top:0px;
    }

    .the-complete-lineup-artists .artist-single:nth-child(8) {
        /*margin-top: 75px;*/
        margin-top:120px;
    }
}

/*------------------------------------------------------------
# see the-complete-lineup button
------------------------------------------------------------*/
.see-complete-lineup {
    margin-top: 105px
}

.see-complete-lineup .entry-footer .btn {
    padding: 15px 35px;
    border-radius: 0;
    margin-right: 20px;
    background: -webkit-linear-gradient(#00d0ff, #25ffbf);
    font-weight: 500;
}

.see-complete-lineup .entry-footer a {
    font-size: 14px;
    font-weight: 600;
    color: hsl(0, 0%, 100%);
}

/*------------------------------------------------------------
# homepage-next-events
------------------------------------------------------------*/
.homepage-next-events {
    margin-top: 100px;
}

.homepage-next-events .entry-title p {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    color: hsl(0, 0%, 48%);
}

.homepage-next-events .entry-title h2 {
    width: 100%;
    margin: 0;
    font-size: 48px;
    font-weight: 600;
    color: #5f4431;
    /*background-image: linear-gradient(#524da1, #524da1, #ef3e6f, #f5923a); 
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    color: transparent;*/
}
/**/
/*------------------------------------------------------------
## .next-event-slider
------------------------------------------------------------*/
.next-event-slider-wrap {
    position: relative;
	margin-left: -120px;
    width: 130%;
}

.next-event-slider {
    margin-top: 110px;
}

.next-event-slider .featured-image {
    display: block;
    margin: 0;
    position: relative;
}

.next-event-slider .featured-image img {
    display: block;
    width: 100%;
}

.next-event-slider .entry-content {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    height: 100%;
    padding: 30px;
    text-align: center;
    background: rgba(0,0,0,.75);
    text-decoration: none;
    transition: all .5s;
    opacity: 0;
    visibility: hidden;
}

.next-event-slider .featured-image:hover .entry-content {
    opacity: 1;
    visibility: visible;
}

.next-event-slider .entry-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: hsl(0, 0%, 100%);
}

.next-event-slider .entry-content p {
    font-size: 14px;
    color: hsl(0, 0%, 100%);
}

.next-event-slider-wrap .swiper-button-next {
    top: auto;
    bottom: -21px;
    right: auto;
    left: 50%;
    width: 42px;
    height: 42px;
    margin-left: -21px;
    background: transparent;
}

.next-event-slider-wrap .swiper-button-next img {
    width: 100%;
}

@media screen and (min-width: 768px){
    .next-event-slider-wrap .swiper-button-next {
        bottom: -42px;
        width: 84px;
        height: 84px;
        margin-left: -42px;
    }
}

/*------------------------------------------------------------
# home-page-last-news
------------------------------------------------------------*/
.home-page-last-news {
    margin-top: 220px;
}

.home-page-last-news .entry-title p {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    color: hsl(0, 0%, 48%);
}

.home-page-last-news .entry-title h2 {
    width: 100%;
    margin: 0;
    font-size: 48px;
    font-weight: 600;
    color: hsl(0, 0%, 0%);
}

/*------------------------------------------------------------
## home-page-last-news-wrap
------------------------------------------------------------*/
.home-page-last-news-wrap {
    margin-top: 110px;
}

.home-page-last-news-wrap .box-link-date {
    position: absolute;
    top: 30px;
    left: 0;
    padding: 10px 25px;
    background: -webkit-linear-gradient(#00d0ff, #25ffbf);
    font-size: 20px;
    font-weight: 500;
}

.home-page-last-news-wrap .box-link-date a {
    color: hsl(0, 0%, 100%);
    text-decoration: none;
}

.home-page-last-news-wrap .content-wrapper {
    background: hsl(0, 0%, 100%);
    box-shadow: 10px 40px 115px 27px rgba(0, 0, 0, 0.1);
}

.home-page-last-news-wrap .featured-image {
    margin: 0;
    padding: 0;
    box-shadow: 10px 40px 115px 27px rgba(0, 0, 0, 0.1);
}

.home-page-last-news-wrap .featured-image img {
    max-width: 100%;
}

.home-page-last-news-wrap .entry-content {
    padding: 35px 45px;
}

.home-page-last-news-wrap .entry-content .entry-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: hsl(0, 0%, 9%);
}

.home-page-last-news-wrap .entry-content .entry-header h2 a {
    color: hsl(0, 0%, 9%);
}

.home-page-last-news-wrap .entry-content .entry-meta {
    margin-top: 6px;
    font-size: 12px;
    color: hsl(0, 0%, 9%);
    font-weight: 500;
}

.home-page-last-news-wrap .entry-content .entry-meta a {
    color: hsl(0, 0%, 10%);
}

.home-page-last-news-wrap .entry-content .entry-description {
    margin-top: 25px;
    font-size: 15px;
    color: hsl(0, 0%, 60%);
    line-height: 2;
}

.home-page-last-news-wrap .entry-content .entry-meta span {
    margin-right: 10px;
}

/*------------------------------------------------------------
# site-footer
------------------------------------------------------------*/
.site-footer {
    position: relative;
    padding: 40px 0 30px;
    background: url(new-images/dollu-footer-bg.png) no-repeat;
    background-size: cover;
	margin-top:100px;
}

.site-footer::before {
    position: absolute;
    content: " ";
    height: 100%;
    width: 100%;
    z-index: 3;
    background: hsla(0, 0%, 5%, 0.7);
    top: 0;
    left: 0;
}

.site-footer .footer-cover-title {
    min-height: 480px;
    width: 100%;
}

.site-footer .footer-cover-title h2 {
    font-size: 20vw;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0;
    text-align: center;
    color: hsl(0, 0%, 100%);
    mix-blend-mode: overlay;
    z-index: 2;
}

/*------------------------------------------------------------
## .site-footer footer-content-wrapper
------------------------------------------------------------*/
.footer-content-wrapper {
    position: absolute;
    width: 100%;
    height: auto;
    z-index: 4;
    top: 130px;
    left: 0;
    padding: 6px 0;
    text-align: center;
}

.footer-content-wrapper .flex {
    flex-direction: column;
}

.footer-content-wrapper .entry-title {
    text-align: center;
    margin-top: -80px;
}

.footer-content-wrapper .entry-title a {
    font-size: 52px;
    font-weight: 700;
    color: hsl(0, 0%, 100%);
    line-height: 1;
    text-decoration: none;
}

@media screen and (min-width: 576px) {
    .footer-content-wrapper .entry-title a {
        font-size: 100px;
    }
}

.footer-content-wrapper .entry-mail {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 700;
    color: hsl(0, 0%, 100%);
}

.footer-content-wrapper .entry-mail a {
    text-decoration: none;
    color: hsl(0, 0%, 100%);
	letter-spacing: 2px;
}

.footer-content-wrapper .copyright-info {
    font-size: 18px;
    color: #ffffff;
    margin: auto;
}

.footer-content-wrapper .copyright-info a{
    color: #ffffff;
}

.footer-sl{
    position: relative;
}

.footer-sl li{
    position: relative;
    margin-right: 30px;
    display: inline-block;
    margin-top: 30px;
}

.footer-sl li a{
    position: relative;
    color: #ffffff;
    font-size: 16px;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.footer-sl li a i{
    font-size: 30px;
}

.footer-content-wrapper .footer-social {
    margin-top: 32px;
}

.footer-content-wrapper .footer-social .flex {
    flex-direction: row !important;
	margin-left: -35px;
}

.footer-content-wrapper .footer-social ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-content-wrapper .footer-social ul a {
    padding: 5px 16px;
    font-size: 12px;
    color: hsl(0, 0%, 100%);
}

/*------------------------------------------------------------
# about-us
------------------------------------------------------------*/
.about-us {
    /*background: url("imgs/about-us-background.jpg") no-repeat;*/
    width: 100%;
    height: 100%;
}

/*------------------------------------------------------------
# site-header
------------------------------------------------------------*/
.about-us .site-header {
}

.about-us .site-header figure {
    margin: 0;
    padding: 0;
}

.about-us .site-header figure img {
    max-width: 100%;
}

/*------------------------------------------------------------
## Page Header
------------------------------------------------------------*/
.page-header {
    min-height: 520px;
    padding-top: 280px;
      background-size: contain;
}

.about-us .page-header {
    background: url("images/about-us-header-background.jpg") no-repeat;    
}

.page-header .entry-title {
	 
    font-size: 70px;
    color: white;
    margin: 75px;
    padding: 60px;
	
	
}

.page-header .breadcrumbs {
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    list-style: none;
}

.page-header .breadcrumbs li {
    position: relative;
    padding-right: 14px;
}

.page-header .breadcrumbs li::after {
    content: '/';
    position: absolute;
    top: 3px;
    right: 0;
    height: 20px;
    width: 14px;
    font-size: 12px;
    text-align: center;
}

.page-header .breadcrumbs li:nth-last-of-type(1)::after {
    display: none;
}

.page-header .breadcrumbs li a {
    text-decoration: none;
    color: #fff;
}

.main-content {
    margin: 120px 0;
}

.main-content .entry-header .entry-title p {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    color: #7a7a7a;
}

.main-content .entry-header .entry-title h2 {
    margin: ;
    padding: 0;
    font-size: 48px;
    font-weight: 600;
    color: #040608;
}

.about-us .main-content .entry-content {
    margin-top: 20px;
}

.about-us .main-content .entry-content .entry-header h3 {
    margin: 0;
    padding: 0;
    font-size: 24px;
    font-weight: 600;
    color: #040608;
}

.about-us .main-content .entry-content .entry-description p {
    margin: 0 !important;
    padding: 0;
    margin-top: 25px !important;
    font-size: 15px;
    font-weight: 300;
    color: #989898;
    line-height: 2;
    word-break: break-all;
    hyphens: auto;
}

.about-us .main-content .featured-image {
    margin-top: 110px;
}

.about-us .main-content .featured-image img {
    max-width: 100%;
}

.about-us .hero-slider-images {
    margin-top: 110px;
}

.about-us .hero-slider-images .featured-images {
    position: relative;
    margin: 0;
    padding: 0;
}

.about-us .hero-slider-images .featured-images a {
    display: block;
}

.about-us .hero-slider-images .featured-images img {
    max-width: 100%;
}

.about-us .hero-slider-images .featured-images .button {
    position: absolute;
    top: 43%;
    left: 47.4%;
}

.milestones {
    padding-bottom: 120px;
}

.milestones .d-col-n {
    min-width: 150px;
}

/*------------------------------------------------------------
# Testimonials
------------------------------------------------------------*/
.testimonial-wrap {
    position: relative;
    background-image: linear-gradient(to bottom, #0196bf, #00a0bc, #00a9b3, #00b1a4, #1bb791);
}

.testimonials-container,
.testimonial-featured-image {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.testimonials-container {
    padding-bottom: 60px;
}

.testimonial-content-wrap {
    padding: 120px 80px 110px 40px;
}

.testimonial-content-wrap .user-avatar {
    width: 52px;
    height: 52px;
    margin-right: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-content {
    width: calc(100% - 92px);
}

.testimonial-content-wrap .entry-title {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
}

.testimonial-content-wrap .entry-content {
    margin-top: 48px;
    font-size: 15px;
    font-weight: 300;
    font-style: italic;
    color: #fff;
}

.testimonial-content-wrap .entry-footer {
    margin-top: 40px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.testimonial-content-wrap .entry-footer a {
    color: #fff;
    text-decoration: none;
}

.testimonials-container .swiper-button-next {
    top: 50%;
    right: 15px;
    width: 42px;
    height: 42px;
    margin-top: -21px;
    background: transparent;
}

.testimonials-container .swiper-button-next img {
    width: 100%;
}

.testimonials-container .swiper-pagination-bullets {
    padding-left: 292px;
    text-align: left;
}

.testimonials-container .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 6px !important;
    background: transparent;
    border: 2px solid #fff;
    opacity: 1;
}

.testimonials-container .swiper-pagination-bullet-active {
    background: #fff;
}

.testimonial-featured-image img {
    min-width: 100%;
    width: auto;
    height: 100%;
}

@media screen and (min-width: 992px){
    .testimonials-container,
    .testimonial-featured-image {
        width: 50%;
    }

    .testimonials-container .swiper-button-next {
        right: -42px;
        width: 84px;
        height: 84px;
        margin-top: -42px;
    }
}


@media screen and (min-width: 1200px){
    .testimonials-container,
    .testimonial-featured-image {
        width: 50%;
    }

    .testimonial-content-wrap {
        padding: 120px 80px 110px 100px;
    }
}


@media screen and (min-width: 1500px){
    .testimonials-container,
    .testimonial-featured-image {
        width: 50%;
    }

    .testimonial-content-wrap {
        padding: 120px 180px 110px 200px;
    }
}

/*------------------------------------------------------------
# tickets-page
------------------------------------------------------------*/
.tickets-page {
    background: url("images/elements-total-background.jpg") no-repeat;
    width: 100%;
    height: 100%;
}

/*------------------------------------------------------------
# Page Header
------------------------------------------------------------*/
.tickets-page .page-header {
    background: url("images/tickets-page-header-background.jpg") no-repeat;
}

.tickets-page .tabs {
    margin-top: 80px;
}

.tickets-page .tabs ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tickets-page .tabs .active {
    background: -webkit-linear-gradient(#00d0ff, #25ffbf) !important;
}

.tabs .tab-nav {
    padding: 10px 10px;
    margin-right: 0;
    font-size: 13px;
    line-height: 1;
    font-weight: 500;
    color: #040608;
    cursor: pointer;
}

.tabs .tab-nav:hover {
    background: -webkit-linear-gradient(#00d0ff, #25ffbf) !important;
}

.tickets-page .tabs .tabs-container {
    margin-top: 5px;
    box-shadow: 13px 26px 139px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.tickets-page .tabs .tab-content {
    padding: 48px 15px;
    color: #989898;
    font-size: 15px;
    line-height: 1.8;
}

@media screen and (min-width: 576px){
    .tabs .tab-nav {
        padding: 20px;
    }
}

@media screen and (min-width: 992px){
    .tabs .tab-content {
        padding: 48px;
    }

    .tabs .tab-nav {
        padding: 20px 60px;
        margin-right: 10px;
        font-size: 15px;
    }
}

.tickets-page .single-event-details-row {
    margin-bottom: 30px;
}

.tickets-page .single-event-details-row:nth-last-of-type(1) {
    margin-bottom: 0;
}

.single-event-details,
.single-event-details a,
.single-event-details label {
    font-size: 18px;
    font-weight: 500;
    color: #040608;
}

.single-event-details label {
    display: block;
    margin-bottom: 0;
    color: #232127;
}

.single-event-details p,
.single-event-details a {
    color: #989898;
}

.single-event-details-row p.sold-out {
    color: #040608;
}

.single-event-details-row p.sold-out span{
    color: #ff0000;
}

.single-event-map {
    width: 100%;
    margin-top: 30px;
}

.single-event-map iframe {
    width: 100%;
    height: 460px;
}

@media screen and (min-width: 768px) {
    .tickets-page .single-event-heading {
        width: auto;
    }

    .single-event-details {
        width: 220px;
    }

    .single-event-map {
        width: calc(100% - 220px);
        margin: 0;
    }

    .event-tickets {
        padding: 40px;
    }
}

@media screen and (min-width: 992px) {
    .single-event-details {
        width: 340px;
    }

    .single-event-map {
        width: calc(100% - 340px);
        margin: 0;
    }

    .event-tickets .ticket-row {
        margin-bottom: 15px;
    }

    .ticket-type {
        width: calc(100% - 400px);
        margin-bottom: 0;
    }

    .event-tickets .number-of-ticket {
        margin-bottom: 0;
    }
}

.tickets-page .event-tickets {
    padding: 72px 48px;
    background: #fff;
    box-shadow: 13px 26px 139px rgba(0, 0, 0, 0.1);
}

.tickets-page .event-tickets .ticket-row {
    background: #f4f6f7;
    margin-bottom: 15px;
}

.tickets-page .event-tickets .ticket-row .ticket-type {
    padding: 15px 24px;
    margin-right: 15px;
}

.tickets-page .event-tickets .ticket-row .entry-title {
    font-size: 18px;
    font-weight: 500;
    color: #03070c;
    width: 235px;
    margin: 0;
    padding: 0;
}

.tickets-page .main-content .event-tickets .ticket-type span {
    font-size: 16px;
    font-weight: 500;
    color: #989898;
    margin: 0;
    padding: 0;
    width: 300px;
}

.tickets-page .main-content .event-tickets .ticket-price {
    font-size: 18px;
    font-weight: 500;
    color: #03070c;
    width: 50px;
}

.tickets-page .event-tickets .number-of-tickets {
    width: 120px;
    padding: 15px 24px;
    margin-right: 25px;
}

.tickets-page .number-of-tickets .increase-ticket,
.tickets-page .number-of-tickets .decrease-ticket {
    font-size: 18px;
    font-weight: 500;
    color: #03070c;
    cursor: pointer;
}

.tickets-page .number-of-tickets .ticket-count {
    font-size: 18px;
    font-weight: 400;
    color: #03070c;
    width: 32px;
    border: 0;
    text-align: center;
    background: #f3f8f9;
}

.tickets-page .clear-ticket-count {
    font-size: 16px;
    font-weight: 500;
    color: #989898;
    margin-right: 60px;
    cursor: pointer;
}

.tickets-page .ticket-row .btn {
    background: #f3f8f9;
    width: 100px;
    font-size: 16px;
    font-weight: 500;
    color: #ff2630;
}

/*------------------------------------------------------------
# Blog
------------------------------------------------------------*/
.blog-page {
    width: 100%;
    height: 100%;
    background: url("images/blog-page-background.jpg") no-repeat;
}

/*------------------------------------------------------------
# site-header
------------------------------------------------------------*/
.blog-page .page-header {
    background:url(images/portfolio-banner.png) no-repeat;
	  background-size: contain;
}

.blog-list-page .single-blog-content {
    display: none;
}

.blog-list-page .single-blog-content.visible {
    display: block;
}

.blog-page .blog-list-page .blog-content {
    margin-top: 100px;
    box-shadow: 15px 18px 100px rgba(0, 0, 0, 0.1);
    transition: .35s;
}

.blog-page .blog-list-page .blog-content:hover {
    box-shadow: 15px 18px 100px rgba(0, 0, 0, 0.3);
    transition: .35s;
}

.blog-page .blog-list-page .blog-content .featured-image {
    margin: 0;
    padding: 0;
}

.blog-page .blog-list-page .blog-content .featured-image img {
    max-width: 100%;
    position: relative;
}

.blog-page .blog-list-page .blog-content .box-link-date {
    position: absolute;
    top: 135px;
    left: 0;
    padding: 10px 25px;
    background: -webkit-linear-gradient(#00d0ff, #25ffbf);
    cursor: pointer;
}

.blog-page .blog-list-page .blog-content .box-link-date a {
    font-weight: 400;
    color: white;
    text-decoration: none;
}

.blog-page .blog-list-page .blog-content .entry-content {
    padding: 40px 45px;
    background: white;
}

.blog-page .blog-list-page .blog-content .entry-content .entry-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #050505;
}

.blog-page .blog-list-page .blog-content .entry-content .entry-meta {
    margin-top: 6px;
    font-size: 12px;
    color: #050505;
}

.blog-page .blog-list-page .blog-content .entry-content .entry-meta span {
    margin-right: 10px;
}

.blog-page .blog-list-page .blog-content .entry-content .entry-meta span a {
    color: #050505;
}

.blog-page .blog-list-page .blog-content .entry-content .entry-description {
    margin-top: 25px;
    font-size: 15px;
    color: #989898;
    line-height: 2;
}

.blog-page .blog-list-page .load-more {
    margin-top: 115px;
}

.blog-page .blog-list-page .load-more .btn {
    padding: 15px 35px;
    border-radius: 0;
    background: -webkit-linear-gradient(#00d0ff, #25ffbf);
    font-weight: 500;
    outline: none;
}

/*------------------------------------------------------------
# contact-page
------------------------------------------------------------*/
.contact-page {
   /* background: url("images/banner61.jpg") no-repeat; */
}

/*------------------------------------------------------------
# site-header
------------------------------------------------------------*/
.contact-page .page-header {
    background:url(images/banner61.jpg) no-repeat;background-size:contain;
	  background-size: contain;
}

.contact-page .main-content {
    background: #fff;
    box-shadow: 13px 14px 68px rgba(0, 0, 0, 0.1);
}

.contact-page-map {
    width: 100%;
}

.contact-page-map iframe {
    width: 100%;
    height: 660px;
}

.contact-page .contact-details {
    margin-top:  -168px; !important
}

.contact-page .contact-details .contact-medium {
    padding: 0 20px;
}

.contact-page .contact-details .contact-medium .contact-icon {
    padding: 0;
    margin-right: 20px;
}

.contact-page .contact-details .contact-medium .contact-icon img {
    max-width: 100%;
    height: auto;
}

.contact-page .contact-details .contact-medium .entry-title {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #040608;
}

.contact-page .contact-details .contact-medium .entry-content {
    margin-top: 5px;
    font-size: 18px;
    font-weight: 500;
    color: #989898;
}

.contact-page .get-in-touch {
    margin-top: 115px;
    padding: 0 15px;
}

@media screen and (min-width: 992px) {
    .contact-page .get-in-touch {
        padding: 0 100px;
    }
}

.contact-page .get-in-touch .entry-header {
    text-align: center;
}

.contact-page .get-in-touch .entry-title p {
    font-size: 14px;
    font-weight: 500;
    color: #989898;
    margin: 0;
	margin-top: -55px !important; 
}

.contact-page .get-in-touch .entry-title h2 {
    font-size: 48px;
    font-weight: 600;
    color: #050505;
    margin: 5px 0 0;
}

.contact-page .get-in-touch .entry-content {
    margin-top: 45px;
}

.contact-page .get-in-touch .entry-content p {
    font-size: 15px;
    color: #989898;
    line-height: 2;
    text-align: center;
}

.contact-page .main-content .get-in-touch .contact-form {
    margin-top: 0px;
}

.contact-page .contact-form input[type="text"],
.contact-page .contact-form input[type="email"],
.contact-page .contact-form textarea {
    width: 100%;
    padding: 14px 22px;
    margin-bottom: 30px;
    border: 0;
    background: #f4f6f7;
    color: #050505;
    outline: none;
	font-size: 20px;
}

.contact-page .contact-form input[type="text"]::placeholder,
.contact-page .contact-form input[type="email"]::placeholder,
.contact-page .contact-form textarea::placeholder {
    color: #7f7f7f;
    font-style: italic;
}

.contact-page .contact-form .submit {
    margin-top: 10px;
    margin-bottom: 120px;
}

.contact-page .contact-form .submit .btn {
       padding: 15px 30px;
    margin-right: 20px;
    border-radius: 0;
    font-weight: 600;
    color:#ffffff;
    /*background: #5f4431;*/
    background:#E7B56D;
}

/*------------------------------------------------------------
# elements-page
------------------------------------------------------------*/
.elements-page {
    background: url("images/elements-total-background.jpg") no-repeat;
}

.elements-page .page-header {
    background: url("images/elements-header-background.jpg") no-repeat;
}

.elements-page .elements-wrap {
    margin-bottom: 110px;
}

.elements-page .elements-wrap .entry-header h2.entry-title {
    color: #040608;
    font-size: 48px;
    font-weight: 600;
}

.elements-page .elements-wrap h2.entry-title {
    margin-bottom: 90px;
}

.elements-page .elements-wrap .entry-content .btn {
    height: 55px;
    width: 165px;
    padding: 10px 20px;
    margin-right: 20px;
    border-radius: 0;
    font-size: 16px;
    font-weight: 500;
    color: #040608;
}

.elements-page .elements-wrap .entry-content .gradient {
    background: -webkit-linear-gradient(#00d0ff, #25ffbf);
}

.elements-page .elements-wrap .entry-content .white {
    background: white;
    box-shadow: 0 13px 50px 9px rgba(0, 0, 0, 0.1);
}

.elements-page .elements-wrap .entry-content .border-blu {
    border: 2px solid #0de7e4;
}

.elements-page .elements-wrap .entry-content .color-border {
    border: 2px solid #0de7e4;
    padding: 6px;
    background: #0de7e4;
    background-clip: content-box;
}

.counter-box {
    text-align: center;
}

.counter-box .start-counter {
    font-size: 60px;
    font-weight: 500;
    color: #040608;
}

.counter-box .start-counter,
.counter-box .counter-k {
    font-size: 60px;
    font-weight: 600;
    color: #040608;
    text-align: center;
}

.counter-box .entry-title {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #989898;
}


.tabs ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tabs ul .active {
    background: -webkit-linear-gradient(#00d0ff, #25ffbf) !important;
}

.tabs ul .tab-nav {
    padding: 15px 40px;
    line-height: 1;
    color: #040608;
    font-weight: 600;
    cursor: pointer;
}

.tabs-container {
    background: #f3f8f9;
    box-shadow: 5px 14px 100px rgba(0, 0, 0, 0.1);
}

.tabs-container .tab-content {
    display: block;
    padding: 48px;
    background: #fff;
}

.tabs-container .tab-content .entry-header {
    margin-top: 0;
    font-size: 24px;
    font-weight: 500;
    color: #040608;
}

.tabs-container .tab-content p {
    margin-top: 35px;
    color: #989898;
    font-size: 15px;
    font-weight: 300;
    line-height: 2;
}

.accordion-and-tabs-wrap .accordion-wrap {
    position: relative;
}

.accordion-and-tabs-wrap .accordion-wrap .entry-title {
    width: 445px;
    margin-bottom: 20px;
    padding: 20px;
    font-size: 16px;
    color: #040608;
    cursor: pointer;
}

.accordion-and-tabs-wrap .accordion-wrap .entry-title .arrow-d::before {
    content: "-";
}

.accordion-and-tabs-wrap .accordion-wrap .entry-title .arrow-r::before {
    content: "+";
}

.accordion-and-tabs-wrap .accordion-wrap .active {
    background: -webkit-linear-gradient(#00d0ff, #25ffbf);
}

.accordion-and-tabs-wrap .accordion-wrap .entry-content {
    display: none;
    width: 100%;
    height: auto;
    padding: 0 12px;
    font-size: 15px;
    font-weight: 300;
    color: #989898;
    line-height: 2;
}

.accordion-and-tabs-wrap .accordion-wrap .accordion-active {
    display: block;
    margin-top: 0;
}

.circular-progress-bar {
    margin-bottom: 60px;
    text-align: center;
}

.circular-progress-bar .circle {
    position: relative;
    width: 210px;
    height: 210px;
}

.circular-progress-bar .circle strong {
    position: absolute;
    top: 56px;
    left: 0;
    width: 100%;
    font-size: 60px;
    color: #050505;
}

.circular-progress-bar .entry-title {
    position: absolute;
    top: 145px;
    left: 0;
    font-size: 16px;
    font-weight: 600;
    color: #989898;
    text-align: center;
    width: 100%;
}

.icon-box .entry-header {
    position: relative;
    margin: 0;
}

.icon-box .entry-header::before {
    position: absolute;
    content: "01.";
    top: -18px;
    font-size: 48px;
    font-weight: 500;
    line-height: 1;
    background: -webkit-linear-gradient(#00d0ff, #25ffbf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.icon-box .entry-header .entry-title {
    padding-left: 84px;
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    color: #050505;
}

.icon-box .entry-content {
    margin-top: 30px;
    color: #989898;
    font-size: 15px;
    line-height: 2;
    word-break: break-all;
}

.icon-box-1 .entry-header::before {
    content: "01.";
}

.icon-box-2 .entry-header::before {
    content: "02.";
}

.icon-box-3 .entry-header::before {
    content: "03.";
}


.onp-sl-flat .onp-sl-social-buttons .onp-sl-overlay-text {
    font-size: 14px;
    font-family: Arial,Helvetica,sans-serif;
    line-height: 34px;
    color: #fff;
    text-align: center;
    position: static;
    padding-left: 42px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-shadow: 0 -1px 1px rgba(0,0,0,.15)
}


/*Social media effects*/

@import url(https://fonts.googleapis.com/css?family=Khula:700)
body {
  background: #111;
}
.hidden {
  opacity:0;
}
.console-container {
 
  font-family:;
  font-size:4em;
  text-align:center;
  height:200px;
  width:600px;
  display:block;
  position:absolute;
  color:white;
  top:0;
  bottom:0;
  left:0;
  right:0;
  margin:auto;
}
/*!
 * BizPanda Lockers - v2.3.5, 2018-05-23
 * for jQuery: http://onepress-media.com/plugin/social-locker-for-jquery/get
 * for Wordpress: http://onepress-media.com/plugin/social-locker-for-wordpress/get
 *
 * Copyright 2018, OnePress, http://byonepress.com
 * Help Desk: http://support.onepress-media.com/
*/

.onp-sl,.onp-sl .onp-sl-inner-wrap,.onp-sl .onp-sl-outer-wrap {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.onp-sl iframe {
    margin: 0!important
}

.onp-sl-always-visible {
    display: block!important
}

.onp-sl {
    position: relative!important;
    background-color: #f9f9f9;
    margin: 20px auto;
    max-width: 625px
}

.onp-sl .onp-sl-group {
    padding: 35px 30px
}

.onp-sl-has-terms .onp-sl-group {
    padding: 35px 30px 25px
}

.onp-sl .onp-sl-inner-wrap {
    position: relative;
    overflow: visible
}

.onp-sl .onp-sl-non-default-screen {
    padding: 35px
}

.onp-sl .onp-sl-first-group.onp-sl-not-single-group {
    padding-bottom: 0
}

.onp-sl,.onp-sl button,.onp-sl input,.onp-sl p {
    font: normal normal 400 13px/170% Arial,Helvetica,sans-serif;
    color:rgba(0,0,0,1.00);
}

.onp-sl a
{
	color:rgba(223,8,175,1.00);
}

.onp-sl p {
    margin: 0!important
}

.onp-sl p+p {
    margin-top: 7px!important
}

.onp-sl .onp-sl-header,.onp-sl .onp-sl-text .onp-sl-strong {
    font-size: 18px;
    line-height: 130%;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 7px
}

.onp-sl .onp-sl-header {
    margin-bottom: 15px
}

.onp-sl .onp-sl-text {
    text-align: center;
    margin-bottom: 10px
}

.onp-sl .onp-sl-text p {
    line-height: 150%
}

.onp-sl .onp-sl-note {
    font-style: italic;
    text-align: center;
    font-size: 12px;
    line-height: 130%;
    padding-top: 10px;
    color: #aaa
}

.onp-sl .onp-sl-note.onp-sl-nospam {
    padding-top: 2px
}

.onp-sl .onp-sl-first-group .onp-sl-strong:after,.onp-sl .onp-sl-first-group .onp-sl-strong:before {
    content: " ";
    display: inline-block;
    width: 11px;
    height: 14px;
    margin: 0 9px;
    background: url(/static/img/lock-icon.png) 0 2px no-repeat
}

@media screen and (max-width:500px) {
    .onp-sl .onp-sl-first-group .onp-sl-strong:after,.onp-sl .onp-sl-first-group .onp-sl-strong:before {
        display: none
    }
}

.onp-sl-group-separator {
    text-align: center
}

.onp-sl-line-separator {
    border-bottom: 2px dashed #efefef;
    margin: 25px;
    height: 20px
}

.onp-sl-line-separator .onp-sl-title {
    font-size: 14px;
    line-height: 20px;
    top: 7px;
    position: relative;
    background-color: #efefef;
    display: inline-block;
    padding: 2px 12px;
    border-radius: 3px;
    color: #afafaf
}

.onp-sl-hiding-link-separator .onp-sl-title {
    text-decoration: none;
    border-bottom: 1px dashed #111;
    color: #111
}

.onp-sl-hiding-link-separator .onp-sl-title:hover {
    border-bottom: 0
}

.onp-sl-terms-inner-wrap {
    text-align: center;
    padding: 8px 40px
}

.onp-sl-terms,.onp-sl-terms a {
    font-size: 12px;
    color: #555
}

.onp-sl-terms {
    background-color: rgba(0,0,0,.025)
}

.onp-sl-agreement-checkbox {
    text-align: center;
    padding: 8px 0 10px
}

.onp-sl-social-buttons .onp-sl-agreement-checkbox {
    padding: 12px 0 10px
}

.onp-sl-has-agreement-checkbox-top .onp-sl-agreement-checkbox {
    padding: 4px 0 8px
}

.onp-sl-has-agreement-checkbox-top .onp-sl-agreement-checkbox:before {
    content: " ";
    display: block;
    height: 1px;
    width: 40%;
    border-top: 1px solid rgba(0,0,0,.08);
    margin: 0 auto 10px
}

.onp-sl .onp-sl-group .onp-sl-agreement-checkbox .onp-sl-field-checkbox:last-child {
    margin-bottom: 0
}

.onp-sl .onp-sl-agreement-checkbox .onp-sl-field-checkbox label {
    padding-left: 0
}

.onp-sl-no-consent-error .onp-sl-agreement-checkbox-inner-wrap {
    background: #ffffda;
    color: #111!important;
    padding: 10px
}

.onp-sl-agreement-checkbox .onp-sl-error {
    display: none
}

.onp-sl-no-consent-error .onp-sl-agreement-checkbox .onp-sl-error {
    display: block;
    font-weight: 700
}

.onp-sl .onp-sl-agreement-checkbox .onp-sl-checkbox {
    position: relative;
    top: 3px;
    left: auto;
    margin-top: 0;
    margin-right: 7px;
    display: inline-block
}

.onp-sl .onp-sl-agreement-checkbox .onp-sl-field-checkbox .onp-sl-checkbox-text {
    display: inline
}

.onp-sl-connect-buttons.onp-sl-has-agreement-checkbox-top .onp-sl-field-checkbox .onp-sl-checkbox-text,.onp-sl-connect-buttons.onp-sl-has-agreement-checkbox-top .onp-sl-field-checkbox .onp-sl-checkbox-text a,.onp-sl-has-agreement-checkbox-bottom .onp-sl-field-checkbox .onp-sl-checkbox-text,.onp-sl-has-agreement-checkbox-bottom .onp-sl-field-checkbox .onp-sl-checkbox-text a,.onp-sl-social-buttons.onp-sl-has-agreement-checkbox-top .onp-sl-field-checkbox .onp-sl-checkbox-text,.onp-sl-social-buttons.onp-sl-has-agreement-checkbox-top .onp-sl-field-checkbox .onp-sl-checkbox-text a {
    font-size: 13px
}

.onp-sl-subscription.onp-sl-has-agreement-checkbox-top .onp-sl-agreement-checkbox {
    margin-top: 0;
    padding-top: 0;
    text-align: left;
    margin-bottom: 10px;
    border-bottom: 1px solid #f1f1f1
}

.onp-sl-custom-form .onp-sl-subscription.onp-sl-has-agreement-checkbox-top .onp-sl-agreement-checkbox {
    border-top: 1px solid #f1f1f1;
    border-bottom: 0;
    margin-top: 10px;
    padding-top: 8px;
    padding-bottom: 10px;
    margin-bottom: 0
}

.onp-sl-subscription.onp-sl-has-agreement-checkbox-top .onp-sl-agreement-checkbox:before {
    display: none
}

.onp-sl-custom-form .onp-sl-subscription.onp-sl-has-agreement-checkbox-top .onp-sl-field-submit {
    margin-top: 0
}

.onp-sl-subscription.onp-sl-has-agreement-checkbox-bottom .onp-sl-agreement-checkbox {
    margin-top: 0;
    padding-top: 0;
    text-align: center
}

.onp-sl .onp-sl-error-body {
    text-align: center
}

.onp-sl .onp-sl-error-title {
    text-align: center!important;
    display: inline-block!important;
    background-color: #c00!important;
    font-size: 14px!important;
    line-height: 100%!important;
    padding: 4px 10px!important;
    color: #fff!important;
    vertical-align: top!important;
    text-shadow: none!important
}

.onp-sl .onp-sl-error-title:hover {
    background-color: #e00!important
}

.onp-sl .onp-sl-group-error,.onp-sl-locker-error {
    background: #c00!important;
    color: #fff!important;
    padding: 10px!important;
    margin-top: 15px!important;
    text-shadow: none!important;
    text-align: center
}

.onp-sl-group-notice {
    background: #ffffda;
    color: #111!important;
    padding: 10px!important;
    margin-top: 15px!important;
    text-shadow: none!important;
    text-align: center
}

.onp-sl .onp-sl-cross {
    background: url(/static/img/close.png) 50% 50% no-repeat;
    width: 16px;
    height: 16px;
    opacity: .1;
    filter: alpha(opacity=10);
    cursor: pointer;
    position: absolute;
    top: 4px;
    right: 4px;
    z-index: 2
}

.onp-sl:hover .onp-sl-cross {
    opacity: .2;
    filter: alpha(opacity=20)
}

.onp-sl .onp-sl-cross:hover {
    opacity: .8;
    filter: alpha(opacity=80)
}

.onp-sl .onp-sl-timer {
    position: absolute;
    right: 5px;
    bottom: 5px;
    z-index: 10
}

.onp-sl .onp-sl-timer,.onp-sl .onp-sl-timer * {
    font-size: 12px;
    line-height: 12px;
    text-transform: lowercase
}

.onp-sl .onp-sl-timer {
    color: #000;
    margin-left: 5px
}

.onp-sl .onp-sl-timer-counter {
    font-weight: 700
}

.onp-sl-overlap-background,.onp-sl-overlap-box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

.onp-sl-overlap-background {
    background-color: #fefefe;
    z-index: 25;
    -ms-filter: "alpha(Opacity=80)";
    filter: alpha(opacity=80);
    -moz-opacity: .8;
    -khtml-opacity: .8;
    opacity: .8
}

.onp-sl-blurring-mode .onp-sl-overlap-background {
    -ms-filter: "alpha(Opacity=20)";
    filter: alpha(opacity=20);
    -moz-opacity: .2;
    -khtml-opacity: .2;
    opacity: .2
}

.onp-sl-overlap-locker-box {
    position: absolute;
    top: 50%;
    z-index: 40;
    left: 0;
    right: 0
}

.onp-sl-overlap-locker-box.onp-sl-position-scroll,.onp-sl-overlap-locker-box.onp-sl-position-top {
    top: 0
}

.onp-sl-overlap-box .onp-sl {
    margin: 0 auto!important
}

.onp-sl-overlap-mode p {
    float: none!important
}

.onp-sl .onp-sl-button,.onp-sl .onp-sl-input {
    font-size: 14px;
    padding: 10px;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.onp-sl .onp-sl-input {
    line-height: 16px;
    outline: 0;
    width: 100%;
    display: block;
    background: #fff;
    border: 1px solid #c4c4c4;
    appearance: normal;
    -moz-appearance: none;
    -webkit-appearance: none;
    float: none!important
}

.onp-sl .onp-sl-input::-webkit-input-placeholder {
    line-height: 140%
}

.onp-sl .onp-sl-input:focus::-webkit-input-placeholder {
    opacity: 0
}

.onp-sl .onp-sl-input:focus::-moz-placeholder {
    opacity: 0
}

.onp-sl .onp-sl-input:focus:-moz-placeholder {
    opacity: 0
}

.onp-sl .onp-sl-input:focus:-ms-input-placeholder {
    opacity: 0
}

.onp-sl .onp-sl-button {
    border: 0;
    padding: 6px 10px;
    text-align: center;
    cursor: pointer;
    text-transform: none;
    text-decoration: none;
    background-color: #f1f1f1;
    position: relative
}

.onp-sl .onp-sl-form-button {
    padding: 8px 15px
}

.onp-sl .onp-sl-button:hover {
    background-color: #e5e5e5
}

.onp-sl .onp-sl-button:focus {
    outline: 0
}

.onp-sl .onp-sl-button:disabled {
    cursor: default
}

.onp-sl .onp-sl-button.load:before {
    position: absolute;
    left: 50%;
    top: 50%;
    content: "";
    height: 24px;
    width: 24px;
    margin: -12px 0 0 -12px;
    background: url(/static/img/button_loader.gif)
}

.onp-sl .onp-sl-checkbox {
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -9px;
    display: block;
    width: 15px;
    height: 15px;
    outline: 0;
    background: #fff;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.1);
    border: 1px solid #c4c4c4
}

.onp-sl .onp-sl-checkbox:after {
    opacity: 0;
    transition: opacity .1s;
    -o-transition: opacity .1s;
    -ms-transition: opacity .1s;
    -moz-transition: opacity .1s;
    -webkit-transition: opacity .1s;
    content: "";
    display: block;
    position: absolute;
    top: 3px;
    right: 3px;
    bottom: 3px;
    left: 3px;
    background: #413548;
    border-radius: 2px
}

.onp-sl input:checked+.onp-sl-checkbox:after {
    opacity: 1
}

.onp-sl .onp-sl-dropdown+i {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 5px;
    height: 11px;
    background: 0 0
}

.onp-sl .onp-sl-dropdown+i:after,.onp-sl .onp-sl-dropdown+i:before {
    content: '';
    position: absolute;
    right: 0;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent
}

.onp-sl .onp-sl-dropdown+i:after {
    bottom: 0;
    border-top: 4px solid #333
}

.onp-sl .onp-sl-dropdown+i:before {
    top: 0;
    border-bottom: 4px solid #333
}

.onp-sl .onp-sl-icon {
    font-family: FontAwesome;
    font-style: normal;
    font-weight: 400;
    -webkit-font-smoothing: antialiased
}

.onp-sl .onp-sl-icon-append,.onp-sl .onp-sl-icon-prepend {
    position: absolute;
    top: 5px;
    width: 29px;
    height: 29px;
    font-size: 15px;
    line-height: 29px;
    text-align: center;
    color: #ccc;
    border-color: #e5e5e5
}

.onp-sl .onp-sl-icon-append {
    right: 5px;
    padding-left: 3px;
    border-left-width: 1px;
    border-left-style: solid
}

.onp-sl .onp-sl-icon-prepend {
    left: 5px;
    padding-right: 3px;
    border-right-width: 1px;
    border-right-style: solid
}

.onp-sl .onp-sl-icon-prepend+input,.onp-sl .onp-sl-icon-prepend+textarea {
    padding-left: 46px
}

.onp-sl .onp-sl-icon-append+input,.onp-sl .onp-sl-icon-append+textarea {
    padding-right: 46px
}

.onp-sl .onp-sl-icon-prepend+.onp-sl-icon-append+input,.onp-sl .onp-sl-icon-prepend+.onp-sl-icon-append+textarea {
    padding-left: 46px
}

.onp-sl .onp-sl-field {
    margin-bottom: 10px;
    position: relative;
    text-align: left
}

.onp-sl .onp-sl-field .onp-sl-field-title,.onp-sl .onp-sl-field-label {
    margin: 15px 0 3px
}

.onp-sl .onp-sl-field .onp-sl-field-control {
    position: relative
}

.onp-sl .onp-sl-field-separator {
    border-top: 1px solid #f1f1f1
}

.onp-sl .onp-sl-field-checkbox {
    margin-bottom: 5px
}

.onp-sl .onp-sl-group .onp-sl-field-checkbox:last-child {
    margin-bottom: 10px
}

.onp-sl .onp-sl-field-checkbox label {
    padding-left: 25px;
    cursor: pointer
}

.onp-sl .onp-sl-field-checkbox label>* {
    display: inline-block;
    vertical-align: baseline
}

.onp-sl .onp-sl-field-checkbox input {
    display: none
}

.onp-sl .onp-sl-field.onp-sl-error-state .onp-sl-checkbox,.onp-sl .onp-sl-field.onp-sl-error-state .onp-sl-input {
    background-color: #fff0f0
}

.onp-sl .onp-sl-field .onp-sl-validation-error {
    text-align: left;
    display: block;
    margin-top: 6px;
    padding: 0 1px;
    font-style: normal;
    line-height: 15px;
    color: #ee9393;
    padding-bottom: 5px
}

.onp-sl .onp-sl-social-buttons {
    text-align: center;
    padding: 0;
}

.onp-sl .onp-sl-text+.onp-sl-social-buttons {
    margin-top: 5px
}

.onp-sl .onp-sl-social-buttons .onp-sl-text {
    margin-bottom: 3px
}

.onp-sl .onp-sl-social-buttons .onp-sl-text .onp-sl-strong {
    margin-bottom: 0
}

.onp-sl-social-buttons .onp-sl-control {
    min-width: 104px;
    display: inline-block;
    vertical-align: top;
    text-align: left;
    position: relative;
    margin: 10px 5px 0;
    background-color: #f2f2f2
}

.onp-sl-social-buttons .onp-sl-control-inner-wrap {
    height: 40px;
    min-width: 120px;
    padding: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative
}

.onp-sl-social-buttons .onp-sl-social-button {
    overflow: hidden;
    padding: 1px;
    position: relative;
    top: -1px
}

.onp-sl-social-buttons .onp-sl-state-loading .onp-sl-control-inner-wrap {
    background: url(/static/img/button-loader-f2f2f2.gif) 50% 50% no-repeat
}

.onp-sl-social-buttons .onp-sl-facebook .onp-sl-social-button,.onp-sl-social-buttons .onp-sl-google .onp-sl-social-button,.onp-sl-social-buttons .onp-sl-twitter-tweet .onp-sl-social-button {
    width: 104px
}

.onp-sl-social-buttons .onp-sl-google .onp-sl-social-button {
    position: relative
}

.onp-sl-opera .onp-sl-social-buttons .fb-like {
    position: relative;
    top: -2px
}

.onp-sl-social-buttons .fb-like span {
    vertical-align: top!important;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    overflow: hidden;
    padding: 0 1px;
    margin: 0
}

.onp-sl-social-buttons .fb-like iframe,.onp-sl-social-buttons .fb-like span {
    height: 22px
}

.onp-sl-social-buttons .onp-sl-facebook-share .onp-sl-social-button,.onp-sl-social-buttons .onp-sl-youtube-subscribe .onp-sl-social-button {
    line-height: 1%
}

.onp-sl-social-buttons.onp-sl-vertical .onp-sl-social-button span {
    top: 1px
}

.onp-sl-social-buttons .onp-sl-agreement-overlay,.onp-sl-social-buttons .onp-sl-facebook-share-overlay,.onp-sl-social-buttons .onp-sl-feature-overlay,.onp-sl-social-buttons .onp-sl-youtube-subscribe-overlay {
    position: absolute!important;
    top: 0!important;
    right: 0!important;
    bottom: 0!important;
    left: 0!important;
    background-color: rgba(255,255,255,0)!important;
    cursor: pointer!important;
    z-index: 20!important
}

.onp-sl-social-buttons .onp-sl-agreement-overlay:hover,.onp-sl-social-buttons .onp-sl-facebook-share-overlay:hover,.onp-sl-social-buttons .onp-sl-feature-overlay:hover,.onp-sl-social-buttons .onp-sl-youtube-subscribe-overlay:hover {
    background-color: rgba(255,255,255,.1)!important
	width:0%;
}

.onp-sl-social-buttons .onp-sl-youtube-subscribe .onp-sl-control-inner-wrap {
    padding-top: 8px
}

.onp-sl-social-buttons .onp-sl-youtube-subscribe .onp-sl-social-button {
    min-width: 108px
}

.onp-sl-social-buttons.onp-sl-no-counters .onp-sl-social-button {
    text-align: center
}

.onp-sl-social-buttons .onp-sl-button-error {
    line-height: normal!important;
    color: red!important;
    font-family: arial,sans-serif!important;
    font-size: 14px!important
}

.onp-sl-social-buttons .onp-sl-unsupported {
    font-size: 10px;
    text-align: center;
    line-height: 13px
}

.onp-sl-social-buttons .onp-sl-button-overlay {
    width: 100%;
    border-bottom: 0;
    position: absolute;
    top: 0;
    left: 0;
    text-decoration: none
}

.onp-sl-social-buttons .onp-sl-button-overlay * {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0
}

.onp-sl-social-buttons .onp-sl-overlay-back,.onp-sl-social-buttons .onp-sl-overlay-front {
    height: 100%;
    top: 0;
    left: 0;
    -moz-box-sizing: content-box;
    box-sizing: content-box
}

.onp-sl-social-buttons .onp-sl-flip .onp-sl-control-inner-wrap {
    perspective: 500px;
    perspective-origin: 50% 0;
    -webkit-perspective: 500px;
    -webkit-perspective-origin: 50% 0;
    -moz-perspective: 500px;
    -moz-perspective-origin: 50% 0
}

.onp-sl-social-buttons .onp-sl-flip .onp-sl-button-overlay {
    display: block;
    transform-origin: bottom;
    transform-style: preserve-3d;
    transition: transform .3s ease;
    transform: translate(0);
    -webkit-transform-origin: bottom;
    -webkit-transform-style: preserve-3d;
    -webkit-transition: -webkit-transform .3s ease;
    -webkit-transform: translateY(0) rotateX(0);
    -moz-transform-origin: bottom;
    -moz-transform-style: preserve-3d;
    -moz-transition: -moz-transform .3s ease;
    -moz-transform: translate(0);
    text-decoration: none!important
}

.onp-sl-social-buttons .onp-sl-flip .onp-sl-overlay-back {
    transform: rotateX(-180deg) translateZ(4px);
    -webkit-transform: rotateX(-180deg) translateZ(4px);
    -moz-transform: rotateX(-180deg) translateZ(4px)
}

.onp-sl-social-buttons .onp-sl-flip .onp-sl-overlay-header {
    height: 4px;
    transform-origin: top;
    transform: rotateX(-90deg);
    -webkit-transform-origin: top;
    -webkit-transform: rotateX(-90deg);
    -moz-transform-origin: top;
    -moz-transform: rotateX(-90deg)
}

.onp-sl-social-buttons .onp-sl-touch .onp-sl-button-overlay {
    cursor: pointer
}

.onp-sl-social-buttons .onp-sl-state-error.onp-sl-control .onp-sl-overlay-text {
    text-decoration: line-through;
    color: #fff;
    text-shadow: none
}

.onp-sl-social-buttons .onp-sl-state-error.onp-sl-control .onp-sl-overlay-back,.onp-sl-social-buttons .onp-sl-state-error.onp-sl-control .onp-sl-overlay-front,.onp-sl-social-buttons .onp-sl-state-error.onp-sl-control .onp-sl-overlay-header {
    background: #c00!important
}

.onp-sl-social-buttons .onp-sl-state-error .onp-sl-social-button {
    display: none
}

.onp-sl-no-touch .onp-sl-flip:hover .onp-sl-button-overlay,.onp-sl-social-buttons .onp-sl-flip-hover .onp-sl-button-overlay {
    display: block!important;
    transform: translateY(4px) rotateX(-105deg);
    -webkit-transform: translateY(4px) rotateX(-105deg);
    -moz-transform: translateY(4px) rotateX(-105deg)
}

.onp-sl-no-touch .onp-sl-flip.onp-sl-step-completed:hover .onp-sl-button-overlay,.onp-sl-social-buttons .onp-sl-flip-hover.onp-sl-step-completed .onp-sl-button-overlay {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none
}

.onp-sl-social-buttons .onp-sl-flip:hover .onp-sl-overlay-back {
    border-top: 2px solid #eee
}

.onp-sl-social-buttons .onp-sl-flip.onp-sl-step-completed .onp-sl-overlay-front {
    background: #777!important;
    color: #fff
}

.onp-sl-social-buttons .onp-sl-flip.onp-sl-step-completed .onp-sl-overlay-text {
    text-decoration: line-through
}

.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-es_ES .onp-sl-social-button-facebook-like,.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-es_ES .onp-sl-social-button-facebook-share {
    width: 114px!important
}

.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-ru_RU .onp-sl-social-button-facebook-like,.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-ru_RU .onp-sl-social-button-facebook-share {
    width: 124px!important
}

.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-de_DE .onp-sl-social-button-facebook-like,.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-de_DE .onp-sl-social-button-facebook-share,.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-pl_PL .onp-sl-social-button-facebook-like,.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-pl_PL .onp-sl-social-button-facebook-share {
    width: 120px!important
}

.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-pt_BR .onp-sl-social-button-facebook-like,.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-pt_BR .onp-sl-social-button-facebook-share {
    width: 130px!important
}

.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-cs_CZ .onp-sl-social-button-facebook-like,.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-cs_CZ .onp-sl-social-button-facebook-share {
    width: 125px!important
}

.onp-sl-social-buttons.onp-sl-no-counters .fb_iframe_widget {
    display: inline-block!important
}

.onp-sl-social-buttons.onp-sl-no-counters .fb-like {
    overflow: hidden;
    width: 50px!important
}

.onp-sl-horizontal.onp-sl-no-counters .fb-share-button {
    overflow: hidden;
    width: 60px!important
}

.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-es_ES .fb-like {
    width: 78px!important
}

.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-es_ES .fb-share-button {
    width: 81px!important
}

.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-it_IT .fb-like {
    width: 78px!important
}

.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-it_IT .fb-share-button {
    width: 81px!important
}

.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-fr_FR .fb-like {
    width: 63px!important
}

.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-fr_FR .fb-share-button {
    width: 73px!important
}

.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-ru_RU .fb-like {
    width: 81px!important
}

.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-ru_RU .fb-share-button {
    width: 91px!important
}

.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-fi_FI .fb-like {
    width: 68px!important
}

.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-fi_FI .fb-share-button {
    width: 43px!important
}

.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-pl_PL .fb-like {
    width: 59px!important
}

.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-pl_PL .fb-share-button {
    width: 71px!important
}

.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-de_DE .fb-like {
    width: 85px!important
}

.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-pt_BR .fb-like {
    width: 59px!important
}

.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-pt_BR .fb-share-button {
    width: 98px!important
}

.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-cs_CZ .fb-like {
    width: 93px!important
}

.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-cs_CZ .fb-share-button {
    width: 55px!important
}

.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-bg_BG .fb-like,.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-bg_BG .fb-share-button {
    width: 95px!important
}

.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-bg_BG .onp-sl-social-button-facebook-like {
    width: 125px
}

.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-bg_BG .fb-like iframe,.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-bg_BG .fb-like span {
    width: 125px!important
}

.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-bg_BG .onp-sl-social-button-facebook-share {
    width: 130px
}

.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-bg_BG .fb-share-button iframe,.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-bg_BG .fb-share-button span {
    width: 130px!important
}

.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-nl_NL .fb-like,.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-nl_NL .fb-share-button {
    width: 92px!important
}

.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-nl_NL .onp-sl-social-button-facebook-like {
    width: 120px
}

.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-nl_NL .fb-like iframe,.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-nl_NL .fb-like span {
    width: 120px!important
}

.onp-sl-connect-buttons {
    text-align: center
}

.onp-sl-connect-buttons .onp-sl-control,.onp-sl-connect-buttons .onp-sl-control .onp-sl-connect-button,.onp-sl-connect-buttons .onp-sl-control .onp-sl-icon {
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.onp-sl-connect-buttons .onp-sl-button {
    background-color: #f1f1f1;
    padding: 0 5px;
    margin: 7px;
    position: relative;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    width: 170px;
    height: 50px;
    vertical-align: bottom
}

.onp-sl-connect-buttons .onp-sl-control+.onp-sl-control {
    margin-top: 10px
}

.onp-sl-connect-buttons .onp-sl-control:hover {
    background-color: #e5e5e5
}

.onp-sl-connect-buttons .onp-sl-short {
    display: none
}

.onp-sl-connect-buttons .onp-sl-state-error,.onp-sl-connect-buttons .onp-sl-state-loading {
    position: relative;
    cursor: default!important
}

.onp-sl-connect-buttons .onp-sl-state-error .onp-sl-connect-button,.onp-sl-connect-buttons .onp-sl-state-error .onp-sl-icon,.onp-sl-connect-buttons .onp-sl-state-loading .onp-sl-connect-button,.onp-sl-connect-buttons .onp-sl-state-loading .onp-sl-icon {
    display: none
}

.onp-sl-connect-buttons .onp-sl-state-loading .onp-sl-control-inner-wrap {
    background: url(/static/img/button-loader-ffffff.gif) 50% 50% no-repeat;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0
}

.onp-sl-connect-buttons .onp-sl-state-error .onp-sl-control-inner-wrap {
    position: relative;
    top: 50%;
    margin-top: -11px
}

.onp-sl-connect-buttons .onp-sl-state-error .onp-sl-control-inner-wrap .onp-sl-error-title {
    height: 22px!important;
    padding: 0 10px!important;
    line-height: 22px!important;
    font-size: 14px!important;
    font-weight: 400!important
}

.onp-sl-subscription .onp-sl-button {
    width: 100%
}

.onp-sl-subscription .onp-sl-control {
    padding: 10px 0 0;
    max-width: 350px;
    margin: auto
}

.onp-sl-custom-form .onp-sl-subscription .onp-sl-field-submit {
    padding-top: 10px;
    margin-top: 15px
}

.onp-sl-custom-form .onp-sl-subscription .onp-sl-field-submit:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin-top: -1px;
    border-top: 1px solid #f1f1f1
}

.onp-sl-subscription.onp-sl-last-group.onp-sl-separator-hides {
    padding-top: 5px
}

.onp-sl-subscription.onp-sl-last-group.onp-sl-separator-shows {
    border-top: 1px solid #eaeaea;
    margin-top: 30px;
    padding-top: 30px
}

.onp-sl-screen-enter-email .onp-sl-button {
    width: 100%
}

.onp-sl-screen-enter-email .onp-sl-control {
    max-width: 350px;
    margin: auto;
    padding-top: 10px
}

.onp-sl-screen-email-confirmation {
    text-align: center
}

.onp-sl-screen-email-confirmation .onp-sl-screen-message {
    display: block
}

.onp-sl-screen-email-confirmation .onp-sl-cancel {
    color: #006ca7;
    text-decoration: none
}

.onp-sl-screen-email-confirmation .onp-sl-cancel:hover {
    background-color: #ffffda
}

.onp-sl-screen-email-confirmation .onp-sl-highlight {
    border-radius: 3px;
    font-style: italic
}

.onp-sl-screen-email-confirmation .onp-sl-open.onp-sl-has-icon {
    position: relative;
    padding-left: 45px
}

.onp-sl-screen-email-confirmation .onp-sl-open-button-wrap {
    padding-top: 20px
}

.onp-sl-screen-email-confirmation .onp-sl-note {
    padding-top: 16px
}

.onp-sl-screen-email-confirmation .onp-sl-open .onp-sl-icon {
    background: url(/static/img/email-services.png) 0 70px no-repeat;
    display: inline-block;
    width: 28px;
    height: 21px;
    vertical-align: baseline;
    position: absolute;
    top: 50%;
    left: 10px;
    margin-top: -9px
}

.onp-sl-screen-data-processing {
    text-align: center;
    padding: 60px
}

.onp-sl-screen-data-processing .onp-sl-process-spin {
    height: 100px;
    background: url(/static/img/large-loader.gif) center no-repeat
}

.onp-sl-screen-data-processing .onp-sl-processing-sreen-text {
    margin-top: 20px;
    text-align: center
}

.onp-sl .pika-single {
    z-index: 9999;
    display: block;
    position: absolute!important;
    right: 0!important;
    color: #333;
    background: #fff;
    border: 1px solid #ccc;
    border-bottom-color: #bbb;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    text-shadow: none
}

.onp-sl .pika-single:after,.onp-sl .pika-single:before {
    content: " ";
    display: table
}

.onp-sl .pika-single:after {
    clear: both
}

.onp-sl .pika-single {
    *zoom: 1
}

.onp-sl .pika-single.is-hidden {
    display: none
}

.onp-sl .pika-single.is-bound {
    position: absolute;
    box-shadow: 0 5px 15px -5px rgba(0,0,0,.5)
}

.onp-sl .pika-lendar {
    float: left;
    width: 240px;
    margin: 8px
}

.onp-sl .pika-title {
    position: relative;
    text-align: center
}

.onp-sl .pika-label {
    display: inline-block;
    *display: inline;
    position: relative;
    z-index: 9999;
    overflow: hidden;
    margin: 0;
    padding: 5px 3px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    background-color: #fff
}

.onp-sl .pika-title select {
    cursor: pointer;
    position: absolute;
    z-index: 9998;
    margin: 0;
    left: 0;
    top: 5px;
    filter: alpha(opacity=0);
    opacity: 0
}

.onp-sl .pika-next,.onp-sl .pika-prev {
    display: block;
    cursor: pointer;
    position: relative;
    outline: 0;
    border: 0;
    padding: 0;
    width: 20px;
    height: 30px;
    text-indent: 20px;
    white-space: nowrap;
    overflow: hidden;
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 75% 75%;
    opacity: .5;
    *position: absolute;
    *top: 0
}

.onp-sl .pika-next:hover,.onp-sl .pika-prev:hover {
    opacity: 1
}

.onp-sl .is-rtl .pika-next,.onp-sl .pika-prev {
    float: left;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==);*left: 0
}

.onp-sl .is-rtl .pika-prev,.onp-sl .pika-next {
    float: right;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=);*right: 0
}

.onp-sl .pika-next.is-disabled,.onp-sl .pika-prev.is-disabled {
    cursor: default;
    opacity: .2
}

.onp-sl .pika-select {
    display: inline-block;
    *display: inline
}

.onp-sl .pika-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: 0
}

.onp-sl .pika-table td,.onp-sl .pika-table th {
    width: 14.285714285714286%;
    padding: 0
}

.onp-sl .pika-table th {
    color: #999;
    font-size: 12px;
    line-height: 25px;
    font-weight: 700;
    text-align: center
}

.onp-sl .pika-button {
    cursor: pointer;
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    outline: 0;
    border: 0;
    margin: 0;
    width: 100%;
    padding: 5px;
    color: #666!important;
    font-size: 12px;
    line-height: 15px;
    text-align: right;
    background: #f5f5f5;
    text-shadow: none
}

.onp-sl .pika-week {
    font-size: 11px;
    color: #999
}

.onp-sl .is-today .pika-button {
    color: #3af;
    font-weight: 700
}

.onp-sl .is-selected .pika-button {
    color: #fff!important;
    font-weight: 700;
    background: #3af;
    box-shadow: inset 0 1px 3px #178fe5;
    border-radius: 3px
}

.onp-sl .is-disabled .pika-button {
    pointer-events: none;
    cursor: default;
    color: #999;
    opacity: .3
}

.onp-sl .pika-button:hover {
    color: #fff!important;
    background: #ff8000!important;
    box-shadow: none!important;
    border-radius: 3px!important
}

.onp-sl .pika-table abbr {
    border-bottom: 0;
    cursor: help
}

iframe[src^="https://apis.google.com/u/0/_/widget/oauthflow/toast"] {
    display: none
}

.onp-sl-great-attractor {
    background-color: transparent;
    padding: 0
}

.onp-sl-great-attractor.onp-sl-email-locker {
    max-width: 550px
}

.onp-sl-great-attractor.onp-sl-custom-form.onp-sl-contains-single-group,.onp-sl-overlap-box .onp-sl-great-attractor.onp-sl-email-locker.onp-sl-contains-single-group {
    max-width: 500px
}

.onp-sl-great-attractor .onp-sl-outer-wrap {
    margin: auto;
    border: 1px solid #c1c1c1;
    border-top: 0;
    border-radius: 7px;
    -moz-box-shadow: 0 2px 7px rgba(0,0,0,.17);
    box-shadow: 0 2px 7px rgba(0,0,0,.17);
    background: #fff url(/static/img/ga-top-border.png) top center repeat-x;
    padding: 5px 0 0
}

.onp-sl-great-attractor .onp-sl-inner-wrap {
    background-color: #fff;
    border-radius: 6px
}

.onp-sl-great-attractor .onp-sl-button,.onp-sl-great-attractor .onp-sl-input {
    border-radius: 3px
}

.onp-sl-great-attractor .onp-sl-input {
    width: 100%;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.1)
}

.onp-sl-great-attractor .onp-sl-button:hover {
    box-shadow: 0 2px 5px rgba(0,0,0,.12),inset 0 1px 1px rgba(255,255,255,.9);
    background: -moz-linear-gradient(top,#fefefe 0,#f2f2f2 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#fefefe),color-stop(100%,#f2f2f2));
    background: -webkit-linear-gradient(top,#fefefe 0,#f2f2f2 100%);
    background: -o-linear-gradient(top,#fefefe 0,#f2f2f2 100%);
    background: -ms-linear-gradient(top,#fefefe 0,#f2f2f2 100%);
    background: linear-gradient(to bottom,#fefefe 0,#f2f2f2 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fefefe', endColorstr='#f2f2f2', GradientType=0)
}

.onp-sl-great-attractor .onp-sl-button,.onp-sl-great-attractor .onp-sl-button:disabled {
    color: #363636;
    font-weight: 700;
    text-shadow: 1px 1px 0 rgba(255,255,255,.6);
    box-shadow: 0 2px 1px rgba(0,0,0,.07),inset 0 1px 1px rgba(255,255,255,.9);
    border: 1px solid #c9c9c9;
    background: -moz-linear-gradient(top,#fcfcfc 0,#f0f0f0 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#fcfcfc),color-stop(100%,#f0f0f0));
    background: -webkit-linear-gradient(top,#fcfcfc 0,#f0f0f0 100%);
    background: -o-linear-gradient(top,#fcfcfc 0,#f0f0f0 100%);
    background: -ms-linear-gradient(top,#fcfcfc 0,#f0f0f0 100%);
    background: linear-gradient(to bottom,#fcfcfc 0,#f0f0f0 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fcfcfc', endColorstr='#f0f0f0', GradientType=0);
    cursor: pointer
}

.onp-sl-great-attractor .onp-sl-button:disabled {
    cursor: default
}

.onp-sl-great-attractor .onp-sl-terms {
    border-top: 1px solid #d6d6d6;
    background-color: #f9f9f9;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px
}

.onp-sl-great-attractor .onp-sl-terms-inner-wrap {
    border-top: 1px solid #eaeaea;
    padding: 10px 40px
}

.onp-sl-great-attractor .onp-sl-cross {
    top: 9px;
    right: 5px;
    opacity: .08;
    filter: alpha(opacity=8)
}

.onp-sl-great-attractor:hover .onp-sl-cross {
    opacity: .15;
    filter: alpha(opacity=15)
}

.onp-sl-great-attractor .onp-sl-cross:hover {
    opacity: .6;
    filter: alpha(opacity=60)
}

.onp-sl-great-attractor .onp-sl-timer {
    bottom: 6px;
    right: 7px
}

.onp-sl-great-attractor .onp-sl-last-group .onp-sl-line-separator {
    border-bottom: 0 dashed #efefef;
    height: auto;
    margin: 20px auto;
    overflow: hidden
}

.onp-sl-great-attractor .onp-sl-last-group .onp-sl-line-separator .onp-sl-title {
    background-color: #f9f9f9;
    padding: 0;
    margin: 0;
    top: 0;
    width: 38px;
    height: 24px;
    border-radius: 3px;
    line-height: 24px;
    font-size: 12px
}

.onp-sl-great-attractor .onp-sl-last-group .onp-sl-line-separator .onp-sl-title:before {
    right: -175px
}

.onp-sl-great-attractor .onp-sl-last-group .onp-sl-line-separator .onp-sl-title:after {
    left: -175px
}

.onp-sl-great-attractor .onp-sl-last-group .onp-sl-line-separator .onp-sl-title:after,.onp-sl-great-attractor .onp-sl-last-group .onp-sl-line-separator .onp-sl-title:before {
    content: " ";
    position: absolute;
    top: 50%;
    width: 160px;
    margin-top: -1px;
    border-top: 2px dashed #efefef
}

.onp-sl-great-attractor .onp-sl-dark-force .onp-sl-last-group .onp-sl-line-separator .onp-sl-title:after,.onp-sl-great-attractor .onp-sl-dark-force .onp-sl-last-group .onp-sl-line-separator .onp-sl-title:before {
    border-top-color: #1d3446
}

.onp-sl-great-attractor .onp-sl-connect-buttons .onp-sl-control {
    background-color: transparent;
    border-radius: 3px;
    padding: 0;
    border: 0;
    box-shadow: 0 3px 4px rgba(0,0,0,.03);
    color: #111
}

.onp-sl-great-attractor .onp-sl-connect-buttons .onp-sl-control:hover {
    box-shadow: 0 2px 6px rgba(0,0,0,.09);
    background-color: transparent
}

.onp-sl-great-attractor .onp-sl-connect-buttons .onp-sl-control:hover .onp-sl-short {
    display: inline
}

.onp-sl-great-attractor .onp-sl-connect-buttons .onp-sl-control:hover .onp-sl-long {
    display: none
}

.onp-sl-great-attractor .onp-sl-connect-buttons .onp-sl-state-error,.onp-sl-great-attractor .onp-sl-connect-buttons .onp-sl-state-loading {
    background: #fff;
    box-shadow: none;
    border: 1px solid #f2f2f2
}

.onp-sl-great-attractor .onp-sl-connect-buttons .onp-sl-state-error:hover,.onp-sl-great-attractor .onp-sl-connect-buttons .onp-sl-state-loading:hover {
    box-shadow: none
}

.onp-sl-great-attractor .onp-sl-connect-buttons .onp-sl-icon {
    height: 50px;
    width: 5px;
    background-image:url(images/social-icons.png);
	background-repeat: no-repeat;
    background-position-y: 50%;
    position: absolute;
    top: 0;
    bottom: 0;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    -webkit-transition: width .3s;
    transition: width .3s
}

.onp-sl-great-attractor .onp-sl-connect-buttons .onp-sl-control:hover .onp-sl-icon {
    width: 40px
}

.onp-sl-great-attractor .onp-sl-connect-buttons .onp-sl-facebook .onp-sl-icon {
    background-position: 15px 15px;
    background-color: #989de1;
    border: 1px solid #7e85e1
}

.onp-sl-great-attractor .onp-sl-connect-buttons .onp-sl-twitter .onp-sl-icon {
    background-position: -133px 16px;
    background-color: #55acee;
    border: 1px solid #2b9aee
}

.onp-sl-great-attractor .onp-sl-connect-buttons .onp-sl-google .onp-sl-icon {
    background-position: -18px 16px;
    background-color: #f47665;
    border: 1px solid #f45944
}

.onp-sl-great-attractor .onp-sl-connect-buttons .onp-sl-linkedin .onp-sl-icon {
    background-position: -60px 15px;
    background-color: #0077b5;
    border: 1px solid #036a9e
}

.onp-sl-great-attractor .onp-sl-connect-buttons .onp-sl-connect-button {
    text-align: left;
    padding-left: 15px;
    position: absolute;
    top: 0;
    left: 5px;
    right: 0;
    bottom: 0;
    font-size: 13px;
    line-height: 50px;
    font-weight: 400;
    border: 1px solid #c9c9c9;
    border-left: 0;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    box-shadow: inset 0 1px 1px rgba(255,255,255,.9);
    overflow: hidden;
    white-space: nowrap;
    background: -moz-linear-gradient(top,#fdfdfd 0,#f6f6f6 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#fdfdfd),color-stop(100%,#f6f6f6));
    background: -webkit-linear-gradient(top,#fdfdfd 0,#f6f6f6 100%);
    background: -o-linear-gradient(top,#fdfdfd 0,#f6f6f6 100%);
    background: -ms-linear-gradient(top,#fdfdfd 0,#f6f6f6 100%);
    background: linear-gradient(to bottom,#fdfdfd 0,#f6f6f6 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdfdfd', endColorstr='#f6f6f6', GradientType=0);
    -webkit-transition: left .3s;
    transition: left .3s
}

.onp-sl-great-attractor .onp-sl-connect-buttons .onp-sl-control:hover .onp-sl-connect-button {
    left: 40px;
    background: #f9f9f9
}

.onp-sl-great-attractor.onp-sl-subscription-enabled .onp-sl-connect-buttons.onp-sl-first-group {
    padding-bottom: 0
}

.onp-sl-great-attractor .onp-sl-connect-buttons.onp-sl-last-group {
    padding-top: 0
}

.onp-sl-great-attractor .onp-sl-connect-buttons.onp-sl-last-group .onp-sl-control {
    width: 140px;
    height: 40px
}

.onp-sl-great-attractor .onp-sl-connect-buttons.onp-sl-last-group .onp-sl-icon {
    height: 40px;
    width: 5px
}

.onp-sl-great-attractor .onp-sl-connect-buttons.onp-sl-last-group .onp-sl-facebook .onp-sl-icon {
    background-position: 15px 10px
}

.onp-sl-great-attractor .onp-sl-connect-buttons.onp-sl-last-group .onp-sl-twitter .onp-sl-icon {
    background-position: -133px 10px
}

.onp-sl-great-attractor .onp-sl-connect-buttons.onp-sl-last-group .onp-sl-google .onp-sl-icon {
    background-position: -18px 11px
}

.onp-sl-great-attractor .onp-sl-connect-buttons.onp-sl-last-group .onp-sl-linkedin .onp-sl-icon {
    background-position: -60px 10px
}

.onp-sl-great-attractor .onp-sl-connect-buttons.onp-sl-last-group .onp-sl-connect-button {
    line-height: 40px
}

.onp-sl-great-attractor .onp-sl-subscription .onp-sl-button {
    width: 100%
}

.onp-sl-great-attractor .onp-sl-subscription.onp-sl-last-group.onp-sl-separator-hides {
    padding: 10px 0 30px
}

.onp-sl-great-attractor .onp-sl-open .onp-sl-icon {
    margin-top: -11px
}

.onp-sl-friendly-giant {
    background-color: #f1f1f1;
    -moz-box-shadow: 0 0 100px 0 rgba(0,0,0,.04);
    box-shadow: 0 0 100px 0 rgba(0,0,0,.04);
    padding: 6px;
    margin: 60px auto;
    border-radius: 7px
}

.onp-sl-friendly-giant .onp-sl-outer-wrap {
    background-color: #f6f6f6;
    border-radius: 7px
}

.onp-sl-friendly-giant .onp-sl-group-notice {
    position: relative;
    z-index: 1
}

.onp-sl-friendly-giant .onp-sl-icon-append,.onp-sl-friendly-giant .onp-sl-icon-prepend {
    width: 34px;
    height: 34px;
    font-size: 18px;
    line-height: 34px;
    top: 6px
}

.onp-sl-friendly-giant .onp-sl-first-group {
    background-color: #fff;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px
}

.onp-sl-friendly-giant .onp-sl-first-group.onp-sl-not-single-group {
    padding-bottom: 40px
}

.onp-sl-friendly-giant .onp-sl-last-group {
    padding-top: 50px
}

.onp-sl-friendly-giant.onp-sl-has-terms .onp-sl-last-group {
    padding-bottom: 0
}

.onp-sl-friendly-giant .onp-sl-non-default-screen {
    background-color: #fff
}

.onp-sl-friendly-giant,.onp-sl-friendly-giant a,.onp-sl-friendly-giant button,.onp-sl-friendly-giant input,.onp-sl-friendly-giant p {
    font-family: 'Open Sans',sans-serif;
    font-size: 16px;
    line-height: 170%;
    color: #777
}

.onp-sl-friendly-giant .onp-sl-header,.onp-sl-friendly-giant .onp-sl-text .onp-sl-strong {
    font-size: 26px;
    color: #444;
    font-family: 'Open Sans',sans-serif;
    font-weight: 700;
    line-height: 130%
}

.onp-sl p+p {
    margin-top: 10px!important
}

.onp-sl-friendly-giant .onp-sl-first-group .onp-sl-strong:after,.onp-sl-friendly-giant .onp-sl-first-group .onp-sl-strong:before {
    display: none
}

.onp-sl-friendly-giant .onp-sl-hiding-link-separator .onp-sl-title {
    font-size: 14px
}

.onp-sl-friendly-giant .onp-sl-last-group .onp-sl-line-separator .onp-sl-title {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background-color: #fff;
    padding: 0;
    line-height: 75px;
    top: -80px;
    font-weight: 700;
    color: #dfdfdf;
    z-index: 0;
    position: relative
}

.onp-sl-friendly-giant .onp-sl-last-group .onp-sl-line-separator {
    margin: 0;
    border: 0;
    height: 0
}

.onp-sl-demo .onp-sl-friendly-giant,.onp-sl-overlap-box .onp-sl-friendly-giant {
    -moz-box-shadow: 0 2px 25px rgba(0,0,0,.22);
    box-shadow: 0 2px 25px rgba(0,0,0,.22)
}

.onp-sl-friendly-giant .onp-sl-button {
    height: 55px;
    line-height: 55px;
    border-radius: 7px;
    border-bottom: 5px solid rgba(0,0,0,.07);
    color: #aaa;
    text-shadow: 0 1px 1px rgba(255,255,255,.5);
    font-size: 17px;
    font-weight: 700;
    text-transform: capitalize;
    -webkit-transition: all .2s linear 0s;
    -moz-transition: all .2s linear 0s;
    -o-transition: all .2s linear 0s;
    transition: all .2s linear 0s
}

.onp-sl-friendly-giant .onp-sl-button-primary:hover {
    color: #846b0f;
    background: #ffdb4d;
    box-shadow: 0 0 12px 7px rgba(255,204,0,.25)
}

.onp-sl-friendly-giant .onp-sl-button-primary,.onp-sl-friendly-giant .onp-sl-button-primary:disabled {
    background-color: #ffe16c;
    color: #9c7e12;
    box-shadow: none
}

.onp-sl-friendly-giant .onp-sl-button.load:before {
    background: url(/static/img/button_loader-ffe16c.gif);
    height: 30px;
    width: 30px;
    margin: -14px 0 0 -15px
}

.onp-sl-friendly-giant .onp-sl-form-button {
    line-height: 100%;
    padding: 17px 20px 15px;
    height: auto
}

.onp-sl-friendly-giant .onp-sl-form-button-sm {
    padding: 10px 18px
}

.onp-sl-friendly-giant .onp-sl-button-sm {
    border-bottom-width: 4px;
    font-size: 14px
}

.onp-sl-friendly-giant .onp-sl-input {
    height: 45px;
    border-radius: 7px;
    border-color: #c3c4c5;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.1);
    color: #333;
    padding-left: 12px;
    -webkit-transition: all .2s linear 0s;
    -moz-transition: all .2s linear 0s;
    -o-transition: all .2s linear 0s;
    transition: all .2s linear 0s
}

.onp-sl-friendly-giant .onp-sl-input:focus {
    border-color: #edcb47;
    background-color: #fffcee;
    box-shadow: inset 0 1px 1px rgba(255,204,0,.2)
}

.onp-sl-friendly-giant .onp-sl-field {
    margin-bottom: 12px
}

.onp-sl-friendly-giant .onp-sl-field-label {
    margin-bottom: 3px
}

.onp-sl-friendly-giant .onp-sl-icon-prepend+input,.onp-sl-friendly-giant .onp-sl-icon-prepend+textarea {
    padding-left: 53px
}

.onp-sl-friendly-giant .onp-sl-field-checkbox {
    margin-bottom: 6px
}

.onp-sl-friendly-giant .onp-sl-group .onp-sl-field-checkbox:last-child {
    margin-bottom: 12px
}

.onp-sl-friendly-giant .onp-sl-dropdown+i {
    top: 19px;
    right: 18px
}

.onp-sl-friendly-giant .onp-sl-field.onp-sl-error-state .onp-sl-input:focus {
    border-color: #c26464
}

.onp-sl-friendly-giant .onp-sl-field .onp-sl-validation-error {
    margin-top: 8px;
    line-height: 120%
}

.onp-sl-friendly-giant.onp-sl-custom-form .onp-sl-has-agreement-checkbox-top.onp-sl-subscription .onp-sl-field-submit {
    margin-top: 1px
}

.onp-sl-friendly-giant .onp-sl-terms {
    padding: 0;
    text-align: center;
    margin: auto;
    background-color: transparent
}

.onp-sl-friendly-giant .onp-sl-terms-inner-wrap {
    padding: 5px 0 10px;
    text-align: center;
    font-size: 12px;
    color: #aaa
}

.onp-sl-friendly-giant .onp-sl-terms-inner-wrap a {
    color: #aaa;
    font-size: 12px
}

.onp-sl-friendly-giant.onp-sl-contains-single-group .onp-sl-terms-inner-wrap {
    padding: 9px 0 5px
}

.onp-sl-friendly-giant .onp-sl-cross {
    top: 9px;
    right: 9px;
    opacity: .05;
    filter: alpha(opacity=5)
}

.onp-sl-friendly-giant:hover .onp-sl-cross {
    opacity: .13;
    filter: alpha(opacity=13)
}

.onp-sl-friendly-giant .onp-sl-cross:hover {
    opacity: .6;
    filter: alpha(opacity=60)
}

.onp-sl-friendly-giant .onp-sl-timer {
    bottom: 8px;
    right: 9px
}

.onp-sl-friendly-giant .onp-sl-connect-buttons .onp-sl-text {
    margin-bottom: 7px
}

.onp-sl-friendly-giant .onp-sl-connect-buttons .onp-sl-icon {
    display: none
}

.onp-sl-friendly-giant .onp-sl-connect-buttons .onp-sl-button:hover {
    color: #fff;
    text-shadow: none;
    border-bottom: 5px solid rgba(0,0,0,.12)
}

.onp-sl-friendly-giant .onp-sl-connect-buttons .onp-sl-button {
    background-color: #e8e8e8;
    border-bottom: 5px solid rgba(0,0,0,.04);
    font-size: 14px
}

.onp-sl-friendly-giant .onp-sl-connect-buttons .onp-sl-button.onp-sl-facebook:hover {
    background-color: #4769a5;
    border-bottom: 5px solid rgba(0,0,0,.17)
}

.onp-sl-friendly-giant .onp-sl-connect-buttons .onp-sl-button.onp-sl-twitter:hover {
    background-color: #65ccef
}

.onp-sl-friendly-giant .onp-sl-connect-buttons .onp-sl-button.onp-sl-google:hover {
    background-color: #e74c3c
}

.onp-sl-friendly-giant .onp-sl-connect-buttons .onp-sl-button.onp-sl-linkedin:hover {
    background-color: #0f7cb2;
    border-bottom: 5px solid rgba(0,0,0,.17)
}

.onp-sl-friendly-giant .onp-sl-connect-buttons .onp-sl-button.onp-sl-state-error,.onp-sl-friendly-giant .onp-sl-connect-buttons .onp-sl-button.onp-sl-state-loading {
    background-color: #e8e8e8!important;
    border-bottom: 0!important
}

.onp-sl-friendly-giant .onp-sl-connect-buttons .onp-sl-state-loading .onp-sl-control-inner-wrap {
    background-image: url(/static/img/button-loader-e8e8e8.gif)
}

.onp-sl-friendly-giant .onp-sl-connect-buttons.onp-sl-first-group {
    padding-left: 25px;
    padding-right: 25px
}

.onp-sl-friendly-giant .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-control {
    background-color: #f5f5f5;
    padding: 0;
    width: 170px;
    color: #777
}

.onp-sl-friendly-giant .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-control:hover {
    color: #fff;
    border-bottom: 5px solid rgba(0,0,0,.12)
}

.onp-sl-friendly-giant .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-connect-button {
    border-radius: 5px;
    border-left: 5px solid #999;
    -webkit-transition: border .2s linear 0s;
    -moz-transition: border .2s linear 0s;
    -o-transition: border .2s linear 0s;
    transition: border .2s linear 0s
}

.onp-sl-friendly-giant .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-control:hover .onp-sl-connect-button {
    border-left: 5px solid transparent
}

.onp-sl-friendly-giant .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-facebook .onp-sl-connect-button {
    border-left: 5px solid #4769a5
}

.onp-sl-friendly-giant .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-twitter .onp-sl-connect-button {
    border-left: 5px solid #65ccef
}

.onp-sl-friendly-giant .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-google .onp-sl-connect-button {
    border-left: 5px solid #e74c3c
}

.onp-sl-friendly-giant .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-button.onp-sl-state-error,.onp-sl-friendly-giant .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-button.onp-sl-state-loading {
    background-color: #f5f5f5;
    border-bottom: 0
}

.onp-sl-friendly-giant .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-state-loading .onp-sl-control-inner-wrap {
    background-image: url(/static/img/button-loader-f2f2f2.gif)
}

.onp-sl-friendly-giant .onp-sl-subscription .onp-sl-button:hover {
    color: #846b0f;
    background-color: #ffdb4d;
    box-shadow: 0 0 12px 7px rgba(255,204,0,.25)
}

.onp-sl-friendly-giant .onp-sl-subscription .onp-sl-button,.onp-sl-friendly-giant .onp-sl-subscription .onp-sl-button:disabled {
    background-color: #ffe16c;
    color: #9c7e12;
    box-shadow: none
}

.onp-sl-friendly-giant.onp-sl-custom-form .onp-sl-subscription .onp-sl-field-submit {
    padding-top: 15px;
    margin-top: 20px
}

.onp-sl-friendly-giant .onp-sl-subscription.onp-sl-last-group {
    background-color: #fff
}

.onp-sl-friendly-giant .onp-sl-subscription.onp-sl-last-group+.onp-sl-terms .onp-sl-terms-inner-wrap {
    padding: 9px 0 5px
}

.onp-sl-friendly-giant .onp-sl-subscription.onp-sl-last-group.onp-sl-separator-hides .onp-sl-group-separator {
    position: relative;
    top: -35px
}

.onp-sl-friendly-giant .onp-sl-subscription.onp-sl-last-group.onp-sl-separator-shows {
    margin-top: 0;
    padding: 30px 25px;
    background-color: transparent;
    border-top: 1px solid #f1f1f1
}

.onp-sl-friendly-giant .onp-sl-subscription.onp-sl-last-group.onp-sl-separator-shows+.onp-sl-terms {
    border-top: 1px solid #f1f1f1;
    background-color: #fff
}

.onp-sl-friendly-giant .onp-sl-subscription.onp-sl-has-hiding-link-separator.onp-sl-separator-hides {
    padding-bottom: 0
}

.onp-sl-friendly-giant .onp-sl-screen-email-confirmation .onp-sl-line-2 {
    margin-top: 15px
}

.onp-sl-friendly-giant .onp-sl-screen-email-confirmation .onp-sl-open-button-wrap {
    padding-top: 35px;
    padding-bottom: 3px
}

.onp-sl-friendly-giant .onp-sl-screen-email-confirmation .onp-sl-open.onp-sl-has-icon {
    padding-left: 50px
}

.onp-sl-friendly-giant .onp-sl-screen-email-confirmation .onp-sl-open .onp-sl-icon {
    left: 15px
}

.onp-sl-dark-force {
    background: #031f34;
    background: rgba(3,31,52,.85) url(/static/img/noisy_grid.png);
    font-weight: 400;
    text-shadow: 0 -1px 0 rgba(62,77,89,.75);
    margin: 60px auto;
    -moz-box-shadow: 0 3px 20px 0 rgba(0,0,0,.5),inset 0 -1px 0 0 rgba(255,255,255,.08);
    box-shadow: 0 3px 20px 0 rgba(0,0,0,.5),inset 0 -1px 0 0 rgba(255,255,255,.08);
    border: 1px solid rgba(0,0,0,.2);
    border-bottom: 5px solid rgba(0,0,0,.5);
    border-radius: 5px
}

.onp-sl-overlap-box .onp-sl-dark-force {
    background: rgba(3,31,52,.85)
}

.onp-sl-dark-force,.onp-sl-dark-force a,.onp-sl-dark-force button,.onp-sl-dark-force input,.onp-sl-dark-force p {
    font-size: 15px;
    font-family: Montserrat,sans-serif;
    line-height: 25px;
    color: #e3f1ff!important
}

.onp-sl-dark-force a {
    color: #e3f1ff!important
}

.onp-sl-dark-force .onp-sl-header,.onp-sl-dark-force .onp-sl-text .onp-sl-strong {
    font-size: 26px;
    line-height: 120%;
    text-transform: none;
    margin: 15px 30px 7px
}

.onp-sl-dark-force .onp-sl-first-group .onp-sl-strong:after,.onp-sl-dark-force .onp-sl-first-group .onp-sl-strong:before {
    display: none
}

.onp-sl-dark-force .onp-sl-note {
    color: #b3b7c6;
    font-style: normal
}

.onp-sl-dark-force .onp-sl-group-notice {
    background-color: #ffffdb;
    border-radius: 3px
}

.onp-sl-dark-force .onp-sl-last-group .onp-sl-line-separator {
    margin: 0;
    border: 0;
    height: 42px;
    position: relative;
    top: -20px;
    overflow: hidden
}

.onp-sl-dark-force .onp-sl-last-group .onp-sl-line-separator .onp-sl-title {
    width: 42px;
    height: 42px;
    border-radius: 100%;
    background: rgba(4,45,76,.2);
    padding: 0;
    font-size: 18px;
    line-height: 42px;
    color: #edf1f9;
    position: relative;
    text-transform: lowercase;
    top: 0;
    -moz-box-shadow: 0 1px 0 rgba(255,255,255,.09),inset 0 1px 0 rgba(0,0,0,.16);
    -webkit-box-shadow: 0 1px 0 rgba(255,255,255,.09),inset 0 1px 0 rgba(0,0,0,.16);
    box-shadow: 0 1px 0 rgba(255,255,255,.09),inset 0 1px 0 rgba(0,0,0,.16)
}

.onp-sl-dark-force .onp-sl-last-group .onp-sl-line-separator .onp-sl-title:before {
    right: -175px
}

.onp-sl-dark-force .onp-sl-last-group .onp-sl-line-separator .onp-sl-title:after {
    left: -175px
}

.onp-sl-dark-force .onp-sl-last-group .onp-sl-line-separator .onp-sl-title:after,.onp-sl-dark-force .onp-sl-last-group .onp-sl-line-separator .onp-sl-title:before {
    content: " ";
    position: absolute;
    top: 50%;
    width: 160px;
    margin-top: -1px;
    border-top: 1px solid #182c3a;
    border-bottom: 1px solid #374d5e
}

.onp-sl-overlap-box .onp-sl-dark-force .onp-sl-last-group .onp-sl-line-separator .onp-sl-title:after,.onp-sl-overlap-box .onp-sl-dark-force .onp-sl-last-group .onp-sl-line-separator .onp-sl-title:before {
    border-top-color: #1d3446
}

.onp-sl-dark-force .onp-sl-hiding-link-separator .onp-sl-title {
    color: #b3b7c6;
    border-bottom-color: #b3b7c6
}

.onp-sl.onp-sl-dark-force.onp-sl-no-consent-error .onp-sl-agreement-checkbox-inner-wrap {
    background: rgba(255,255,255,.1);
    color: #fff!important
}

.onp-sl.onp-sl-dark-force .onp-sl-agreement-checkbox .onp-sl-checkbox {
    top: 4px
}

.onp-sl.onp-sl-dark-force .onp-sl-subscription.onp-sl-has-agreement-checkbox-bottom .onp-sl-agreement-checkbox {
    border-bottom-color: #374d5e
}

.onp-sl-dark-force.onp-sl-custom-form .onp-sl-has-agreement-checkbox-top.onp-sl-subscription .onp-sl-field-submit {
    margin-top: 1px
}

.onp-sl-dark-force .onp-sl-subscription.onp-sl-has-agreement-checkbox-top .onp-sl-agreement-checkbox {
    border-top-color: #374d5e;
    border-bottom-color: #374d5e
}

.onp-sl-dark-force.onp-sl-has-terms .onp-sl-last-group {
    padding-bottom: 20px
}

.onp-sl-dark-force .onp-sl-terms {
    padding: 0;
    text-align: center;
    margin: auto;
    background-color: rgba(0,0,0,.1)
}

.onp-sl-dark-force .onp-sl-terms-inner-wrap {
    text-align: center;
    font-size: 12px;
    color: #b3b7c6;
    padding: 9px 0 5px
}

.onp-sl-dark-force .onp-sl-terms-inner-wrap a {
    color: #b3b7c6;
    font-size: 12px
}

.onp-sl-dark-force .onp-sl-cross {
    top: 2px;
    right: 2px;
    opacity: .8;
    filter: alpha(opacity=80);
    background: url(/static/img/close-light.png) 50% 50% no-repeat;
    border-radius: 100%;
    width: 24px;
    height: 24px
}

.onp-sl-dark-force:hover .onp-sl-cross {
    opacity: .9;
    filter: alpha(opacity=90)
}

.onp-sl-dark-force .onp-sl-cross:hover {
    opacity: 1;
    filter: alpha(opacity=100)
}

.onp-sl-dark-force .onp-sl-timer {
    bottom: 6px;
    right: 8px;
    color: #fff
}

.onp-sl-dark-force .onp-sl-input {
    padding-left: 15px;
    color: #fff;
    background-color: #0a263a;
    -webkit-box-shadow: 0 1px 0 rgba(255,255,255,.12),inset 0 1px 0 rgba(0,0,0,.2);
    box-shadow: 0 1px 0 rgba(255,255,255,.12),inset 0 1px 0 rgba(0,0,0,.2)
}

.onp-sl-dark-force .onp-sl-input:focus {
    background-color: #0b293f
}

.onp-sl-dark-force .onp-sl-button,.onp-sl-dark-force .onp-sl-input {
    border: 0;
    border-radius: 4px;
    height: 50px;
    font-size: 15px;
    font-family: Montserrat,sans-serif
}

.onp-sl-dark-force .onp-sl-input::-webkit-input-placeholder {
    color: #b3b7c6;
    font-style: italic
}

.onp-sl-dark-force .onp-sl-input::-moz-placeholder {
    color: #b3b7c6;
    font-style: italic
}

.onp-sl-dark-force .onp-sl-input:-moz-placeholder {
    color: #b3b7c6;
    font-style: italic
}

.onp-sl-dark-force .onp-sl-input:-ms-input-placeholder {
    color: #b3b7c6;
    font-style: italic
}

.onp-sl-dark-force .onp-sl-input:focus::-webkit-input-placeholder {
    opacity: 0
}

.onp-sl-dark-force .onp-sl-input:focus::-moz-placeholder {
    opacity: 0
}

.onp-sl-dark-force .onp-sl-input:focus:-moz-placeholder {
    opacity: 0
}

.onp-sl-dark-force .onp-sl-input:focus:-ms-input-placeholder {
    opacity: 0
}

.onp-sl-dark-force .onp-sl-button {
    background-color: #081f30;
    color: #fff;
    text-shadow: none;
    border-bottom: 2px solid rgba(0,0,0,.13);
    text-transform: capitalize;
    line-height: 50px
}

.onp-sl-dark-force .onp-sl-button:hover {
    background: #082032
}

.onp-sl-dark-force .onp-sl-button.load:before {
    background: url(/static/img/button_loader-081f30.gif)
}

.onp-sl-dark-force .onp-sl-button:disabled {
    background-color: #081f30!important
}

.onp-sl-dark-force .onp-sl-button-primary {
    background-color: #42c9fa;
    font-family: Montserrat,sans-serif
}

.onp-sl-dark-force .onp-sl-button-primary:hover {
    background-color: #3bb2de
}

.onp-sl-dark-force .onp-sl-button-primary:disabled {
    background-color: #42c9fa!important
}

.onp-sl-dark-force .onp-sl-button.onp-sl-button-primary.load:before {
    background: url(/static/img/button_loader-42c9fa.gif)
}

.onp-sl-dark-force .onp-sl-form-button {
    line-height: 100%;
    padding: 17px 20px 15px;
    height: auto
}

.onp-sl-dark-force .onp-sl-form-button-sm {
    padding: 10px 18px
}

.onp-sl-dark-force .onp-sl-button-sm {
    font-size: 14px
}

.onp-sl-dark-force .onp-sl-field-separator {
    border-top: 1px solid #182c3a;
    border-bottom: 1px solid #374d5e
}

.onp-sl-dark-force .onp-sl-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
    line-height: 36px;
    color: #63738d;
    border-color: #63738d;
    text-shadow: none;
    top: 7px
}

.onp-sl-dark-force .onp-sl-field-checkbox label {
    padding-left: 30px
}

.onp-sl-dark-force .onp-sl-checkbox {
    border: 0;
    width: 19px;
    height: 19px;
    background-color: #0a263a;
    -webkit-box-shadow: 0 1px 0 rgba(255,255,255,.12),inset 0 1px 0 rgba(0,0,0,.2);
    box-shadow: 0 1px 0 rgba(255,255,255,.12),inset 0 1px 0 rgba(0,0,0,.2)
}

.onp-sl-dark-force .onp-sl-dropdown+i {
    top: 19px;
    right: 18px
}

.onp-sl-dark-force .onp-sl-dropdown+i:after {
    border-top: 4px solid #fff
}

.onp-sl-dark-force .onp-sl-dropdown+i:before {
    border-bottom: 4px solid #fff
}

.onp-sl-dark-force .onp-sl-icon-prepend+input,.onp-sl-dark-force .onp-sl-icon-prepend+textarea {
    padding-left: 55px
}

.onp-sl-dark-force .onp-sl-field.onp-sl-error-state .onp-sl-checkbox,.onp-sl-dark-force .onp-sl-field.onp-sl-error-state .onp-sl-input {
    background-color: #fff0f0;
    -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.2);
    box-shadow: 0 2px 0 rgba(0,0,0,.2)
}

.onp-sl-dark-force .onp-sl-field.onp-sl-error-state .onp-sl-icon {
    color: #885757;
    border-color: #885757
}

.onp-sl-dark-force .onp-sl-field.onp-sl-error-state .onp-sl-input {
    color: #582323!important
}

.onp-sl-dark-force .onp-sl-field.onp-sl-error-state .onp-sl-input::-webkit-input-placeholder {
    color: #885757
}

.onp-sl-dark-force .onp-sl-field.onp-sl-error-state .onp-sl-input::-moz-placeholder {
    color: #885757
}

.onp-sl-dark-force .onp-sl-field.onp-sl-error-state .onp-sl-input:-moz-placeholder {
    color: #885757
}

.onp-sl-dark-force .onp-sl-field.onp-sl-error-state .onp-sl-input:-ms-input-placeholder {
    color: #885757
}

.onp-sl-dark-force .onp-sl-connect-buttons .onp-sl-button {
    border: 0;
    background-color: rgba(3,31,52,.2);
    -moz-box-shadow: 0 1px 0 rgba(255,255,255,.12),inset 0 1px 0 rgba(0,0,0,.2);
    -webkit-box-shadow: 0 1px 0 rgba(255,255,255,.12),inset 0 1px 0 rgba(0,0,0,.2);
    box-shadow: 0 1px 0 rgba(255,255,255,.12),inset 0 1px 0 rgba(0,0,0,.2);
    color: #59d2ff;
    text-shadow: none
}

.onp-sl-dark-force .onp-sl-connect-buttons .onp-sl-button:hover {
    color: #019cd5;
    background-color: rgba(3,31,52,.42);
    -moz-box-shadow: 0 1px 0 rgba(255,255,255,.16),inset 0 1px 0 rgba(0,0,0,.22);
    -webkit-box-shadow: 0 1px 0 rgba(255,255,255,.16),inset 0 1px 0 rgba(0,0,0,.22);
    box-shadow: 0 1px 0 rgba(255,255,255,.16),inset 0 1px 0 rgba(0,0,0,.22)
}

.onp-sl-dark-force .onp-sl-connect-buttons .onp-sl-button.onp-sl-state-error,.onp-sl-dark-force .onp-sl-connect-buttons .onp-sl-button.onp-sl-state-loading {
    border: 0!important;
    background-color: rgba(3,31,52,.2)!important;
    -moz-box-shadow: 0 1px 0 rgba(255,255,255,.12),inset 0 1px 0 rgba(0,0,0,.2)!important;
    -webkit-box-shadow: 0 1px 0 rgba(255,255,255,.12),inset 0 1px 0 rgba(0,0,0,.2)!important;
    box-shadow: 0 1px 0 rgba(255,255,255,.12),inset 0 1px 0 rgba(0,0,0,.2)!important;
    color: #59d2ff!important
}

.onp-sl-dark-force .onp-sl-connect-buttons .onp-sl-state-loading .onp-sl-control-inner-wrap {
    background-image: url(/static/img/button-loader-1f384a.gif)
}

.onp-sl-dark-force .onp-sl-connect-buttons .onp-sl-short {
    display: block
}

.onp-sl-dark-force .onp-sl-connect-buttons .onp-sl-long {
    display: none
}

.onp-sl-dark-force .onp-sl-checkbox:after {
    background: #3bb2de;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px
}

.onp-sl-dark-force .onp-sl-connect-buttons .onp-sl-icon {
    width: 32px;
    height: 32px;
    background-color: #172c3a;
    position: absolute;
    top: 9px;
    left: 9px;
    border-radius: 3px;
    border-bottom: 1px solid rgba(0,0,0,.3);
    -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
    background-image: url(images/social-icons.png);
    background-repeat: no-repeat;
    background-position-y: 50%
}

.onp-sl-dark-force .onp-sl-connect-buttons .onp-sl-connect-button {
    position: absolute;
    left: 41px;
    top: 0;
    bottom: 0;
    right: 0
}

.onp-sl-dark-force .onp-sl-connect-buttons .onp-sl-facebook .onp-sl-icon {
    background-color: #5987c2;
    background-position: 11px 7px
}

.onp-sl-dark-force .onp-sl-connect-buttons .onp-sl-twitter .onp-sl-icon {
    background-color: #42c9f9;
    background-position: -138px 7px
}

.onp-sl-dark-force .onp-sl-connect-buttons .onp-sl-google .onp-sl-icon {
    background-color: #dd4b39;
    background-position: -24px 8px
}

.onp-sl-dark-force .onp-sl-connect-buttons .onp-sl-linkedin .onp-sl-icon {
    background-color: #0073b2;
    background-position: -64px 7px
}

.onp-sl-dark-force .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-button {
    -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
    text-align: left;
    border-radius: 3px;
    border-bottom: 2px solid rgba(0,0,0,.1);
    color: #fff
}

.onp-sl-dark-force .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-icon {
    border-bottom: 0;
    background-color: rgba(0,0,0,.1);
    -moz-box-shadow: 0 1px 0 rgba(255,255,255,.12),inset 0 1px 0 rgba(0,0,0,.13);
    -webkit-box-shadow: 0 1px 0 rgba(255,255,255,.12),inset 0 1px 0 rgba(0,0,0,.13);
    box-shadow: 0 1px 0 rgba(255,255,255,.12),inset 0 1px 0 rgba(0,0,0,.13)
}

.onp-sl-dark-force .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-connect-button {
    position: absolute;
    left: 52px;
    right: 0;
    top: 0;
    bottom: 0
}

.onp-sl-dark-force .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-facebook {
    background-color: #5987c2
}

.onp-sl-dark-force .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-twitter {
    background-color: #42c9f9
}

.onp-sl-dark-force .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-google {
    background-color: #dd4b39
}

.onp-sl-dark-force .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-linkedin {
    background-color: #0073b2
}

.onp-sl-dark-force .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-facebook:hover {
    background-color: #5581ba
}

.onp-sl-dark-force .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-twitter:hover {
    background-color: #3ebce9
}

.onp-sl-dark-force .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-google:hover {
    background-color: #d04736
}

.onp-sl-dark-force .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-linkedin:hover {
    background-color: #006ca7
}

.onp-sl-dark-force.onp-sl-custom-form .onp-sl-subscription .onp-sl-field-submit {
    padding-top: 15px;
    margin-top: 20px
}

.onp-sl-dark-force.onp-sl-custom-form .onp-sl-subscription .onp-sl-field-submit:before {
    border-top: 1px solid #182c3a;
    border-bottom: 1px solid #374d5e
}

.onp-sl-dark-force .onp-sl-subscription.onp-sl-last-group .onp-sl-button {
    background-color: #081f30
}

.onp-sl-dark-force .onp-sl-subscription.onp-sl-last-group .onp-sl-button:hover {
    background-color: #071c2b
}

.onp-sl-dark-force .onp-sl-subscription.onp-sl-last-group+.onp-sl-terms .onp-sl-terms-inner-wrap {
    padding: 9px 0 5px
}

.onp-sl-dark-force .onp-sl-subscription.onp-sl-last-group.onp-sl-separator-hides .onp-sl-group-separator {
    position: relative
}

.onp-sl-dark-force .onp-sl-subscription.onp-sl-last-group.onp-sl-separator-shows {
    margin-top: 20px;
    padding: 30px 25px;
    background-color: rgba(0,0,0,.1);
    border-top: 1px solid #182c3b
}

.onp-sl-dark-force .onp-sl-subscription.onp-sl-last-group.onp-sl-separator-shows+.onp-sl-terms {
    border-top: 1px solid #182c3b;
    background-color: transparent
}

.onp-sl-dark-force .onp-sl-screen-email-confirmation .onp-sl-cancel {
    color: #3ebce9
}

.onp-sl-dark-force .onp-sl-screen-email-confirmation .onp-sl-cancel:hover {
    color: #fff;
    background-color: transparent
}

.onp-sl-dark-force .onp-sl-screen-email-confirmation .onp-sl-highlight {
    background-color: rgba(0,0,0,.08);
    -webkit-box-shadow: inset 0 1px 0 rgba(0,0,0,.2);
    box-shadow: inset 0 1px 0 rgba(0,0,0,.2);
    padding: 10px;
    font-style: normal;
    display: inline-block
}

.onp-sl-dark-force .onp-sl-screen-email-confirmation .onp-sl-open.onp-sl-has-icon {
    padding-left: 50px
}

.onp-sl-dark-force .onp-sl-screen-email-confirmation .onp-sl-open .onp-sl-icon {
    left: 15px
}

.onp-sl-dark-force .onp-sl-screen-data-processing .onp-sl-process-spin {
    background: url(/static/img/large-loader-1d394b.gif) center no-repeat
}

.onp-sl-flat {
    padding: 0;
    background-color: transparent;
	margin-top:-200px; !important
}

.onp-sl-flat .onp-sl-inner-wrap {
    /*background-color: #f9f9f9*/
}

.onp-sl-flat .onp-sl-outer-wrap {
   /* border-bottom: 4px solid #f1f1f1*/
}

.onp-sl-flat .onp-sl-inner-wrap,.onp-sl-flat .onp-sl-outer-wrap {
    border-radius: 5px
}

.onp-sl-flat .onp-sl-text .onp-sl-strong:after,.onp-sl-flat .onp-sl-text .onp-sl-strong:before {
    content: " ";
    display: inline-block;
    width: 11px;
    height: 14px;
    margin: 0 9px;
    background: url(/static/img/lock-icon.png) 0 2px no-repeat
}

@media screen and (max-width:500px) {
    .onp-sl-flat .onp-sl-text .onp-sl-strong:after,.onp-sl-flat .onp-sl-text .onp-sl-strong:before {
        display: none
    }
}

.onp-sl-flat .onp-sl-text .onp-sl-strong:after {
    margin-left: 10px
}

.onp-sl-flat .onp-sl-social-buttons .fb-like iframe,.onp-sl-flat .onp-sl-social-buttons .fb-like span {
    width: 118px!important
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-control {
    background: rgba(0,0,0,.03)
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-control-inner-wrap {
    padding: 7px 10px 10px
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-button-overlay,.onp-sl-flat .onp-sl-social-buttons .onp-sl-control-inner-wrap {
    height: 34px;
    min-width: 118px
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-overlay-front {
    background: #eaeaea;
    border-bottom: 3px solid #dadada
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-overlay-back,.onp-sl-flat .onp-sl-social-buttons .onp-sl-overlay-front {
    border-radius: 3px
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-state-error .onp-sl-overlay-front {
    border-bottom-color: #900!important
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-overlay-icon {
    height: 34px;
    width: 44px;
    background-image: url(images/social-icons.png);
    background-repeat: no-repeat;
    background-position-y: 50%;
    position: absolute
}
.onp-sl-flat .onp-sl-social-buttons .onp-sl-overlay-icon1 {
    height: 34px;
    width: 44px;
    background-image:url(images/Instagram_icon.png);
	margin-left:10px;
    background-repeat: no-repeat;
    background-position-y: 50%;
    position: absolute
}



.onp-sl-flat .onp-sl-social-buttons .onp-sl-overlay-text {
    font-size: 14px;
    font-family: Arial,Helvetica,sans-serif;
    line-height: 34px;
    color: #fff;
    text-align: center;
    position: static;
    padding-left: 42px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-shadow: 0 -1px 1px rgba(0,0,0,.15)
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-twitter .onp-sl-overlay-front {
    background: #4086cc;
    border-bottom-color: #13579e
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-twitter .onp-sl-overlay-icon {
    background-position: -132px 8px
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-twitter .onp-sl-overlay-back {
    background: #4086cc
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-twitter .onp-sl-overlay-header {
    background: #13579e
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-facebook .onp-sl-overlay-front {
    background: #3c5a9a;
    border-bottom-color: #082b6f
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-facebook .onp-sl-overlay-icon {
    background-position: 15px 9px
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-facebook .onp-sl-overlay-back {
    background: #3c5a9a
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-facebook .onp-sl-overlay-header {
    background: #082b6f
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-google .onp-sl-overlay-front {
    background: #ca4639;
    border-bottom-color: #a52316
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-google .onp-sl-overlay-icon {
    background-position: -18px 9px
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-google .onp-sl-overlay-back {
    background: #ca4639
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-google .onp-sl-overlay-header {
    background: #a52316
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-linkedin .onp-sl-overlay-front {
    background-color: #286b8d;
    border-bottom-color: #19465d
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-linkedin .onp-sl-overlay-icon {
    background-position: -58px 7px
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-linkedin .onp-sl-overlay-back {
    background: #286b8d
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-linkedin .onp-sl-overlay-header {
    background-color: #19465d
}

.onp-sl-flat .onp-sl-youtube-subscribe .onp-sl-control-inner-wrap {
    padding: 5px 10px
}

.onp-sl-flat .onp-sl-youtube-subscribe .onp-sl-overlay-front {
    background: #d8322e;
    border-bottom-color: #af221f
}

.onp-sl-flat .onp-sl-youtube-subscribe .onp-sl-overlay-icon {
    background-position: -200px 8px
}

.onp-sl-flat .onp-sl-youtube-subscribe .onp-sl-overlay-back {
    background: #d8322e
}

.onp-sl-flat .onp-sl-youtube-subscribe .onp-sl-overlay-header {
    background-color: #af221f
}

.onp-sl-flat .onp-sl-connect-buttons {
    margin-top: 15px;
    text-align: center
}

.onp-sl-flat .onp-sl-connect-buttons .onp-sl-control {
    cursor: pointer;
    background: #eaeaea;
    border-bottom: 4px solid #dadada;
    border-radius: 4px;
    color: #fff;
    display: inline-block;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 170px;
    height: 55px;
    padding: 9px 10px 5px 15px;
    margin: 7px;
    position: relative;
    box-shadow: none;
    font-size: 13px;
    line-height: 135%;
    text-align: left
}

.onp-sl-flat .onp-sl-connect-buttons .onp-sl-control .onp-sl-name {
    display: block;
    font-size: 16px;
    font-weight: 700
}

.onp-sl-flat .onp-sl-connect-buttons .onp-sl-control .onp-sl-icon {
    height: 55px;
    width: 50px;
    background-image: url(/static/img/social-icons-large.png);
    background-repeat: no-repeat;
    background-position-y: 50%;
    position: absolute;
    top: 2px;
    right: 5px;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px
}

.onp-sl-flat .onp-sl-connect-buttons .onp-sl-facebook .onp-sl-icon {
    background-position: 2px 0
}

.onp-sl-flat .onp-sl-connect-buttons .onp-sl-twitter .onp-sl-icon {
    background-position: -51px -1px
}

.onp-sl-flat .onp-sl-connect-buttons .onp-sl-google .onp-sl-icon {
    background-position: -100px 0
}

.onp-sl-flat .onp-sl-connect-buttons .onp-sl-linkedin .onp-sl-icon {
    background-position: -60px 10px
}

.onp-sl-flat .onp-sl-connect-buttons .onp-sl-facebook {
    background: #3c5a9a;
    border-bottom-color: #082b6f
}

.onp-sl-flat .onp-sl-connect-buttons .onp-sl-twitter {
    background: #4086cc;
    border-bottom-color: #13579e
}

.onp-sl-flat .onp-sl-connect-buttons .onp-sl-google {
    background: #ca4639;
    border-bottom-color: #a52316
}

.onp-sl-flat .onp-sl-connect-buttons .onp-sl-linkedin {
    background-color: #286b8d;
    border-bottom-color: #19465d
}

.onp-sl-flat .onp-sl-connect-buttons .onp-sl-facebook:hover {
    background: #4263a9;
    border-bottom-color: #093282
}

.onp-sl-flat .onp-sl-connect-buttons .onp-sl-twitter:hover {
    background: #448fd9;
    border-bottom-color: #155fac
}

.onp-sl-flat .onp-sl-connect-buttons .onp-sl-google:hover {
    background: #da4c3e;
    border-bottom-color: #b22618
}

.onp-sl-flat .onp-sl-connect-buttons .onp-sl-linkedin:hover {
    background-color: #4682a0;
    border-bottom-color: #3b6377
}

.onp-sl-flat.onp-sl-subscription-enabled .onp-sl-inner-wrap {
    padding-bottom: 10px
}

.onp-sl-flat .onp-sl-subscription {
    padding: 0
}

.onp-sl-flat .onp-sl-subscription .onp-sl-control {
    padding-bottom: 0;
    max-width: 270px
}

.onp-sl-flat .onp-sl-subscription .onp-sl-field {
    margin-bottom: 8px
}

.onp-sl-flat .onp-sl-subscription .onp-sl-control .onp-sl-input {
    border: 0;
    border-radius: 3px;
    height: 45px;
    font-size: 16px;
    padding: 14px 14px 10px;
    border-bottom: 2px solid rgba(0,0,0,.04);
    text-align: center
}

.onp-sl-flat .onp-sl-subscription .onp-sl-control .onp-sl-submit {
    height: 49px;
    padding: 0 14px;
    line-height: 49px;
    background-color: #566067;
    font-size: 16px;
    color: #fff;
    border-bottom: 3px solid #3b4348;
    border-radius: 3px
}

.onp-sl-flat .onp-sl-subscription .onp-sl-control .onp-sl-submit:hover {
    background-color: #4e575d
}

.onp-sl-flat .onp-sl-subscription .onp-sl-hiding-link-container {
    border-top: 2px dashed #efefef;
    margin-top: 30px;
    padding-bottom: 20px
}

.onp-sl-flat .onp-sl-hiding-link-separator .onp-sl-title {
    border-bottom: 1px dashed #111
}

.onp-sl-flat .onp-sl-hiding-link-separator .onp-sl-title:hover {
    border-bottom: 0
}

.onp-sl-flat .onp-sl-terms-inner-wrap {
    border-top: 0;
    padding: 8px 40px 6px
}

.onp-sl-flat.onp-sl-has-terms .onp-sl-outer-wrap {
    border-bottom: 4px solid #eee
}

.onp-sl-glass {
    padding: 15px;
    border: 0;
    -moz-box-shadow: 0 1px 1px rgba(255,255,255,.7),inset 0 1px 1px rgba(0,0,0,.1);
    -webkit-box-shadow: 0 1px 1px rgba(255,255,255,.7),inset 0 1px 1px rgba(0,0,0,.1);
    box-shadow: 0 1px 1px rgba(255,255,255,.7),inset 0 1px 1px rgba(0,0,0,.1);
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    text-shadow: 0 1px 1px #fff;
    background: rgba(0,0,0,.03)
}

.onp-sl-glass .onp-sl-outer-wrap {
    -webkit-border-radius: 11px;
    -moz-border-radius: 11px;
    border-radius: 11px;
    -webkit-shadow: 0 1px 5px rgba(0,0,0,.25),inset 0 1px 1px rgba(255,255,255,.7);
    -moz-box-shadow: 0 1px 5px rgba(0,0,0,.25),inset 0 1px 1px rgba(255,255,255,.7);
    box-shadow: 0 1px 5px rgba(0,0,0,.25),inset 0 1px 1px rgba(255,255,255,.7);
    background: #f7f7f7;
    background: -moz-linear-gradient(top,rgba(255,255,255,.6) 0,rgba(240,240,240,.6) 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,rgba(255,255,255,.6)),color-stop(100%,rgba(240,240,240,.6)));
    background: -webkit-linear-gradient(top,rgba(255,255,255,.6) 0,rgba(240,240,240,.6) 100%);
    background: -o-linear-gradient(top,rgba(255,255,255,.6) 0,rgba(240,240,240,.6) 100%);
    background: -ms-linear-gradient(top,rgba(255,255,255,.6) 0,rgba(240,240,240,.6) 100%);
    background: linear-gradient(to bottom,rgba(255,255,255,.6) 0,rgba(240,240,240,.6) 100%)
}

.onp-sl-glass .onp-sl-text .onp-sl-strong:after,.onp-sl-glass .onp-sl-text .onp-sl-strong:before {
    content: " ";
    display: inline-block;
    width: 11px;
    height: 14px;
    margin: 0 9px;
    background: url(/static/img/lock-icon.png) 0 2px no-repeat
}

@media screen and (max-width:500px) {
    .onp-sl-glass .onp-sl-text .onp-sl-strong:after,.onp-sl-glass .onp-sl-text .onp-sl-strong:before {
        display: none
    }
}

.onp-sl-glass .onp-sl-cross {
    top: 20px;
    right: 20px
}

.onp-sl-glass .onp-sl-timer {
    right: 23px;
    bottom: 21px
}

.onp-sl-glass .onp-sl-control {
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
    border-radius: 7px;
    background-color: rgba(0,0,0,.03);
    -webkit-box-shadow: inset 0 0 4px rgba(0,0,0,.12),0 1px 1px rgba(255,255,255,.7);
    -moz-box-shadow: inset 0 0 4px rgba(0,0,0,.12),0 1px 1px rgba(255,255,255,.7);
    box-shadow: inset 0 0 4px rgba(0,0,0,.12),0 1px 1px rgba(255,255,255,.7)
}

.onp-sl-glass .onp-sl-google-youtube .onp-sl-control-inner-wrap {
    padding: 8px 7px
}

.onp-sl-dandyish {
    padding: 7px;
    background: url(/static/img/dandysh-border.png);
    border-radius: 12px;
    -moz-box-shadow: 0 0 10px rgba(0,0,0,.25);
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,.25);
    box-shadow: 0 0 10px rgba(0,0,0,.25)
}

.onp-sl-dandyish .onp-sl-outer-wrap {
    padding: 5px;
    background-color: #fff;
    border-radius: 10px
}

.onp-sl-dandyish .onp-sl-inner-wrap {
    padding: 15px 10px 20px;
    border-radius: 10px;
    background: linear-gradient(top,#f9f9f9,#F5F5F5);
    background: -o-linear-gradient(top,#f9f9f9,#F5F5F5);
    background: -moz-linear-gradient(top,#f9f9f9,#F5F5F5);
    background: -webkit-linear-gradient(top,#f9f9f9,#F5F5F5);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#F5F5F5', GradientType=0);
    background: -ms-linear-gradient(top,#FFF,#F5F5F5);
    -moz-box-shadow: inset 0 1px 6px rgba(0,0,0,.2);
    -webkit-box-shadow: inset 0 1px 6px rgba(0,0,0,.2);
    box-shadow: inset 0 1px 6px rgba(0,0,0,.2)
}

.onp-sl-dandyish .onp-sl-text {
    padding: 10px 10px 0
}

.onp-sl-dandyish .onp-sl-text,.onp-sl-dandyish .onp-sl-timer,.onp-sl-dandyish .onp-sl-timer * {
    -webkit-text-shadow: 1px 1px 2px #fff;
    -moz-text-shadow: 1px 1px 2px #fff;
    text-shadow: 1px 1px 2px #fff
}

.onp-sl-dandyish .onp-sl-text .onp-sl-strong:after,.onp-sl-dandyish .onp-sl-text .onp-sl-strong:before {
    content: " ";
    display: inline-block;
    width: 11px;
    height: 14px;
    margin: 0 9px;
    background: url(/static/img/lock-icon.png) 0 2px no-repeat
}

@media screen and (max-width:500px) {
    .onp-sl-dandyish .onp-sl-text .onp-sl-strong:after,.onp-sl-dandyish .onp-sl-text .onp-sl-strong:before {
        display: none
    }
}

.onp-sl-dandyish .onp-sl-text .onp-sl-strong:after {
    margin-left: 10px
}

.onp-sl-dandyish .onp-sl-cross {
    top: 18px;
    right: 18px
}

.onp-sl-dandyish .onp-sl-timer {
    right: 18px;
    bottom: 18px
}

.onp-sl-dandyish .onp-sl-state-loading .onp-sl-control-inner-wrap {
    background-image: url(/static/img/button-loader-ffffff.gif)
}

.onp-sl-dandyish .onp-sl-social-buttons {
    margin: 0;
    padding: 5px
}

.onp-sl-dandyish .onp-sl-control {
    border-radius: 7px;
    background-color: rgba(255,255,255,1);
    -moz-box-shadow: 0 1px 3px rgba(0,0,0,.15);
    -webkit-box-shadow: 0 3px 1px rgba(0,0,0,.15);
    box-shadow: 0 1px 3px rgba(0,0,0,.15)
}

.onp-sl-dandyish .onp-sl-control .fb-like iframe,.onp-sl-dandyish .onp-sl-control .fb-like span {
    height: 61px
}

.onp-sl-dandyish .onp-sl-control {
    margin: 14px 7px 0;
    min-width: 85px;
    max-width: 125px
}

.onp-sl.onp-sl-dandyish .onp-sl-social-button {
    position: static;
    min-width: 0;
    width: auto
}

.onp-sl-dandyish .onp-linkedin-button {
    position: relative
}

.onp-sl-dandyish .onp-google-button {
    position: relative;
    top: 2px
}

.onp-sl-dandyish .onp-facebook-button,.onp-sl-dandyish .onp-google-button,.onp-sl-dandyish .onp-twitter-tweet {
    width: auto
}

.onp-sl-dandyish .fb-like {
    position:top;
    top: 1px
}

.onp-sl-dandyish .onp-sl-control-inner-wrap {
    min-width: 85px;
    height: 84px;
    padding: 10px;
    text-align: center
}

.onp-sl-dandyish .onp-sl-terms {
    border-top: 1px solid #eaeaea;
    margin-top: 20px;
    background-color: transparent
}

.onp-sl-dandyish.onp-sl-has-terms .onp-sl-inner-wrap {
    padding-bottom: 0
}

.onp-sl-secrets .fb-like iframe,.onp-sl-secrets .fb-like span {
    width: 118px!important
}

.onp-sl-secrets {
    margin: 30px auto 35px;
    border: 0;
    background-color: transparent
}

.onp-sl-secrets .onp-sl-inner-wrap {
    border: 3px solid #fefefe;
    background-color: #f7f7f7
}

.onp-sl-secrets .onp-sl-outer-wrap {
    border: 1px solid #e6e6e6;
    -moz-box-shadow: 0 0 40px rgba(0,0,0,.08);
    -webkit-box-shadow: 0 0 40px rgba(0,0,0,.08);
    box-shadow: 0 0 40px rgba(0,0,0,.08)
}

.onp-sl-secrets .onp-sl-text,.onp-sl-secrets .onp-sl-timer,.onp-sl-secrets .onp-sl-timer * {
    -webkit-text-shadow: 1px 1px 2px #fff;
    -moz-text-shadow: 1px 1px 2px #fff;
    text-shadow: 1px 1px 2px #fff
}

.onp-sl-secrets .onp-sl-text .onp-sl-strong:after,.onp-sl-secrets .onp-sl-text .onp-sl-strong:before {
    content: " ";
    display: inline-block;
    width: 11px;
    height: 14px;
    margin: 0 9px;
    background: url(/static/img/lock-icon.png) 0 2px no-repeat
}

@media screen and (max-width:500px) {
    .onp-sl-secrets .onp-sl-text .onp-sl-strong:after,.onp-sl-secrets .onp-sl-text .onp-sl-strong:before {
        display: none
    }
}

.onp-sl-secrets .onp-sl-cross {
    top: 8px;
    right: 8px
}

.onp-sl-secrets .onp-sl-timer {
    right: 9px;
    bottom: 8px;
    color: #777
}

.onp-sl-secrets .onp-sl-state-loading .onp-sl-button-inner-wrap {
    background-image: url(/static/img/button-loader-eaeaea.gif)
}

.onp-sl-secrets .onp-sl-control {
    padding: 4px;
    background: rgba(0,0,0,.05)
}

.onp-sl-secrets .onp-sl-button-overlay,.onp-sl-secrets .onp-sl-control-inner-wrap {
    height: 34px;
    min-width: 118px
}

.onp-sl-secrets .onp-sl-control-inner-wrap {
    padding: 7px;
    -moz-box-shadow: inset 0 0 6px rgba(0,0,0,.25);
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.25);
    box-shadow: inset 0 0 6px rgba(0,0,0,.25)
}

.onp-sl-secrets .onp-sl-control .onp-sl-overlay-front {
    box-shadow: inset 0 2px 0 rgba(255,255,255,.25);
    -moz-box-shadow: inset 0 2px 0 rgba(255,255,255,.25);
    -webkit-box-shadow: inset 0 2px 0 rgba(255,255,255,.25);
    position: relative;
    background: #f7f7f7;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwYmZlZSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMGExZTMiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);background: -moz-linear-gradient(top,rgba(247,247,247,1) 0,rgba(238,238,238,1) 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,rgba(247,247,247,1)),color-stop(100%,rgba(238,238,238,1)));
    background: -webkit-linear-gradient(top,rgba(247,247,247,1) 0,rgba(238,238,238,1) 100%);
    background: -o-linear-gradient(top,rgba(247,247,247,1) 0,rgba(238,238,238,1) 100%);
    background: -ms-linear-gradient(top,rgba(247,247,247,1) 0,rgba(238,238,238,1) 100%);
    background: linear-gradient(to bottom,rgba(247,247,247,1) 0,rgba(238,238,238,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='f7f7f7', endColorstr='eeeeee', GradientType=0)
}

.onp-sl-secrets .onp-sl-control .onp-sl-overlay-icon {
    height: 34px;
    width: 44px;
    background: url(images/social-icons.png) -1000px 50% no-repeat;
    position: absolute
}

.onp-sl-secrets .onp-sl-control .onp-sl-overlay-line {
    position: absolute;
    left: 41px;
    top: 7px;
    height: 21px;
    width: 0;
    border-left: 1px solid rgba(0,0,0,.11);
    border-right: 1px solid rgba(255,255,255,.16)
}

.onp-sl-secrets .onp-sl-control .onp-sl-overlay-text {
    font-size: 14px;
    font-family: Arial,Helvetica,sans-serif;
    line-height: 34px;
    color: #fff;
    text-align: center;
    position: static;
    padding-left: 42px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-shadow: 0 -1px 1px rgba(0,0,0,.15)
}

.onp-sl-secrets .onp-sl-control .onp-sl-overlay-back,.onp-sl-secrets .onp-sl-control .onp-sl-overlay-header {
    background: #eaeaea
}

.onp-sl-secrets .onp-sl-twitter .onp-sl-overlay-front {
    background: #00bfee;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwYmZlZSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMGExZTMiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);background: -moz-linear-gradient(top,rgba(0,191,238,1) 0,rgba(0,161,227,1) 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,rgba(0,191,238,1)),color-stop(100%,rgba(0,161,227,1)));
    background: -webkit-linear-gradient(top,rgba(0,191,238,1) 0,rgba(0,161,227,1) 100%);
    background: -o-linear-gradient(top,rgba(0,191,238,1) 0,rgba(0,161,227,1) 100%);
    background: -ms-linear-gradient(top,rgba(0,191,238,1) 0,rgba(0,161,227,1) 100%);
    background: linear-gradient(to bottom,rgba(0,191,238,1) 0,rgba(0,161,227,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00bfee', endColorstr='#00a1e3', GradientType=0)
}

.onp-sl-secrets .onp-sl-twitter .onp-sl-overlay-icon {
    background-position: -132px 8px
}

.onp-sl-secrets .onp-sl-twitter .onp-sl-overlay-back {
    background: #24b1e5
}

.onp-sl-secrets .onp-sl-twitter .onp-sl-overlay-header {
    background: #368acd
}

.onp-sl-secrets .onp-sl-facebook .onp-sl-overlay-front {
    background: #5581bc;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzU1ODFiYyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9Ijk5JSIgc3RvcC1jb2xvcj0iIzI1NWI5ZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);background: -moz-linear-gradient(top,rgba(85,129,188,1) 0,rgba(37,91,157,1) 99%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,rgba(85,129,188,1)),color-stop(99%,rgba(37,91,157,1)));
    background: -webkit-linear-gradient(top,rgba(85,129,188,1) 0,rgba(37,91,157,1) 99%);
    background: -o-linear-gradient(top,rgba(85,129,188,1) 0,rgba(37,91,157,1) 99%);
    background: -ms-linear-gradient(top,rgba(85,129,188,1) 0,rgba(37,91,157,1) 99%);
    background: linear-gradient(to bottom,rgba(85,129,188,1) 0,rgba(37,91,157,1) 99%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5581bc', endColorstr='#255b9d', GradientType=0)
}

.onp-sl-secrets .onp-sl-facebook .onp-sl-overlay-icon {
    background-position: 15px 9px
}

.onp-sl-secrets .onp-sl-facebook .onp-sl-overlay-back {
    background: #46629e
}

.onp-sl-secrets .onp-sl-facebook .onp-sl-overlay-header {
    background-color: #314775
}

.onp-sl-secrets .onp-sl-google .onp-sl-overlay-front {
    background: #5c5c5c;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzVjNWM1YyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMxNTA5MGQiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);background: -moz-linear-gradient(top,#5c5c5c 0,#15090d 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#5c5c5c),color-stop(100%,#15090d));
    background: -webkit-linear-gradient(top,#5c5c5c 0,#15090d 100%);
    background: -o-linear-gradient(top,#5c5c5c 0,#15090d 100%);
    background: -ms-linear-gradient(top,#5c5c5c 0,#15090d 100%);
    background: linear-gradient(to bottom,#5c5c5c 0,#15090d 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5c5c5c', endColorstr='#15090d', GradientType=0)
}

.onp-sl-secrets .onp-sl-google .onp-sl-overlay-icon {
    background-position: -18px 9px
}

.onp-sl-secrets .onp-sl-google .onp-sl-overlay-back {
    background: #494647
}

.onp-sl-secrets .onp-sl-google .onp-sl-overlay-header {
    background-color: #111
}

.onp-sl-secrets .onp-sl-linkedin .onp-sl-overlay-front {
    background: #0076a3;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwNzZhMyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDU1NzUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);background: -moz-linear-gradient(top,#0076a3 0,#005575 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#0076a3),color-stop(100%,#005575));
    background: -webkit-linear-gradient(top,#0076a3 0,#005575 100%);
    background: -o-linear-gradient(top,#0076a3 0,#005575 100%);
    background: -ms-linear-gradient(top,#0076a3 0,#005575 100%);
    background: linear-gradient(to bottom,#0076a3 0,#005575 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0076a3', endColorstr='#005575', GradientType=0)
}

.onp-sl-secrets .onp-sl-linkedin .onp-sl-overlay-icon {
    background-position: -58px 8px
}

.onp-sl-secrets .onp-sl-linkedin .onp-sl-overlay-back {
    background: #286b8d
}

.onp-sl-secrets .onp-sl-linkedin .onp-sl-overlay-header {
    background-color: #19465d
}

.onp-sl-secrets .onp-sl-youtube-subscribe .onp-sl-control-inner-wrap {
    padding: 5px 7px
}

.onp-sl-secrets .onp-sl-youtube-subscribe .onp-sl-overlay-front {
    background: #e85858;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2U4NTg1OCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNjODIzMWEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);background: -moz-linear-gradient(top,rgba(232,88,88,1) 0,rgba(200,35,26,1) 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,rgba(232,88,88,1)),color-stop(100%,rgba(200,35,26,1)));
    background: -webkit-linear-gradient(top,rgba(232,88,88,1) 0,rgba(200,35,26,1) 100%);
    background: -o-linear-gradient(top,rgba(232,88,88,1) 0,rgba(200,35,26,1) 100%);
    background: -ms-linear-gradient(top,rgba(232,88,88,1) 0,rgba(200,35,26,1) 100%);
    background: linear-gradient(to bottom,rgba(232,88,88,1) 0,rgba(200,35,26,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e85858', endColorstr='#c8231a', GradientType=0)
}

.onp-sl-secrets .onp-sl-youtube-subscribe .onp-sl-overlay-icon {
    background-position: -207px 8px
}

.onp-sl-secrets .onp-sl-youtube-subscribe .onp-sl-overlay-back {
    background: #E85858
}

.onp-sl-secrets .onp-sl-youtube-subscribe .onp-sl-overlay-header {
    background-color: #C8231A
}

.onp-sl-secrets .onp-sl-terms {
    border-top: 0;
    background-color: #fff;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px
}

.onp-sl-secrets .onp-sl-terms-inner-wrap {
    border-top: 0;
    padding: 10px 40px 8px
}

iframe[src^="https://apis.google.com/u/0/_/widget/oauthflow/toast"] {
    display: none;
}

.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-bg_BG .fb-share-button {
    width: 95px !important;
}

.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-bg_BG .fb-like {
    width: 95px !important;
}

.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-bg_BG .onp-sl-social-button-facebook-like {
    width: 125px;
}

.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-bg_BG .fb-like iframe,
.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-bg_BG .fb-like span {
    width: 125px !important;
}

.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-bg_BG .onp-sl-social-button-facebook-share {
    width: 130px;
}

.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-bg_BG .fb-share-button iframe,
.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-bg_BG .fb-share-button span {
    width: 130px !important;
}

.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-nl_NL .fb-share-button {
    width: 92px !important;
}

.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-nl_NL .fb-like {
    width: 92px !important;
}

.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-nl_NL .onp-sl-social-button-facebook-like {
    width: 120px;
}

.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-nl_NL .fb-like iframe,
.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-nl_NL .fb-like span {
    width: 120px !important;
}

.onp-sl .onp-sl-input {
    float: none !important;
}
.console-underscore {
   display:inline-block;
  position:relative;
  top:-0.14em;
  left:10px;
}

.banner2
{
	width: 300px;
    margin-top: -317px;
    margin-left: 370px;
}

.onp-sl-great-attractor .onp-sl-connect-buttons .onp-sl-insta .onp-sl-icon {
    background-position: -18px 16px;
    background-color: #e4405f;
    border: 1px solid #ff0084
}
.onp-sl-great-attractor .onp-sl-connect-buttons.onp-sl-last-group .onp-sl-insta .onp-sl-icon {
    background-position: -18px 11px
}
.onp-sl-friendly-giant .onp-sl-connect-buttons .onp-sl-button.onp-sl-insta:hover {
    background-color: #ff0084
}
.onp-sl-friendly-giant .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-insta .onp-sl-connect-button {
    border-left: 5px solid #ff0084
}
.onp-sl-dark-force .onp-sl-connect-buttons .onp-sl-insta .onp-sl-icon {
    background-color: #e4405f;
    background-position: -24px 8px
}
.onp-sl-dark-force .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-insta {
    background-color: #e4405f
}

.onp-sl-dark-force .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-insta:hover {
    background-color: #d04736
}
.onp-sl-flat .onp-sl-social-buttons .onp-sl-insta .onp-sl-overlay-front {
    background: #D6249F;
    border-bottom-color: #a52316
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-insta .onp-sl-overlay-icon {
    background-position: -18px 9px
}
.onp-sl-flat .onp-sl-social-buttons .onp-sl-insta .onp-sl-overlay-back {
    background: #D6249F;
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-insta .onp-sl-overlay-header {
    background: #a52316
}

.onp-sl-flat .onp-sl-connect-buttons .onp-sl-insta .onp-sl-icon {
    background-position: -100px 0
}
.onp-sl-flat .onp-sl-connect-buttons .onp-sl-insta {
    background: #ca4639;
    border-bottom-color: #a52316
}
.onp-sl-flat .onp-sl-connect-buttons .onp-sl-insta:hover {
    background: #da4c3e;
    border-bottom-color: #b22618
}
.onp-sl-glass .onp-sl-insta-youtube .onp-sl-control-inner-wrap {
    padding: 8px 7px
}
.onp-sl-dandyish .onp-insta-button {
    position: relative;
    top: 2px
}
.onp-sl-dandyish .onp-facebook-button,.onp-sl-dandyish .onp-insta-button,.onp-sl-dandyish .onp-twitter-tweet {
    width: auto
}
.onp-sl-secrets .onp-sl-insta .onp-sl-overlay-front {
    background: #5c5c5c;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzVjNWM1YyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMxNTA5MGQiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);background: -moz-linear-gradient(top,#5c5c5c 0,#15090d 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#5c5c5c),color-stop(100%,#15090d));
    background: -webkit-linear-gradient(top,#5c5c5c 0,#15090d 100%);
    background: -o-linear-gradient(top,#5c5c5c 0,#15090d 100%);
    background: -ms-linear-gradient(top,#5c5c5c 0,#15090d 100%);
    background: linear-gradient(to bottom,#5c5c5c 0,#15090d 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5c5c5c', endColorstr='#15090d', GradientType=0)
}

.onp-sl-secrets .onp-sl-insta .onp-sl-overlay-icon {
    background-position: -18px 9px
}

.onp-sl-secrets .onp-sl-insta .onp-sl-overlay-back {
    background: #494647
}

.onp-sl-secrets .onp-sl-insta .onp-sl-overlay-header {
    background-color: #111
}
.onp-sl-social-buttons .onp-sl-facebook .onp-sl-social-button,.onp-sl-social-buttons .onp-sl-insta .onp-sl-social-button,.onp-sl-social-buttons .onp-sl-twitter-tweet .onp-sl-social-button {
    width: 104px
}
.onp-sl-social-buttons .onp-sl-insta .onp-sl-social-button {
    position: relative
}


<!-- copyright -->
.footer-content-wrapper .copyright-info {
    margin-top: 80px;
    font-size: 12px;
    color: hsl(0, 0%, 100%);
    margin: auto;
}


<!-- menu -->
.dropbtn {
    background-color:rgba(248,248,248,0.93)
    color: white;
    padding: 16px;
    font-size: 10px;
    border: none;
    cursor: pointer;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color:rgba(251,82,234,1.00);
    min-width: 110px;
   box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    
}

.dropdown-content a:hover {background-color: #f1f1f1}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color:rgba(111,79,241,1.00);
}




/* Our Portfolio Section
--------------------------------*/
#portfolio {
  background: #fff;
  padding: 30px 0;
  margin-top: -93px; !important
}

#portfolio .portfolio-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}

#portfolio .portfolio-item {
  overflow: hidden;
  position: relative;
  padding: 0;
  vertical-align: middle;
  text-align: center;
   height: 300px; !important
}

#portfolio .portfolio-item h2 {
  color: #ffffff;
  font-size: 24px;
  margin: 0;
  text-transform: capitalize;
  font-weight: 700;
}

#portfolio .portfolio-item img {
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  width: 100%;
}

#portfolio .portfolio-item:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

#portfolio .portfolio-item:hover .portfolio-overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.7);
}

#portfolio .portfolio-info {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}



/*Social media effects*/

@import url(https://fonts.googleapis.com/css?family=Khula:700)
body {
  background: #111;
}
.hidden {
  opacity:0;
}
.console-container {
 
  font-family:;
  font-size:4em;
  text-align:center;
  height:200px;
  width:600px;
  display:block;
  position:absolute;
  color:white;
  top:0;
  bottom:0;
  left:0;
  right:0;
  margin:auto;
}
/*!
 * BizPanda Lockers - v2.3.5, 2018-05-23
 * for jQuery: http://onepress-media.com/plugin/social-locker-for-jquery/get
 * for Wordpress: http://onepress-media.com/plugin/social-locker-for-wordpress/get
 *
 * Copyright 2018, OnePress, http://byonepress.com
 * Help Desk: http://support.onepress-media.com/
*/

.onp-sl,.onp-sl .onp-sl-inner-wrap,.onp-sl .onp-sl-outer-wrap {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.onp-sl iframe {
    margin: 0!important
}

.onp-sl-always-visible {
    display: block!important
}

.onp-sl {
    position: relative!important;
    background-color: #f9f9f9;
    margin: 20px auto;
    max-width: 625px
}

.onp-sl .onp-sl-group {
    padding: 35px 30px
}

.onp-sl-has-terms .onp-sl-group {
    padding: 35px 30px 25px
}

.onp-sl .onp-sl-inner-wrap {
    position: relative;
    overflow: visible
}

.onp-sl .onp-sl-non-default-screen {
    padding: 35px
}

.onp-sl .onp-sl-first-group.onp-sl-not-single-group {
    padding-bottom: 0
}

.onp-sl,.onp-sl button,.onp-sl input,.onp-sl p {
    font: normal normal 400 13px/170% Arial,Helvetica,sans-serif;
    color:rgba(0,0,0,1.00);
}

.onp-sl a
{
	color:rgba(223,8,175,1.00);
}

.onp-sl p {
    margin: 0!important
}

.onp-sl p+p {
    margin-top: 7px!important
}

.onp-sl .onp-sl-header,.onp-sl .onp-sl-text .onp-sl-strong {
    font-size: 18px;
    line-height: 130%;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 7px
}

.onp-sl .onp-sl-header {
    margin-bottom: 15px
}

.onp-sl .onp-sl-text {
    text-align: center;
    margin-bottom: 10px
}

.onp-sl .onp-sl-text p {
    line-height: 150%
}

.onp-sl .onp-sl-note {
    font-style: italic;
    text-align: center;
    font-size: 12px;
    line-height: 130%;
    padding-top: 10px;
    color: #aaa
}

.onp-sl .onp-sl-note.onp-sl-nospam {
    padding-top: 2px
}

.onp-sl .onp-sl-first-group .onp-sl-strong:after,.onp-sl .onp-sl-first-group .onp-sl-strong:before {
    content: " ";
    display: inline-block;
    width: 11px;
    height: 14px;
    margin: 0 9px;
    background: url(/static/img/lock-icon.png) 0 2px no-repeat
}

@media screen and (max-width:500px) {
    .onp-sl .onp-sl-first-group .onp-sl-strong:after,.onp-sl .onp-sl-first-group .onp-sl-strong:before {
        display: none
    }
}

.onp-sl-group-separator {
    text-align: center
}

.onp-sl-line-separator {
    border-bottom: 2px dashed #efefef;
    margin: 25px;
    height: 20px
}

.onp-sl-line-separator .onp-sl-title {
    font-size: 14px;
    line-height: 20px;
    top: 7px;
    position: relative;
    background-color: #efefef;
    display: inline-block;
    padding: 2px 12px;
    border-radius: 3px;
    color: #afafaf
}

.onp-sl-hiding-link-separator .onp-sl-title {
    text-decoration: none;
    border-bottom: 1px dashed #111;
    color: #111
}

.onp-sl-hiding-link-separator .onp-sl-title:hover {
    border-bottom: 0
}

.onp-sl-terms-inner-wrap {
    text-align: center;
    padding: 8px 40px
}

.onp-sl-terms,.onp-sl-terms a {
    font-size: 12px;
    color: #555
}

.onp-sl-terms {
    background-color: rgba(0,0,0,.025)
}

.onp-sl-agreement-checkbox {
    text-align: center;
    padding: 8px 0 10px
}

.onp-sl-social-buttons .onp-sl-agreement-checkbox {
    padding: 12px 0 10px
}

.onp-sl-has-agreement-checkbox-top .onp-sl-agreement-checkbox {
    padding: 4px 0 8px
}

.onp-sl-has-agreement-checkbox-top .onp-sl-agreement-checkbox:before {
    content: " ";
    display: block;
    height: 1px;
    width: 40%;
    border-top: 1px solid rgba(0,0,0,.08);
    margin: 0 auto 10px
}

.onp-sl .onp-sl-group .onp-sl-agreement-checkbox .onp-sl-field-checkbox:last-child {
    margin-bottom: 0
}

.onp-sl .onp-sl-agreement-checkbox .onp-sl-field-checkbox label {
    padding-left: 0
}

.onp-sl-no-consent-error .onp-sl-agreement-checkbox-inner-wrap {
    background: #ffffda;
    color: #111!important;
    padding: 10px
}

.onp-sl-agreement-checkbox .onp-sl-error {
    display: none
}

.onp-sl-no-consent-error .onp-sl-agreement-checkbox .onp-sl-error {
    display: block;
    font-weight: 700
}

.onp-sl .onp-sl-agreement-checkbox .onp-sl-checkbox {
    position: relative;
    top: 3px;
    left: auto;
    margin-top: 0;
    margin-right: 7px;
    display: inline-block
}

.onp-sl .onp-sl-agreement-checkbox .onp-sl-field-checkbox .onp-sl-checkbox-text {
    display: inline
}

.onp-sl-connect-buttons.onp-sl-has-agreement-checkbox-top .onp-sl-field-checkbox .onp-sl-checkbox-text,.onp-sl-connect-buttons.onp-sl-has-agreement-checkbox-top .onp-sl-field-checkbox .onp-sl-checkbox-text a,.onp-sl-has-agreement-checkbox-bottom .onp-sl-field-checkbox .onp-sl-checkbox-text,.onp-sl-has-agreement-checkbox-bottom .onp-sl-field-checkbox .onp-sl-checkbox-text a,.onp-sl-social-buttons.onp-sl-has-agreement-checkbox-top .onp-sl-field-checkbox .onp-sl-checkbox-text,.onp-sl-social-buttons.onp-sl-has-agreement-checkbox-top .onp-sl-field-checkbox .onp-sl-checkbox-text a {
    font-size: 13px
}

.onp-sl-subscription.onp-sl-has-agreement-checkbox-top .onp-sl-agreement-checkbox {
    margin-top: 0;
    padding-top: 0;
    text-align: left;
    margin-bottom: 10px;
    border-bottom: 1px solid #f1f1f1
}

.onp-sl-custom-form .onp-sl-subscription.onp-sl-has-agreement-checkbox-top .onp-sl-agreement-checkbox {
    border-top: 1px solid #f1f1f1;
    border-bottom: 0;
    margin-top: 10px;
    padding-top: 8px;
    padding-bottom: 10px;
    margin-bottom: 0
}

.onp-sl-subscription.onp-sl-has-agreement-checkbox-top .onp-sl-agreement-checkbox:before {
    display: none
}

.onp-sl-custom-form .onp-sl-subscription.onp-sl-has-agreement-checkbox-top .onp-sl-field-submit {
    margin-top: 0
}

.onp-sl-subscription.onp-sl-has-agreement-checkbox-bottom .onp-sl-agreement-checkbox {
    margin-top: 0;
    padding-top: 0;
    text-align: center
}

.onp-sl .onp-sl-error-body {
    text-align: center
}

.onp-sl .onp-sl-error-title {
    text-align: center!important;
    display: inline-block!important;
    background-color: #c00!important;
    font-size: 14px!important;
    line-height: 100%!important;
    padding: 4px 10px!important;
    color: #fff!important;
    vertical-align: top!important;
    text-shadow: none!important
}

.onp-sl .onp-sl-error-title:hover {
    background-color: #e00!important
}

.onp-sl .onp-sl-group-error,.onp-sl-locker-error {
    background: #c00!important;
    color: #fff!important;
    padding: 10px!important;
    margin-top: 15px!important;
    text-shadow: none!important;
    text-align: center
}

.onp-sl-group-notice {
    background: #ffffda;
    color: #111!important;
    padding: 10px!important;
    margin-top: 15px!important;
    text-shadow: none!important;
    text-align: center
}

.onp-sl .onp-sl-cross {
    background: url(/static/img/close.png) 50% 50% no-repeat;
    width: 16px;
    height: 16px;
    opacity: .1;
    filter: alpha(opacity=10);
    cursor: pointer;
    position: absolute;
    top: 4px;
    right: 4px;
    z-index: 2
}

.onp-sl:hover .onp-sl-cross {
    opacity: .2;
    filter: alpha(opacity=20)
}

.onp-sl .onp-sl-cross:hover {
    opacity: .8;
    filter: alpha(opacity=80)
}

.onp-sl .onp-sl-timer {
    position: absolute;
    right: 5px;
    bottom: 5px;
    z-index: 10
}

.onp-sl .onp-sl-timer,.onp-sl .onp-sl-timer * {
    font-size: 12px;
    line-height: 12px;
    text-transform: lowercase
}

.onp-sl .onp-sl-timer {
    color: #000;
    margin-left: 5px
}

.onp-sl .onp-sl-timer-counter {
    font-weight: 700
}

.onp-sl-overlap-background,.onp-sl-overlap-box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

.onp-sl-overlap-background {
    background-color: #fefefe;
    z-index: 25;
    -ms-filter: "alpha(Opacity=80)";
    filter: alpha(opacity=80);
    -moz-opacity: .8;
    -khtml-opacity: .8;
    opacity: .8
}

.onp-sl-blurring-mode .onp-sl-overlap-background {
    -ms-filter: "alpha(Opacity=20)";
    filter: alpha(opacity=20);
    -moz-opacity: .2;
    -khtml-opacity: .2;
    opacity: .2
}

.onp-sl-overlap-locker-box {
    position: absolute;
    top: 50%;
    z-index: 40;
    left: 0;
    right: 0
}

.onp-sl-overlap-locker-box.onp-sl-position-scroll,.onp-sl-overlap-locker-box.onp-sl-position-top {
    top: 0
}

.onp-sl-overlap-box .onp-sl {
    margin: 0 auto!important
}

.onp-sl-overlap-mode p {
    float: none!important
}

.onp-sl .onp-sl-button,.onp-sl .onp-sl-input {
    font-size: 14px;
    padding: 10px;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.onp-sl .onp-sl-input {
    line-height: 16px;
    outline: 0;
    width: 100%;
    display: block;
    background: #fff;
    border: 1px solid #c4c4c4;
    appearance: normal;
    -moz-appearance: none;
    -webkit-appearance: none;
    float: none!important
}

.onp-sl .onp-sl-input::-webkit-input-placeholder {
    line-height: 140%
}

.onp-sl .onp-sl-input:focus::-webkit-input-placeholder {
    opacity: 0
}

.onp-sl .onp-sl-input:focus::-moz-placeholder {
    opacity: 0
}

.onp-sl .onp-sl-input:focus:-moz-placeholder {
    opacity: 0
}

.onp-sl .onp-sl-input:focus:-ms-input-placeholder {
    opacity: 0
}

.onp-sl .onp-sl-button {
    border: 0;
    padding: 6px 10px;
    text-align: center;
    cursor: pointer;
    text-transform: none;
    text-decoration: none;
    background-color: #f1f1f1;
    position: relative
}

.onp-sl .onp-sl-form-button {
    padding: 8px 15px
}

.onp-sl .onp-sl-button:hover {
    background-color: #e5e5e5
}

.onp-sl .onp-sl-button:focus {
    outline: 0
}

.onp-sl .onp-sl-button:disabled {
    cursor: default
}

.onp-sl .onp-sl-button.load:before {
    position: absolute;
    left: 50%;
    top: 50%;
    content: "";
    height: 24px;
    width: 24px;
    margin: -12px 0 0 -12px;
    background: url(/static/img/button_loader.gif)
}

.onp-sl .onp-sl-checkbox {
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -9px;
    display: block;
    width: 15px;
    height: 15px;
    outline: 0;
    background: #fff;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.1);
    border: 1px solid #c4c4c4
}

.onp-sl .onp-sl-checkbox:after {
    opacity: 0;
    transition: opacity .1s;
    -o-transition: opacity .1s;
    -ms-transition: opacity .1s;
    -moz-transition: opacity .1s;
    -webkit-transition: opacity .1s;
    content: "";
    display: block;
    position: absolute;
    top: 3px;
    right: 3px;
    bottom: 3px;
    left: 3px;
    background: #413548;
    border-radius: 2px
}

.onp-sl input:checked+.onp-sl-checkbox:after {
    opacity: 1
}

.onp-sl .onp-sl-dropdown+i {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 5px;
    height: 11px;
    background: 0 0
}

.onp-sl .onp-sl-dropdown+i:after,.onp-sl .onp-sl-dropdown+i:before {
    content: '';
    position: absolute;
    right: 0;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent
}

.onp-sl .onp-sl-dropdown+i:after {
    bottom: 0;
    border-top: 4px solid #333
}

.onp-sl .onp-sl-dropdown+i:before {
    top: 0;
    border-bottom: 4px solid #333
}

.onp-sl .onp-sl-icon {
    font-family: FontAwesome;
    font-style: normal;
    font-weight: 400;
    -webkit-font-smoothing: antialiased
}

.onp-sl .onp-sl-icon-append,.onp-sl .onp-sl-icon-prepend {
    position: absolute;
    top: 5px;
    width: 29px;
    height: 29px;
    font-size: 15px;
    line-height: 29px;
    text-align: center;
    color: #ccc;
    border-color: #e5e5e5
}

.onp-sl .onp-sl-icon-append {
    right: 5px;
    padding-left: 3px;
    border-left-width: 1px;
    border-left-style: solid
}

.onp-sl .onp-sl-icon-prepend {
    left: 5px;
    padding-right: 3px;
    border-right-width: 1px;
    border-right-style: solid
}

.onp-sl .onp-sl-icon-prepend+input,.onp-sl .onp-sl-icon-prepend+textarea {
    padding-left: 46px
}

.onp-sl .onp-sl-icon-append+input,.onp-sl .onp-sl-icon-append+textarea {
    padding-right: 46px
}

.onp-sl .onp-sl-icon-prepend+.onp-sl-icon-append+input,.onp-sl .onp-sl-icon-prepend+.onp-sl-icon-append+textarea {
    padding-left: 46px
}

.onp-sl .onp-sl-field {
    margin-bottom: 10px;
    position: relative;
    text-align: left
}

.onp-sl .onp-sl-field .onp-sl-field-title,.onp-sl .onp-sl-field-label {
    margin: 15px 0 3px
}

.onp-sl .onp-sl-field .onp-sl-field-control {
    position: relative
}

.onp-sl .onp-sl-field-separator {
    border-top: 1px solid #f1f1f1
}

.onp-sl .onp-sl-field-checkbox {
    margin-bottom: 5px
}

.onp-sl .onp-sl-group .onp-sl-field-checkbox:last-child {
    margin-bottom: 10px
}

.onp-sl .onp-sl-field-checkbox label {
    padding-left: 25px;
    cursor: pointer
}

.onp-sl .onp-sl-field-checkbox label>* {
    display: inline-block;
    vertical-align: baseline
}

.onp-sl .onp-sl-field-checkbox input {
    display: none
}

.onp-sl .onp-sl-field.onp-sl-error-state .onp-sl-checkbox,.onp-sl .onp-sl-field.onp-sl-error-state .onp-sl-input {
    background-color: #fff0f0
}

.onp-sl .onp-sl-field .onp-sl-validation-error {
    text-align: left;
    display: block;
    margin-top: 6px;
    padding: 0 1px;
    font-style: normal;
    line-height: 15px;
    color: #ee9393;
    padding-bottom: 5px
}

.onp-sl .onp-sl-social-buttons {
    text-align: center;
    padding: 0;
}

.onp-sl .onp-sl-text+.onp-sl-social-buttons {
    margin-top: 5px
}

.onp-sl .onp-sl-social-buttons .onp-sl-text {
    margin-bottom: 3px
}

.onp-sl .onp-sl-social-buttons .onp-sl-text .onp-sl-strong {
    margin-bottom: 0
}

.onp-sl-social-buttons .onp-sl-control {
    min-width: 104px;
    display: inline-block;
    vertical-align: top;
    text-align: left;
    position: relative;
    margin: 10px 5px 0;
    background-color: #f2f2f2
}

.onp-sl-social-buttons .onp-sl-control-inner-wrap {
    height: 40px;
    min-width: 120px;
    padding: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative
}

.onp-sl-social-buttons .onp-sl-social-button {
    overflow: hidden;
    padding: 1px;
    position: relative;
    top: -1px
}

.onp-sl-social-buttons .onp-sl-state-loading .onp-sl-control-inner-wrap {
    background: url(/static/img/button-loader-f2f2f2.gif) 50% 50% no-repeat
}

.onp-sl-social-buttons .onp-sl-facebook .onp-sl-social-button,.onp-sl-social-buttons .onp-sl-google .onp-sl-social-button,.onp-sl-social-buttons .onp-sl-twitter-tweet .onp-sl-social-button {
    width: 104px
}

.onp-sl-social-buttons .onp-sl-google .onp-sl-social-button {
    position: relative
}

.onp-sl-opera .onp-sl-social-buttons .fb-like {
    position: relative;
    top: -2px
}

.onp-sl-social-buttons .fb-like span {
    vertical-align: top!important;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    overflow: hidden;
    padding: 0 1px;
    margin: 0
}

.onp-sl-social-buttons .fb-like iframe,.onp-sl-social-buttons .fb-like span {
    height: 22px
}

.onp-sl-social-buttons .onp-sl-facebook-share .onp-sl-social-button,.onp-sl-social-buttons .onp-sl-youtube-subscribe .onp-sl-social-button {
    line-height: 1%
}

.onp-sl-social-buttons.onp-sl-vertical .onp-sl-social-button span {
    top: 1px
}

.onp-sl-social-buttons .onp-sl-agreement-overlay,.onp-sl-social-buttons .onp-sl-facebook-share-overlay,.onp-sl-social-buttons .onp-sl-feature-overlay,.onp-sl-social-buttons .onp-sl-youtube-subscribe-overlay {
    position: absolute!important;
    top: 0!important;
    right: 0!important;
    bottom: 0!important;
    left: 0!important;
    background-color: rgba(255,255,255,0)!important;
    cursor: pointer!important;
    z-index: 20!important
}

.onp-sl-social-buttons .onp-sl-agreement-overlay:hover,.onp-sl-social-buttons .onp-sl-facebook-share-overlay:hover,.onp-sl-social-buttons .onp-sl-feature-overlay:hover,.onp-sl-social-buttons .onp-sl-youtube-subscribe-overlay:hover {
    background-color: rgba(255,255,255,.1)!important
	width: 0%;
}

.onp-sl-social-buttons .onp-sl-youtube-subscribe .onp-sl-control-inner-wrap {
    padding-top: 8px
}

.onp-sl-social-buttons .onp-sl-youtube-subscribe .onp-sl-social-button {
    min-width: 108px
}

.onp-sl-social-buttons.onp-sl-no-counters .onp-sl-social-button {
    text-align: center
}

.onp-sl-social-buttons .onp-sl-button-error {
    line-height: normal!important;
    color: red!important;
    font-family: arial,sans-serif!important;
    font-size: 14px!important
}

.onp-sl-social-buttons .onp-sl-unsupported {
    font-size: 10px;
    text-align: center;
    line-height: 13px
}

.onp-sl-social-buttons .onp-sl-button-overlay {
    width: 100%;
    border-bottom: 0;
    position: absolute;
    top: 0;
    left: 0;
    text-decoration: none
}

.onp-sl-social-buttons .onp-sl-button-overlay * {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0
}

.onp-sl-social-buttons .onp-sl-overlay-back,.onp-sl-social-buttons .onp-sl-overlay-front {
    height: 100%;
    top: 0;
    left: 0;
    -moz-box-sizing: content-box;
    box-sizing: content-box
}

.onp-sl-social-buttons .onp-sl-flip .onp-sl-control-inner-wrap {
    perspective: 500px;
    perspective-origin: 50% 0;
    -webkit-perspective: 500px;
    -webkit-perspective-origin: 50% 0;
    -moz-perspective: 500px;
    -moz-perspective-origin: 50% 0
}

.onp-sl-social-buttons .onp-sl-flip .onp-sl-button-overlay {
    display: block;
    transform-origin: bottom;
    transform-style: preserve-3d;
    transition: transform .3s ease;
    transform: translate(0);
    -webkit-transform-origin: bottom;
    -webkit-transform-style: preserve-3d;
    -webkit-transition: -webkit-transform .3s ease;
    -webkit-transform: translateY(0) rotateX(0);
    -moz-transform-origin: bottom;
    -moz-transform-style: preserve-3d;
    -moz-transition: -moz-transform .3s ease;
    -moz-transform: translate(0);
    text-decoration: none!important
}

.onp-sl-social-buttons .onp-sl-flip .onp-sl-overlay-back {
    transform: rotateX(-180deg) translateZ(4px);
    -webkit-transform: rotateX(-180deg) translateZ(4px);
    -moz-transform: rotateX(-180deg) translateZ(4px)
}

.onp-sl-social-buttons .onp-sl-flip .onp-sl-overlay-header {
    height: 4px;
    transform-origin: top;
    transform: rotateX(-90deg);
    -webkit-transform-origin: top;
    -webkit-transform: rotateX(-90deg);
    -moz-transform-origin: top;
    -moz-transform: rotateX(-90deg)
}

.onp-sl-social-buttons .onp-sl-touch .onp-sl-button-overlay {
    cursor: pointer
}

.onp-sl-social-buttons .onp-sl-state-error.onp-sl-control .onp-sl-overlay-text {
    text-decoration: line-through;
    color: #fff;
    text-shadow: none
}

.onp-sl-social-buttons .onp-sl-state-error.onp-sl-control .onp-sl-overlay-back,.onp-sl-social-buttons .onp-sl-state-error.onp-sl-control .onp-sl-overlay-front,.onp-sl-social-buttons .onp-sl-state-error.onp-sl-control .onp-sl-overlay-header {
    background: #c00!important
}

.onp-sl-social-buttons .onp-sl-state-error .onp-sl-social-button {
    display: none
}

.onp-sl-no-touch .onp-sl-flip:hover .onp-sl-button-overlay,.onp-sl-social-buttons .onp-sl-flip-hover .onp-sl-button-overlay {
    display: block!important;
    transform: translateY(4px) rotateX(-105deg);
    -webkit-transform: translateY(4px) rotateX(-105deg);
    -moz-transform: translateY(4px) rotateX(-105deg)
}

.onp-sl-no-touch .onp-sl-flip.onp-sl-step-completed:hover .onp-sl-button-overlay,.onp-sl-social-buttons .onp-sl-flip-hover.onp-sl-step-completed .onp-sl-button-overlay {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none
}

.onp-sl-social-buttons .onp-sl-flip:hover .onp-sl-overlay-back {
    border-top: 2px solid #eee
}

.onp-sl-social-buttons .onp-sl-flip.onp-sl-step-completed .onp-sl-overlay-front {
    background: #777!important;
    color: #fff
}

.onp-sl-social-buttons .onp-sl-flip.onp-sl-step-completed .onp-sl-overlay-text {
    text-decoration: line-through
}

.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-es_ES .onp-sl-social-button-facebook-like,.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-es_ES .onp-sl-social-button-facebook-share {
    width: 114px!important
}

.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-ru_RU .onp-sl-social-button-facebook-like,.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-ru_RU .onp-sl-social-button-facebook-share {
    width: 124px!important
}

.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-de_DE .onp-sl-social-button-facebook-like,.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-de_DE .onp-sl-social-button-facebook-share,.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-pl_PL .onp-sl-social-button-facebook-like,.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-pl_PL .onp-sl-social-button-facebook-share {
    width: 120px!important
}

.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-pt_BR .onp-sl-social-button-facebook-like,.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-pt_BR .onp-sl-social-button-facebook-share {
    width: 130px!important
}

.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-cs_CZ .onp-sl-social-button-facebook-like,.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-cs_CZ .onp-sl-social-button-facebook-share {
    width: 125px!important
}

.onp-sl-social-buttons.onp-sl-no-counters .fb_iframe_widget {
    display: inline-block!important
}

.onp-sl-social-buttons.onp-sl-no-counters .fb-like {
    overflow: hidden;
    width: 50px!important
}

.onp-sl-horizontal.onp-sl-no-counters .fb-share-button {
    overflow: hidden;
    width: 60px!important
}

.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-es_ES .fb-like {
    width: 78px!important
}

.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-es_ES .fb-share-button {
    width: 81px!important
}

.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-it_IT .fb-like {
    width: 78px!important
}

.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-it_IT .fb-share-button {
    width: 81px!important
}

.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-fr_FR .fb-like {
    width: 63px!important
}

.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-fr_FR .fb-share-button {
    width: 73px!important
}

.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-ru_RU .fb-like {
    width: 81px!important
}

.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-ru_RU .fb-share-button {
    width: 91px!important
}

.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-fi_FI .fb-like {
    width: 68px!important
}

.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-fi_FI .fb-share-button {
    width: 43px!important
}

.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-pl_PL .fb-like {
    width: 59px!important
}

.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-pl_PL .fb-share-button {
    width: 71px!important
}

.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-de_DE .fb-like {
    width: 85px!important
}

.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-pt_BR .fb-like {
    width: 59px!important
}

.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-pt_BR .fb-share-button {
    width: 98px!important
}

.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-cs_CZ .fb-like {
    width: 93px!important
}

.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-cs_CZ .fb-share-button {
    width: 55px!important
}

.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-bg_BG .fb-like,.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-bg_BG .fb-share-button {
    width: 95px!important
}

.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-bg_BG .onp-sl-social-button-facebook-like {
    width: 125px
}

.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-bg_BG .fb-like iframe,.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-bg_BG .fb-like span {
    width: 125px!important
}

.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-bg_BG .onp-sl-social-button-facebook-share {
    width: 130px
}

.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-bg_BG .fb-share-button iframe,.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-bg_BG .fb-share-button span {
    width: 130px!important
}

.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-nl_NL .fb-like,.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-nl_NL .fb-share-button {
    width: 92px!important
}

.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-nl_NL .onp-sl-social-button-facebook-like {
    width: 120px
}

.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-nl_NL .fb-like iframe,.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-nl_NL .fb-like span {
    width: 120px!important
}

.onp-sl-connect-buttons {
    text-align: center
}

.onp-sl-connect-buttons .onp-sl-control,.onp-sl-connect-buttons .onp-sl-control .onp-sl-connect-button,.onp-sl-connect-buttons .onp-sl-control .onp-sl-icon {
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.onp-sl-connect-buttons .onp-sl-button {
    background-color: #f1f1f1;
    padding: 0 5px;
    margin: 7px;
    position: relative;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    width: 170px;
    height: 50px;
    vertical-align: bottom
}

.onp-sl-connect-buttons .onp-sl-control+.onp-sl-control {
    margin-top: 10px
}

.onp-sl-connect-buttons .onp-sl-control:hover {
    background-color: #e5e5e5
}

.onp-sl-connect-buttons .onp-sl-short {
    display: none
}

.onp-sl-connect-buttons .onp-sl-state-error,.onp-sl-connect-buttons .onp-sl-state-loading {
    position: relative;
    cursor: default!important
}

.onp-sl-connect-buttons .onp-sl-state-error .onp-sl-connect-button,.onp-sl-connect-buttons .onp-sl-state-error .onp-sl-icon,.onp-sl-connect-buttons .onp-sl-state-loading .onp-sl-connect-button,.onp-sl-connect-buttons .onp-sl-state-loading .onp-sl-icon {
    display: none
}

.onp-sl-connect-buttons .onp-sl-state-loading .onp-sl-control-inner-wrap {
    background: url(/static/img/button-loader-ffffff.gif) 50% 50% no-repeat;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0
}

.onp-sl-connect-buttons .onp-sl-state-error .onp-sl-control-inner-wrap {
    position: relative;
    top: 50%;
    margin-top: -11px
}

.onp-sl-connect-buttons .onp-sl-state-error .onp-sl-control-inner-wrap .onp-sl-error-title {
    height: 22px!important;
    padding: 0 10px!important;
    line-height: 22px!important;
    font-size: 14px!important;
    font-weight: 400!important
}

.onp-sl-subscription .onp-sl-button {
    width: 100%
}

.onp-sl-subscription .onp-sl-control {
    padding: 10px 0 0;
    max-width: 350px;
    margin: auto
}

.onp-sl-custom-form .onp-sl-subscription .onp-sl-field-submit {
    padding-top: 10px;
    margin-top: 15px
}

.onp-sl-custom-form .onp-sl-subscription .onp-sl-field-submit:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin-top: -1px;
    border-top: 1px solid #f1f1f1
}

.onp-sl-subscription.onp-sl-last-group.onp-sl-separator-hides {
    padding-top: 5px
}

.onp-sl-subscription.onp-sl-last-group.onp-sl-separator-shows {
    border-top: 1px solid #eaeaea;
    margin-top: 30px;
    padding-top: 30px
}

.onp-sl-screen-enter-email .onp-sl-button {
    width: 100%
}

.onp-sl-screen-enter-email .onp-sl-control {
    max-width: 350px;
    margin: auto;
    padding-top: 10px
}

.onp-sl-screen-email-confirmation {
    text-align: center
}

.onp-sl-screen-email-confirmation .onp-sl-screen-message {
    display: block
}

.onp-sl-screen-email-confirmation .onp-sl-cancel {
    color: #006ca7;
    text-decoration: none
}

.onp-sl-screen-email-confirmation .onp-sl-cancel:hover {
    background-color: #ffffda
}

.onp-sl-screen-email-confirmation .onp-sl-highlight {
    border-radius: 3px;
    font-style: italic
}

.onp-sl-screen-email-confirmation .onp-sl-open.onp-sl-has-icon {
    position: relative;
    padding-left: 45px
}

.onp-sl-screen-email-confirmation .onp-sl-open-button-wrap {
    padding-top: 20px
}

.onp-sl-screen-email-confirmation .onp-sl-note {
    padding-top: 16px
}

.onp-sl-screen-email-confirmation .onp-sl-open .onp-sl-icon {
    background: url(/static/img/email-services.png) 0 70px no-repeat;
    display: inline-block;
    width: 28px;
    height: 21px;
    vertical-align: baseline;
    position: absolute;
    top: 50%;
    left: 10px;
    margin-top: -9px
}

.onp-sl-screen-data-processing {
    text-align: center;
    padding: 60px
}

.onp-sl-screen-data-processing .onp-sl-process-spin {
    height: 100px;
    background: url(/static/img/large-loader.gif) center no-repeat
}

.onp-sl-screen-data-processing .onp-sl-processing-sreen-text {
    margin-top: 20px;
    text-align: center
}

.onp-sl .pika-single {
    z-index: 9999;
    display: block;
    position: absolute!important;
    right: 0!important;
    color: #333;
    background: #fff;
    border: 1px solid #ccc;
    border-bottom-color: #bbb;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    text-shadow: none
}

.onp-sl .pika-single:after,.onp-sl .pika-single:before {
    content: " ";
    display: table
}

.onp-sl .pika-single:after {
    clear: both
}

.onp-sl .pika-single {
    *zoom: 1
}

.onp-sl .pika-single.is-hidden {
    display: none
}

.onp-sl .pika-single.is-bound {
    position: absolute;
    box-shadow: 0 5px 15px -5px rgba(0,0,0,.5)
}

.onp-sl .pika-lendar {
    float: left;
    width: 240px;
    margin: 8px
}

.onp-sl .pika-title {
    position: relative;
    text-align: center
}

.onp-sl .pika-label {
    display: inline-block;
    *display: inline;
    position: relative;
    z-index: 9999;
    overflow: hidden;
    margin: 0;
    padding: 5px 3px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    background-color: #fff
}

.onp-sl .pika-title select {
    cursor: pointer;
    position: absolute;
    z-index: 9998;
    margin: 0;
    left: 0;
    top: 5px;
    filter: alpha(opacity=0);
    opacity: 0
}

.onp-sl .pika-next,.onp-sl .pika-prev {
    display: block;
    cursor: pointer;
    position: relative;
    outline: 0;
    border: 0;
    padding: 0;
    width: 20px;
    height: 30px;
    text-indent: 20px;
    white-space: nowrap;
    overflow: hidden;
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 75% 75%;
    opacity: .5;
    *position: absolute;
    *top: 0
}

.onp-sl .pika-next:hover,.onp-sl .pika-prev:hover {
    opacity: 1
}

.onp-sl .is-rtl .pika-next,.onp-sl .pika-prev {
    float: left;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==);*left: 0
}

.onp-sl .is-rtl .pika-prev,.onp-sl .pika-next {
    float: right;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=);*right: 0
}

.onp-sl .pika-next.is-disabled,.onp-sl .pika-prev.is-disabled {
    cursor: default;
    opacity: .2
}

.onp-sl .pika-select {
    display: inline-block;
    *display: inline
}

.onp-sl .pika-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: 0
}

.onp-sl .pika-table td,.onp-sl .pika-table th {
    width: 14.285714285714286%;
    padding: 0
}

.onp-sl .pika-table th {
    color: #999;
    font-size: 12px;
    line-height: 25px;
    font-weight: 700;
    text-align: center
}

.onp-sl .pika-button {
    cursor: pointer;
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    outline: 0;
    border: 0;
    margin: 0;
    width: 100%;
    padding: 5px;
    color: #666!important;
    font-size: 12px;
    line-height: 15px;
    text-align: right;
    background: #f5f5f5;
    text-shadow: none
}

.onp-sl .pika-week {
    font-size: 11px;
    color: #999
}

.onp-sl .is-today .pika-button {
    color: #3af;
    font-weight: 700
}

.onp-sl .is-selected .pika-button {
    color: #fff!important;
    font-weight: 700;
    background: #3af;
    box-shadow: inset 0 1px 3px #178fe5;
    border-radius: 3px
}

.onp-sl .is-disabled .pika-button {
    pointer-events: none;
    cursor: default;
    color: #999;
    opacity: .3
}

.onp-sl .pika-button:hover {
    color: #fff!important;
    background: #ff8000!important;
    box-shadow: none!important;
    border-radius: 3px!important
}

.onp-sl .pika-table abbr {
    border-bottom: 0;
    cursor: help
}

iframe[src^="https://apis.google.com/u/0/_/widget/oauthflow/toast"] {
    display: none
}

.onp-sl-great-attractor {
    background-color: transparent;
    padding: 0
}

.onp-sl-great-attractor.onp-sl-email-locker {
    max-width: 550px
}

.onp-sl-great-attractor.onp-sl-custom-form.onp-sl-contains-single-group,.onp-sl-overlap-box .onp-sl-great-attractor.onp-sl-email-locker.onp-sl-contains-single-group {
    max-width: 500px
}

.onp-sl-great-attractor .onp-sl-outer-wrap {
    margin: auto;
    border: 1px solid #c1c1c1;
    border-top: 0;
    border-radius: 7px;
    -moz-box-shadow: 0 2px 7px rgba(0,0,0,.17);
    box-shadow: 0 2px 7px rgba(0,0,0,.17);
    background: #fff url(/static/img/ga-top-border.png) top center repeat-x;
    padding: 5px 0 0
}

.onp-sl-great-attractor .onp-sl-inner-wrap {
    background-color: #fff;
    border-radius: 6px
}

.onp-sl-great-attractor .onp-sl-button,.onp-sl-great-attractor .onp-sl-input {
    border-radius: 3px
}

.onp-sl-great-attractor .onp-sl-input {
    width: 100%;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.1)
}

.onp-sl-great-attractor .onp-sl-button:hover {
    box-shadow: 0 2px 5px rgba(0,0,0,.12),inset 0 1px 1px rgba(255,255,255,.9);
    background: -moz-linear-gradient(top,#fefefe 0,#f2f2f2 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#fefefe),color-stop(100%,#f2f2f2));
    background: -webkit-linear-gradient(top,#fefefe 0,#f2f2f2 100%);
    background: -o-linear-gradient(top,#fefefe 0,#f2f2f2 100%);
    background: -ms-linear-gradient(top,#fefefe 0,#f2f2f2 100%);
    background: linear-gradient(to bottom,#fefefe 0,#f2f2f2 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fefefe', endColorstr='#f2f2f2', GradientType=0)
}

.onp-sl-great-attractor .onp-sl-button,.onp-sl-great-attractor .onp-sl-button:disabled {
    color: #363636;
    font-weight: 700;
    text-shadow: 1px 1px 0 rgba(255,255,255,.6);
    box-shadow: 0 2px 1px rgba(0,0,0,.07),inset 0 1px 1px rgba(255,255,255,.9);
    border: 1px solid #c9c9c9;
    background: -moz-linear-gradient(top,#fcfcfc 0,#f0f0f0 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#fcfcfc),color-stop(100%,#f0f0f0));
    background: -webkit-linear-gradient(top,#fcfcfc 0,#f0f0f0 100%);
    background: -o-linear-gradient(top,#fcfcfc 0,#f0f0f0 100%);
    background: -ms-linear-gradient(top,#fcfcfc 0,#f0f0f0 100%);
    background: linear-gradient(to bottom,#fcfcfc 0,#f0f0f0 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fcfcfc', endColorstr='#f0f0f0', GradientType=0);
    cursor: pointer
}

.onp-sl-great-attractor .onp-sl-button:disabled {
    cursor: default
}

.onp-sl-great-attractor .onp-sl-terms {
    border-top: 1px solid #d6d6d6;
    background-color: #f9f9f9;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px
}

.onp-sl-great-attractor .onp-sl-terms-inner-wrap {
    border-top: 1px solid #eaeaea;
    padding: 10px 40px
}

.onp-sl-great-attractor .onp-sl-cross {
    top: 9px;
    right: 5px;
    opacity: .08;
    filter: alpha(opacity=8)
}

.onp-sl-great-attractor:hover .onp-sl-cross {
    opacity: .15;
    filter: alpha(opacity=15)
}

.onp-sl-great-attractor .onp-sl-cross:hover {
    opacity: .6;
    filter: alpha(opacity=60)
}

.onp-sl-great-attractor .onp-sl-timer {
    bottom: 6px;
    right: 7px
}

.onp-sl-great-attractor .onp-sl-last-group .onp-sl-line-separator {
    border-bottom: 0 dashed #efefef;
    height: auto;
    margin: 20px auto;
    overflow: hidden
}

.onp-sl-great-attractor .onp-sl-last-group .onp-sl-line-separator .onp-sl-title {
    background-color: #f9f9f9;
    padding: 0;
    margin: 0;
    top: 0;
    width: 38px;
    height: 24px;
    border-radius: 3px;
    line-height: 24px;
    font-size: 12px
}

.onp-sl-great-attractor .onp-sl-last-group .onp-sl-line-separator .onp-sl-title:before {
    right: -175px
}

.onp-sl-great-attractor .onp-sl-last-group .onp-sl-line-separator .onp-sl-title:after {
    left: -175px
}

.onp-sl-great-attractor .onp-sl-last-group .onp-sl-line-separator .onp-sl-title:after,.onp-sl-great-attractor .onp-sl-last-group .onp-sl-line-separator .onp-sl-title:before {
    content: " ";
    position: absolute;
    top: 50%;
    width: 160px;
    margin-top: -1px;
    border-top: 2px dashed #efefef
}

.onp-sl-great-attractor .onp-sl-dark-force .onp-sl-last-group .onp-sl-line-separator .onp-sl-title:after,.onp-sl-great-attractor .onp-sl-dark-force .onp-sl-last-group .onp-sl-line-separator .onp-sl-title:before {
    border-top-color: #1d3446
}

.onp-sl-great-attractor .onp-sl-connect-buttons .onp-sl-control {
    background-color: transparent;
    border-radius: 3px;
    padding: 0;
    border: 0;
    box-shadow: 0 3px 4px rgba(0,0,0,.03);
    color: #111
}

.onp-sl-great-attractor .onp-sl-connect-buttons .onp-sl-control:hover {
    box-shadow: 0 2px 6px rgba(0,0,0,.09);
    background-color: transparent
}

.onp-sl-great-attractor .onp-sl-connect-buttons .onp-sl-control:hover .onp-sl-short {
    display: inline
}

.onp-sl-great-attractor .onp-sl-connect-buttons .onp-sl-control:hover .onp-sl-long {
    display: none
}

.onp-sl-great-attractor .onp-sl-connect-buttons .onp-sl-state-error,.onp-sl-great-attractor .onp-sl-connect-buttons .onp-sl-state-loading {
    background: #fff;
    box-shadow: none;
    border: 1px solid #f2f2f2
}

.onp-sl-great-attractor .onp-sl-connect-buttons .onp-sl-state-error:hover,.onp-sl-great-attractor .onp-sl-connect-buttons .onp-sl-state-loading:hover {
    box-shadow: none
}

.onp-sl-great-attractor .onp-sl-connect-buttons .onp-sl-icon {
    height: 50px;
    width: 5px;
    background-image:url(images/social-icons.png);
	background-repeat: no-repeat;
    background-position-y: 50%;
    position: absolute;
    top: 0;
    bottom: 0;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    -webkit-transition: width .3s;
    transition: width .3s
}

.onp-sl-great-attractor .onp-sl-connect-buttons .onp-sl-control:hover .onp-sl-icon {
    width: 40px
}

.onp-sl-great-attractor .onp-sl-connect-buttons .onp-sl-facebook .onp-sl-icon {
    background-position: 15px 15px;
    background-color: #989de1;
    border: 1px solid #7e85e1
}

.onp-sl-great-attractor .onp-sl-connect-buttons .onp-sl-twitter .onp-sl-icon {
    background-position: -133px 16px;
    background-color: #55acee;
    border: 1px solid #2b9aee
}

.onp-sl-great-attractor .onp-sl-connect-buttons .onp-sl-google .onp-sl-icon {
    background-position: -18px 16px;
    background-color: #f47665;
    border: 1px solid #f45944
}

.onp-sl-great-attractor .onp-sl-connect-buttons .onp-sl-linkedin .onp-sl-icon {
    background-position: -60px 15px;
    background-color: #0077b5;
    border: 1px solid #036a9e
}

.onp-sl-great-attractor .onp-sl-connect-buttons .onp-sl-connect-button {
    text-align: left;
    padding-left: 15px;
    position: absolute;
    top: 0;
    left: 5px;
    right: 0;
    bottom: 0;
    font-size: 13px;
    line-height: 50px;
    font-weight: 400;
    border: 1px solid #c9c9c9;
    border-left: 0;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    box-shadow: inset 0 1px 1px rgba(255,255,255,.9);
    overflow: hidden;
    white-space: nowrap;
    background: -moz-linear-gradient(top,#fdfdfd 0,#f6f6f6 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#fdfdfd),color-stop(100%,#f6f6f6));
    background: -webkit-linear-gradient(top,#fdfdfd 0,#f6f6f6 100%);
    background: -o-linear-gradient(top,#fdfdfd 0,#f6f6f6 100%);
    background: -ms-linear-gradient(top,#fdfdfd 0,#f6f6f6 100%);
    background: linear-gradient(to bottom,#fdfdfd 0,#f6f6f6 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdfdfd', endColorstr='#f6f6f6', GradientType=0);
    -webkit-transition: left .3s;
    transition: left .3s
}

.onp-sl-great-attractor .onp-sl-connect-buttons .onp-sl-control:hover .onp-sl-connect-button {
    left: 40px;
    background: #f9f9f9
}

.onp-sl-great-attractor.onp-sl-subscription-enabled .onp-sl-connect-buttons.onp-sl-first-group {
    padding-bottom: 0
}

.onp-sl-great-attractor .onp-sl-connect-buttons.onp-sl-last-group {
    padding-top: 0
}

.onp-sl-great-attractor .onp-sl-connect-buttons.onp-sl-last-group .onp-sl-control {
    width: 140px;
    height: 40px
}

.onp-sl-great-attractor .onp-sl-connect-buttons.onp-sl-last-group .onp-sl-icon {
    height: 40px;
    width: 5px
}

.onp-sl-great-attractor .onp-sl-connect-buttons.onp-sl-last-group .onp-sl-facebook .onp-sl-icon {
    background-position: 15px 10px
}

.onp-sl-great-attractor .onp-sl-connect-buttons.onp-sl-last-group .onp-sl-twitter .onp-sl-icon {
    background-position: -133px 10px
}

.onp-sl-great-attractor .onp-sl-connect-buttons.onp-sl-last-group .onp-sl-google .onp-sl-icon {
    background-position: -18px 11px
}

.onp-sl-great-attractor .onp-sl-connect-buttons.onp-sl-last-group .onp-sl-linkedin .onp-sl-icon {
    background-position: -60px 10px
}

.onp-sl-great-attractor .onp-sl-connect-buttons.onp-sl-last-group .onp-sl-connect-button {
    line-height: 40px
}

.onp-sl-great-attractor .onp-sl-subscription .onp-sl-button {
    width: 100%
}

.onp-sl-great-attractor .onp-sl-subscription.onp-sl-last-group.onp-sl-separator-hides {
    padding: 10px 0 30px
}

.onp-sl-great-attractor .onp-sl-open .onp-sl-icon {
    margin-top: -11px
}

.onp-sl-friendly-giant {
    background-color: #f1f1f1;
    -moz-box-shadow: 0 0 100px 0 rgba(0,0,0,.04);
    box-shadow: 0 0 100px 0 rgba(0,0,0,.04);
    padding: 6px;
    margin: 60px auto;
    border-radius: 7px
}

.onp-sl-friendly-giant .onp-sl-outer-wrap {
    background-color: #f6f6f6;
    border-radius: 7px
}

.onp-sl-friendly-giant .onp-sl-group-notice {
    position: relative;
    z-index: 1
}

.onp-sl-friendly-giant .onp-sl-icon-append,.onp-sl-friendly-giant .onp-sl-icon-prepend {
    width: 34px;
    height: 34px;
    font-size: 18px;
    line-height: 34px;
    top: 6px
}

.onp-sl-friendly-giant .onp-sl-first-group {
    background-color: #fff;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px
}

.onp-sl-friendly-giant .onp-sl-first-group.onp-sl-not-single-group {
    padding-bottom: 40px
}

.onp-sl-friendly-giant .onp-sl-last-group {
    padding-top: 50px
}

.onp-sl-friendly-giant.onp-sl-has-terms .onp-sl-last-group {
    padding-bottom: 0
}

.onp-sl-friendly-giant .onp-sl-non-default-screen {
    background-color: #fff
}

.onp-sl-friendly-giant,.onp-sl-friendly-giant a,.onp-sl-friendly-giant button,.onp-sl-friendly-giant input,.onp-sl-friendly-giant p {
    font-family: 'Open Sans',sans-serif;
    font-size: 16px;
    line-height: 170%;
    color: #777
}

.onp-sl-friendly-giant .onp-sl-header,.onp-sl-friendly-giant .onp-sl-text .onp-sl-strong {
    font-size: 26px;
    color: #444;
    font-family: 'Open Sans',sans-serif;
    font-weight: 700;
    line-height: 130%
}

.onp-sl p+p {
    margin-top: 10px!important
}

.onp-sl-friendly-giant .onp-sl-first-group .onp-sl-strong:after,.onp-sl-friendly-giant .onp-sl-first-group .onp-sl-strong:before {
    display: none
}

.onp-sl-friendly-giant .onp-sl-hiding-link-separator .onp-sl-title {
    font-size: 14px
}

.onp-sl-friendly-giant .onp-sl-last-group .onp-sl-line-separator .onp-sl-title {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background-color: #fff;
    padding: 0;
    line-height: 75px;
    top: -80px;
    font-weight: 700;
    color: #dfdfdf;
    z-index: 0;
    position: relative
}

.onp-sl-friendly-giant .onp-sl-last-group .onp-sl-line-separator {
    margin: 0;
    border: 0;
    height: 0
}

.onp-sl-demo .onp-sl-friendly-giant,.onp-sl-overlap-box .onp-sl-friendly-giant {
    -moz-box-shadow: 0 2px 25px rgba(0,0,0,.22);
    box-shadow: 0 2px 25px rgba(0,0,0,.22)
}

.onp-sl-friendly-giant .onp-sl-button {
    height: 55px;
    line-height: 55px;
    border-radius: 7px;
    border-bottom: 5px solid rgba(0,0,0,.07);
    color: #aaa;
    text-shadow: 0 1px 1px rgba(255,255,255,.5);
    font-size: 17px;
    font-weight: 700;
    text-transform: capitalize;
    -webkit-transition: all .2s linear 0s;
    -moz-transition: all .2s linear 0s;
    -o-transition: all .2s linear 0s;
    transition: all .2s linear 0s
}

.onp-sl-friendly-giant .onp-sl-button-primary:hover {
    color: #846b0f;
    background: #ffdb4d;
    box-shadow: 0 0 12px 7px rgba(255,204,0,.25)
}

.onp-sl-friendly-giant .onp-sl-button-primary,.onp-sl-friendly-giant .onp-sl-button-primary:disabled {
    background-color: #ffe16c;
    color: #9c7e12;
    box-shadow: none
}

.onp-sl-friendly-giant .onp-sl-button.load:before {
    background: url(/static/img/button_loader-ffe16c.gif);
    height: 30px;
    width: 30px;
    margin: -14px 0 0 -15px
}

.onp-sl-friendly-giant .onp-sl-form-button {
    line-height: 100%;
    padding: 17px 20px 15px;
    height: auto
}

.onp-sl-friendly-giant .onp-sl-form-button-sm {
    padding: 10px 18px
}

.onp-sl-friendly-giant .onp-sl-button-sm {
    border-bottom-width: 4px;
    font-size: 14px
}

.onp-sl-friendly-giant .onp-sl-input {
    height: 45px;
    border-radius: 7px;
    border-color: #c3c4c5;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.1);
    color: #333;
    padding-left: 12px;
    -webkit-transition: all .2s linear 0s;
    -moz-transition: all .2s linear 0s;
    -o-transition: all .2s linear 0s;
    transition: all .2s linear 0s
}

.onp-sl-friendly-giant .onp-sl-input:focus {
    border-color: #edcb47;
    background-color: #fffcee;
    box-shadow: inset 0 1px 1px rgba(255,204,0,.2)
}

.onp-sl-friendly-giant .onp-sl-field {
    margin-bottom: 12px
}

.onp-sl-friendly-giant .onp-sl-field-label {
    margin-bottom: 3px
}

.onp-sl-friendly-giant .onp-sl-icon-prepend+input,.onp-sl-friendly-giant .onp-sl-icon-prepend+textarea {
    padding-left: 53px
}

.onp-sl-friendly-giant .onp-sl-field-checkbox {
    margin-bottom: 6px
}

.onp-sl-friendly-giant .onp-sl-group .onp-sl-field-checkbox:last-child {
    margin-bottom: 12px
}

.onp-sl-friendly-giant .onp-sl-dropdown+i {
    top: 19px;
    right: 18px
}

.onp-sl-friendly-giant .onp-sl-field.onp-sl-error-state .onp-sl-input:focus {
    border-color: #c26464
}

.onp-sl-friendly-giant .onp-sl-field .onp-sl-validation-error {
    margin-top: 8px;
    line-height: 120%
}

.onp-sl-friendly-giant.onp-sl-custom-form .onp-sl-has-agreement-checkbox-top.onp-sl-subscription .onp-sl-field-submit {
    margin-top: 1px
}

.onp-sl-friendly-giant .onp-sl-terms {
    padding: 0;
    text-align: center;
    margin: auto;
    background-color: transparent
}

.onp-sl-friendly-giant .onp-sl-terms-inner-wrap {
    padding: 5px 0 10px;
    text-align: center;
    font-size: 12px;
    color: #aaa
}

.onp-sl-friendly-giant .onp-sl-terms-inner-wrap a {
    color: #aaa;
    font-size: 12px
}

.onp-sl-friendly-giant.onp-sl-contains-single-group .onp-sl-terms-inner-wrap {
    padding: 9px 0 5px
}

.onp-sl-friendly-giant .onp-sl-cross {
    top: 9px;
    right: 9px;
    opacity: .05;
    filter: alpha(opacity=5)
}

.onp-sl-friendly-giant:hover .onp-sl-cross {
    opacity: .13;
    filter: alpha(opacity=13)
}

.onp-sl-friendly-giant .onp-sl-cross:hover {
    opacity: .6;
    filter: alpha(opacity=60)
}

.onp-sl-friendly-giant .onp-sl-timer {
    bottom: 8px;
    right: 9px
}

.onp-sl-friendly-giant .onp-sl-connect-buttons .onp-sl-text {
    margin-bottom: 7px
}

.onp-sl-friendly-giant .onp-sl-connect-buttons .onp-sl-icon {
    display: none
}

.onp-sl-friendly-giant .onp-sl-connect-buttons .onp-sl-button:hover {
    color: #fff;
    text-shadow: none;
    border-bottom: 5px solid rgba(0,0,0,.12)
}

.onp-sl-friendly-giant .onp-sl-connect-buttons .onp-sl-button {
    background-color: #e8e8e8;
    border-bottom: 5px solid rgba(0,0,0,.04);
    font-size: 14px
}

.onp-sl-friendly-giant .onp-sl-connect-buttons .onp-sl-button.onp-sl-facebook:hover {
    background-color: #4769a5;
    border-bottom: 5px solid rgba(0,0,0,.17)
}

.onp-sl-friendly-giant .onp-sl-connect-buttons .onp-sl-button.onp-sl-twitter:hover {
    background-color: #65ccef
}

.onp-sl-friendly-giant .onp-sl-connect-buttons .onp-sl-button.onp-sl-google:hover {
    background-color: #e74c3c
}

.onp-sl-friendly-giant .onp-sl-connect-buttons .onp-sl-button.onp-sl-linkedin:hover {
    background-color: #0f7cb2;
    border-bottom: 5px solid rgba(0,0,0,.17)
}

.onp-sl-friendly-giant .onp-sl-connect-buttons .onp-sl-button.onp-sl-state-error,.onp-sl-friendly-giant .onp-sl-connect-buttons .onp-sl-button.onp-sl-state-loading {
    background-color: #e8e8e8!important;
    border-bottom: 0!important
}

.onp-sl-friendly-giant .onp-sl-connect-buttons .onp-sl-state-loading .onp-sl-control-inner-wrap {
    background-image: url(/static/img/button-loader-e8e8e8.gif)
}

.onp-sl-friendly-giant .onp-sl-connect-buttons.onp-sl-first-group {
    padding-left: 25px;
    padding-right: 25px
}

.onp-sl-friendly-giant .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-control {
    background-color: #f5f5f5;
    padding: 0;
    width: 170px;
    color: #777
}

.onp-sl-friendly-giant .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-control:hover {
    color: #fff;
    border-bottom: 5px solid rgba(0,0,0,.12)
}

.onp-sl-friendly-giant .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-connect-button {
    border-radius: 5px;
    border-left: 5px solid #999;
    -webkit-transition: border .2s linear 0s;
    -moz-transition: border .2s linear 0s;
    -o-transition: border .2s linear 0s;
    transition: border .2s linear 0s
}

.onp-sl-friendly-giant .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-control:hover .onp-sl-connect-button {
    border-left: 5px solid transparent
}

.onp-sl-friendly-giant .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-facebook .onp-sl-connect-button {
    border-left: 5px solid #4769a5
}

.onp-sl-friendly-giant .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-twitter .onp-sl-connect-button {
    border-left: 5px solid #65ccef
}

.onp-sl-friendly-giant .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-google .onp-sl-connect-button {
    border-left: 5px solid #e74c3c
}

.onp-sl-friendly-giant .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-button.onp-sl-state-error,.onp-sl-friendly-giant .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-button.onp-sl-state-loading {
    background-color: #f5f5f5;
    border-bottom: 0
}

.onp-sl-friendly-giant .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-state-loading .onp-sl-control-inner-wrap {
    background-image: url(/static/img/button-loader-f2f2f2.gif)
}

.onp-sl-friendly-giant .onp-sl-subscription .onp-sl-button:hover {
    color: #846b0f;
    background-color: #ffdb4d;
    box-shadow: 0 0 12px 7px rgba(255,204,0,.25)
}

.onp-sl-friendly-giant .onp-sl-subscription .onp-sl-button,.onp-sl-friendly-giant .onp-sl-subscription .onp-sl-button:disabled {
    background-color: #ffe16c;
    color: #9c7e12;
    box-shadow: none
}

.onp-sl-friendly-giant.onp-sl-custom-form .onp-sl-subscription .onp-sl-field-submit {
    padding-top: 15px;
    margin-top: 20px
}

.onp-sl-friendly-giant .onp-sl-subscription.onp-sl-last-group {
    background-color: #fff
}

.onp-sl-friendly-giant .onp-sl-subscription.onp-sl-last-group+.onp-sl-terms .onp-sl-terms-inner-wrap {
    padding: 9px 0 5px
}

.onp-sl-friendly-giant .onp-sl-subscription.onp-sl-last-group.onp-sl-separator-hides .onp-sl-group-separator {
    position: relative;
    top: -35px
}

.onp-sl-friendly-giant .onp-sl-subscription.onp-sl-last-group.onp-sl-separator-shows {
    margin-top: 0;
    padding: 30px 25px;
    background-color: transparent;
    border-top: 1px solid #f1f1f1
}

.onp-sl-friendly-giant .onp-sl-subscription.onp-sl-last-group.onp-sl-separator-shows+.onp-sl-terms {
    border-top: 1px solid #f1f1f1;
    background-color: #fff
}

.onp-sl-friendly-giant .onp-sl-subscription.onp-sl-has-hiding-link-separator.onp-sl-separator-hides {
    padding-bottom: 0
}

.onp-sl-friendly-giant .onp-sl-screen-email-confirmation .onp-sl-line-2 {
    margin-top: 15px
}

.onp-sl-friendly-giant .onp-sl-screen-email-confirmation .onp-sl-open-button-wrap {
    padding-top: 35px;
    padding-bottom: 3px
}

.onp-sl-friendly-giant .onp-sl-screen-email-confirmation .onp-sl-open.onp-sl-has-icon {
    padding-left: 50px
}

.onp-sl-friendly-giant .onp-sl-screen-email-confirmation .onp-sl-open .onp-sl-icon {
    left: 15px
}

.onp-sl-dark-force {
    background: #031f34;
    background: rgba(3,31,52,.85) url(/static/img/noisy_grid.png);
    font-weight: 400;
    text-shadow: 0 -1px 0 rgba(62,77,89,.75);
    margin: 60px auto;
    -moz-box-shadow: 0 3px 20px 0 rgba(0,0,0,.5),inset 0 -1px 0 0 rgba(255,255,255,.08);
    box-shadow: 0 3px 20px 0 rgba(0,0,0,.5),inset 0 -1px 0 0 rgba(255,255,255,.08);
    border: 1px solid rgba(0,0,0,.2);
    border-bottom: 5px solid rgba(0,0,0,.5);
    border-radius: 5px
}

.onp-sl-overlap-box .onp-sl-dark-force {
    background: rgba(3,31,52,.85)
}

.onp-sl-dark-force,.onp-sl-dark-force a,.onp-sl-dark-force button,.onp-sl-dark-force input,.onp-sl-dark-force p {
    font-size: 15px;
    font-family: Montserrat,sans-serif;
    line-height: 25px;
    color: #e3f1ff!important
}

.onp-sl-dark-force a {
    color: #e3f1ff!important
}

.onp-sl-dark-force .onp-sl-header,.onp-sl-dark-force .onp-sl-text .onp-sl-strong {
    font-size: 26px;
    line-height: 120%;
    text-transform: none;
    margin: 15px 30px 7px
}

.onp-sl-dark-force .onp-sl-first-group .onp-sl-strong:after,.onp-sl-dark-force .onp-sl-first-group .onp-sl-strong:before {
    display: none
}

.onp-sl-dark-force .onp-sl-note {
    color: #b3b7c6;
    font-style: normal
}

.onp-sl-dark-force .onp-sl-group-notice {
    background-color: #ffffdb;
    border-radius: 3px
}

.onp-sl-dark-force .onp-sl-last-group .onp-sl-line-separator {
    margin: 0;
    border: 0;
    height: 42px;
    position: relative;
    top: -20px;
    overflow: hidden
}

.onp-sl-dark-force .onp-sl-last-group .onp-sl-line-separator .onp-sl-title {
    width: 42px;
    height: 42px;
    border-radius: 100%;
    background: rgba(4,45,76,.2);
    padding: 0;
    font-size: 18px;
    line-height: 42px;
    color: #edf1f9;
    position: relative;
    text-transform: lowercase;
    top: 0;
    -moz-box-shadow: 0 1px 0 rgba(255,255,255,.09),inset 0 1px 0 rgba(0,0,0,.16);
    -webkit-box-shadow: 0 1px 0 rgba(255,255,255,.09),inset 0 1px 0 rgba(0,0,0,.16);
    box-shadow: 0 1px 0 rgba(255,255,255,.09),inset 0 1px 0 rgba(0,0,0,.16)
}

.onp-sl-dark-force .onp-sl-last-group .onp-sl-line-separator .onp-sl-title:before {
    right: -175px
}

.onp-sl-dark-force .onp-sl-last-group .onp-sl-line-separator .onp-sl-title:after {
    left: -175px
}

.onp-sl-dark-force .onp-sl-last-group .onp-sl-line-separator .onp-sl-title:after,.onp-sl-dark-force .onp-sl-last-group .onp-sl-line-separator .onp-sl-title:before {
    content: " ";
    position: absolute;
    top: 50%;
    width: 160px;
    margin-top: -1px;
    border-top: 1px solid #182c3a;
    border-bottom: 1px solid #374d5e
}

.onp-sl-overlap-box .onp-sl-dark-force .onp-sl-last-group .onp-sl-line-separator .onp-sl-title:after,.onp-sl-overlap-box .onp-sl-dark-force .onp-sl-last-group .onp-sl-line-separator .onp-sl-title:before {
    border-top-color: #1d3446
}

.onp-sl-dark-force .onp-sl-hiding-link-separator .onp-sl-title {
    color: #b3b7c6;
    border-bottom-color: #b3b7c6
}

.onp-sl.onp-sl-dark-force.onp-sl-no-consent-error .onp-sl-agreement-checkbox-inner-wrap {
    background: rgba(255,255,255,.1);
    color: #fff!important
}

.onp-sl.onp-sl-dark-force .onp-sl-agreement-checkbox .onp-sl-checkbox {
    top: 4px
}

.onp-sl.onp-sl-dark-force .onp-sl-subscription.onp-sl-has-agreement-checkbox-bottom .onp-sl-agreement-checkbox {
    border-bottom-color: #374d5e
}

.onp-sl-dark-force.onp-sl-custom-form .onp-sl-has-agreement-checkbox-top.onp-sl-subscription .onp-sl-field-submit {
    margin-top: 1px
}

.onp-sl-dark-force .onp-sl-subscription.onp-sl-has-agreement-checkbox-top .onp-sl-agreement-checkbox {
    border-top-color: #374d5e;
    border-bottom-color: #374d5e
}

.onp-sl-dark-force.onp-sl-has-terms .onp-sl-last-group {
    padding-bottom: 20px
}

.onp-sl-dark-force .onp-sl-terms {
    padding: 0;
    text-align: center;
    margin: auto;
    background-color: rgba(0,0,0,.1)
}

.onp-sl-dark-force .onp-sl-terms-inner-wrap {
    text-align: center;
    font-size: 12px;
    color: #b3b7c6;
    padding: 9px 0 5px
}

.onp-sl-dark-force .onp-sl-terms-inner-wrap a {
    color: #b3b7c6;
    font-size: 12px
}

.onp-sl-dark-force .onp-sl-cross {
    top: 2px;
    right: 2px;
    opacity: .8;
    filter: alpha(opacity=80);
    background: url(/static/img/close-light.png) 50% 50% no-repeat;
    border-radius: 100%;
    width: 24px;
    height: 24px
}

.onp-sl-dark-force:hover .onp-sl-cross {
    opacity: .9;
    filter: alpha(opacity=90)
}

.onp-sl-dark-force .onp-sl-cross:hover {
    opacity: 1;
    filter: alpha(opacity=100)
}

.onp-sl-dark-force .onp-sl-timer {
    bottom: 6px;
    right: 8px;
    color: #fff
}

.onp-sl-dark-force .onp-sl-input {
    padding-left: 15px;
    color: #fff;
    background-color: #0a263a;
    -webkit-box-shadow: 0 1px 0 rgba(255,255,255,.12),inset 0 1px 0 rgba(0,0,0,.2);
    box-shadow: 0 1px 0 rgba(255,255,255,.12),inset 0 1px 0 rgba(0,0,0,.2)
}

.onp-sl-dark-force .onp-sl-input:focus {
    background-color: #0b293f
}

.onp-sl-dark-force .onp-sl-button,.onp-sl-dark-force .onp-sl-input {
    border: 0;
    border-radius: 4px;
    height: 50px;
    font-size: 15px;
    font-family: Montserrat,sans-serif
}

.onp-sl-dark-force .onp-sl-input::-webkit-input-placeholder {
    color: #b3b7c6;
    font-style: italic
}

.onp-sl-dark-force .onp-sl-input::-moz-placeholder {
    color: #b3b7c6;
    font-style: italic
}

.onp-sl-dark-force .onp-sl-input:-moz-placeholder {
    color: #b3b7c6;
    font-style: italic
}

.onp-sl-dark-force .onp-sl-input:-ms-input-placeholder {
    color: #b3b7c6;
    font-style: italic
}

.onp-sl-dark-force .onp-sl-input:focus::-webkit-input-placeholder {
    opacity: 0
}

.onp-sl-dark-force .onp-sl-input:focus::-moz-placeholder {
    opacity: 0
}

.onp-sl-dark-force .onp-sl-input:focus:-moz-placeholder {
    opacity: 0
}

.onp-sl-dark-force .onp-sl-input:focus:-ms-input-placeholder {
    opacity: 0
}

.onp-sl-dark-force .onp-sl-button {
    background-color: #081f30;
    color: #fff;
    text-shadow: none;
    border-bottom: 2px solid rgba(0,0,0,.13);
    text-transform: capitalize;
    line-height: 50px
}

.onp-sl-dark-force .onp-sl-button:hover {
    background: #082032
}

.onp-sl-dark-force .onp-sl-button.load:before {
    background: url(/static/img/button_loader-081f30.gif)
}

.onp-sl-dark-force .onp-sl-button:disabled {
    background-color: #081f30!important
}

.onp-sl-dark-force .onp-sl-button-primary {
    background-color: #42c9fa;
    font-family: Montserrat,sans-serif
}

.onp-sl-dark-force .onp-sl-button-primary:hover {
    background-color: #3bb2de
}

.onp-sl-dark-force .onp-sl-button-primary:disabled {
    background-color: #42c9fa!important
}

.onp-sl-dark-force .onp-sl-button.onp-sl-button-primary.load:before {
    background: url(/static/img/button_loader-42c9fa.gif)
}

.onp-sl-dark-force .onp-sl-form-button {
    line-height: 100%;
    padding: 17px 20px 15px;
    height: auto
}

.onp-sl-dark-force .onp-sl-form-button-sm {
    padding: 10px 18px
}

.onp-sl-dark-force .onp-sl-button-sm {
    font-size: 14px
}

.onp-sl-dark-force .onp-sl-field-separator {
    border-top: 1px solid #182c3a;
    border-bottom: 1px solid #374d5e
}

.onp-sl-dark-force .onp-sl-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
    line-height: 36px;
    color: #63738d;
    border-color: #63738d;
    text-shadow: none;
    top: 7px
}

.onp-sl-dark-force .onp-sl-field-checkbox label {
    padding-left: 30px
}

.onp-sl-dark-force .onp-sl-checkbox {
    border: 0;
    width: 19px;
    height: 19px;
    background-color: #0a263a;
    -webkit-box-shadow: 0 1px 0 rgba(255,255,255,.12),inset 0 1px 0 rgba(0,0,0,.2);
    box-shadow: 0 1px 0 rgba(255,255,255,.12),inset 0 1px 0 rgba(0,0,0,.2)
}

.onp-sl-dark-force .onp-sl-dropdown+i {
    top: 19px;
    right: 18px
}

.onp-sl-dark-force .onp-sl-dropdown+i:after {
    border-top: 4px solid #fff
}

.onp-sl-dark-force .onp-sl-dropdown+i:before {
    border-bottom: 4px solid #fff
}

.onp-sl-dark-force .onp-sl-icon-prepend+input,.onp-sl-dark-force .onp-sl-icon-prepend+textarea {
    padding-left: 55px
}

.onp-sl-dark-force .onp-sl-field.onp-sl-error-state .onp-sl-checkbox,.onp-sl-dark-force .onp-sl-field.onp-sl-error-state .onp-sl-input {
    background-color: #fff0f0;
    -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.2);
    box-shadow: 0 2px 0 rgba(0,0,0,.2)
}

.onp-sl-dark-force .onp-sl-field.onp-sl-error-state .onp-sl-icon {
    color: #885757;
    border-color: #885757
}

.onp-sl-dark-force .onp-sl-field.onp-sl-error-state .onp-sl-input {
    color: #582323!important
}

.onp-sl-dark-force .onp-sl-field.onp-sl-error-state .onp-sl-input::-webkit-input-placeholder {
    color: #885757
}

.onp-sl-dark-force .onp-sl-field.onp-sl-error-state .onp-sl-input::-moz-placeholder {
    color: #885757
}

.onp-sl-dark-force .onp-sl-field.onp-sl-error-state .onp-sl-input:-moz-placeholder {
    color: #885757
}

.onp-sl-dark-force .onp-sl-field.onp-sl-error-state .onp-sl-input:-ms-input-placeholder {
    color: #885757
}

.onp-sl-dark-force .onp-sl-connect-buttons .onp-sl-button {
    border: 0;
    background-color: rgba(3,31,52,.2);
    -moz-box-shadow: 0 1px 0 rgba(255,255,255,.12),inset 0 1px 0 rgba(0,0,0,.2);
    -webkit-box-shadow: 0 1px 0 rgba(255,255,255,.12),inset 0 1px 0 rgba(0,0,0,.2);
    box-shadow: 0 1px 0 rgba(255,255,255,.12),inset 0 1px 0 rgba(0,0,0,.2);
    color: #59d2ff;
    text-shadow: none
}

.onp-sl-dark-force .onp-sl-connect-buttons .onp-sl-button:hover {
    color: #019cd5;
    background-color: rgba(3,31,52,.42);
    -moz-box-shadow: 0 1px 0 rgba(255,255,255,.16),inset 0 1px 0 rgba(0,0,0,.22);
    -webkit-box-shadow: 0 1px 0 rgba(255,255,255,.16),inset 0 1px 0 rgba(0,0,0,.22);
    box-shadow: 0 1px 0 rgba(255,255,255,.16),inset 0 1px 0 rgba(0,0,0,.22)
}

.onp-sl-dark-force .onp-sl-connect-buttons .onp-sl-button.onp-sl-state-error,.onp-sl-dark-force .onp-sl-connect-buttons .onp-sl-button.onp-sl-state-loading {
    border: 0!important;
    background-color: rgba(3,31,52,.2)!important;
    -moz-box-shadow: 0 1px 0 rgba(255,255,255,.12),inset 0 1px 0 rgba(0,0,0,.2)!important;
    -webkit-box-shadow: 0 1px 0 rgba(255,255,255,.12),inset 0 1px 0 rgba(0,0,0,.2)!important;
    box-shadow: 0 1px 0 rgba(255,255,255,.12),inset 0 1px 0 rgba(0,0,0,.2)!important;
    color: #59d2ff!important
}

.onp-sl-dark-force .onp-sl-connect-buttons .onp-sl-state-loading .onp-sl-control-inner-wrap {
    background-image: url(/static/img/button-loader-1f384a.gif)
}

.onp-sl-dark-force .onp-sl-connect-buttons .onp-sl-short {
    display: block
}

.onp-sl-dark-force .onp-sl-connect-buttons .onp-sl-long {
    display: none
}

.onp-sl-dark-force .onp-sl-checkbox:after {
    background: #3bb2de;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px
}

.onp-sl-dark-force .onp-sl-connect-buttons .onp-sl-icon {
    width: 32px;
    height: 32px;
    background-color: #172c3a;
    position: absolute;
    top: 9px;
    left: 9px;
    border-radius: 3px;
    border-bottom: 1px solid rgba(0,0,0,.3);
    -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
    background-image: url(images/social-icons.png);
    background-repeat: no-repeat;
    background-position-y: 50%
}

.onp-sl-dark-force .onp-sl-connect-buttons .onp-sl-connect-button {
    position: absolute;
    left: 41px;
    top: 0;
    bottom: 0;
    right: 0
}

.onp-sl-dark-force .onp-sl-connect-buttons .onp-sl-facebook .onp-sl-icon {
    background-color: #5987c2;
    background-position: 11px 7px
}

.onp-sl-dark-force .onp-sl-connect-buttons .onp-sl-twitter .onp-sl-icon {
    background-color: #42c9f9;
    background-position: -138px 7px
}

.onp-sl-dark-force .onp-sl-connect-buttons .onp-sl-google .onp-sl-icon {
    background-color: #dd4b39;
    background-position: -24px 8px
}

.onp-sl-dark-force .onp-sl-connect-buttons .onp-sl-linkedin .onp-sl-icon {
    background-color: #0073b2;
    background-position: -64px 7px
}

.onp-sl-dark-force .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-button {
    -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
    text-align: left;
    border-radius: 3px;
    border-bottom: 2px solid rgba(0,0,0,.1);
    color: #fff
}

.onp-sl-dark-force .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-icon {
    border-bottom: 0;
    background-color: rgba(0,0,0,.1);
    -moz-box-shadow: 0 1px 0 rgba(255,255,255,.12),inset 0 1px 0 rgba(0,0,0,.13);
    -webkit-box-shadow: 0 1px 0 rgba(255,255,255,.12),inset 0 1px 0 rgba(0,0,0,.13);
    box-shadow: 0 1px 0 rgba(255,255,255,.12),inset 0 1px 0 rgba(0,0,0,.13)
}

.onp-sl-dark-force .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-connect-button {
    position: absolute;
    left: 52px;
    right: 0;
    top: 0;
    bottom: 0
}

.onp-sl-dark-force .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-facebook {
    background-color: #5987c2
}

.onp-sl-dark-force .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-twitter {
    background-color: #42c9f9
}

.onp-sl-dark-force .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-google {
    background-color: #dd4b39
}

.onp-sl-dark-force .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-linkedin {
    background-color: #0073b2
}

.onp-sl-dark-force .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-facebook:hover {
    background-color: #5581ba
}

.onp-sl-dark-force .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-twitter:hover {
    background-color: #3ebce9
}

.onp-sl-dark-force .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-google:hover {
    background-color: #d04736
}

.onp-sl-dark-force .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-linkedin:hover {
    background-color: #006ca7
}

.onp-sl-dark-force.onp-sl-custom-form .onp-sl-subscription .onp-sl-field-submit {
    padding-top: 15px;
    margin-top: 20px
}

.onp-sl-dark-force.onp-sl-custom-form .onp-sl-subscription .onp-sl-field-submit:before {
    border-top: 1px solid #182c3a;
    border-bottom: 1px solid #374d5e
}

.onp-sl-dark-force .onp-sl-subscription.onp-sl-last-group .onp-sl-button {
    background-color: #081f30
}

.onp-sl-dark-force .onp-sl-subscription.onp-sl-last-group .onp-sl-button:hover {
    background-color: #071c2b
}

.onp-sl-dark-force .onp-sl-subscription.onp-sl-last-group+.onp-sl-terms .onp-sl-terms-inner-wrap {
    padding: 9px 0 5px
}

.onp-sl-dark-force .onp-sl-subscription.onp-sl-last-group.onp-sl-separator-hides .onp-sl-group-separator {
    position: relative
}

.onp-sl-dark-force .onp-sl-subscription.onp-sl-last-group.onp-sl-separator-shows {
    margin-top: 20px;
    padding: 30px 25px;
    background-color: rgba(0,0,0,.1);
    border-top: 1px solid #182c3b
}

.onp-sl-dark-force .onp-sl-subscription.onp-sl-last-group.onp-sl-separator-shows+.onp-sl-terms {
    border-top: 1px solid #182c3b;
    background-color: transparent
}

.onp-sl-dark-force .onp-sl-screen-email-confirmation .onp-sl-cancel {
    color: #3ebce9
}

.onp-sl-dark-force .onp-sl-screen-email-confirmation .onp-sl-cancel:hover {
    color: #fff;
    background-color: transparent
}

.onp-sl-dark-force .onp-sl-screen-email-confirmation .onp-sl-highlight {
    background-color: rgba(0,0,0,.08);
    -webkit-box-shadow: inset 0 1px 0 rgba(0,0,0,.2);
    box-shadow: inset 0 1px 0 rgba(0,0,0,.2);
    padding: 10px;
    font-style: normal;
    display: inline-block
}

.onp-sl-dark-force .onp-sl-screen-email-confirmation .onp-sl-open.onp-sl-has-icon {
    padding-left: 50px
}

.onp-sl-dark-force .onp-sl-screen-email-confirmation .onp-sl-open .onp-sl-icon {
    left: 15px
}

.onp-sl-dark-force .onp-sl-screen-data-processing .onp-sl-process-spin {
    background: url(/static/img/large-loader-1d394b.gif) center no-repeat
}

.onp-sl-flat {
    padding: 0;
    background-color: transparent;
	margin-top:-200px; !important
}

.onp-sl-flat .onp-sl-inner-wrap {
    /*background-color: #f9f9f9*/
}

.onp-sl-flat .onp-sl-outer-wrap {
   /* border-bottom: 4px solid #f1f1f1*/
}

.onp-sl-flat .onp-sl-inner-wrap,.onp-sl-flat .onp-sl-outer-wrap {
    border-radius: 5px
}

.onp-sl-flat .onp-sl-text .onp-sl-strong:after,.onp-sl-flat .onp-sl-text .onp-sl-strong:before {
    content: " ";
    display: inline-block;
    width: 11px;
    height: 14px;
    margin: 0 9px;
    background: url(/static/img/lock-icon.png) 0 2px no-repeat
}

@media screen and (max-width:500px) {
    .onp-sl-flat .onp-sl-text .onp-sl-strong:after,.onp-sl-flat .onp-sl-text .onp-sl-strong:before {
        display: none
    }
}

.onp-sl-flat .onp-sl-text .onp-sl-strong:after {
    margin-left: 10px
}

.onp-sl-flat .onp-sl-social-buttons .fb-like iframe,.onp-sl-flat .onp-sl-social-buttons .fb-like span {
    width: 118px!important
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-control {
    background: rgba(0,0,0,.03)
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-control-inner-wrap {
    padding: 7px 10px 10px
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-button-overlay,.onp-sl-flat .onp-sl-social-buttons .onp-sl-control-inner-wrap {
    height: 34px;
    min-width: 118px
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-overlay-front {
    background: #eaeaea;
    border-bottom: 3px solid #dadada
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-overlay-back,.onp-sl-flat .onp-sl-social-buttons .onp-sl-overlay-front {
    border-radius: 3px
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-state-error .onp-sl-overlay-front {
    border-bottom-color: #900!important
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-overlay-icon {
    height: 34px;
    width: 44px;
    background-image: url(images/social-icons.png);
    background-repeat: no-repeat;
    background-position-y: 50%;
    position: absolute
}
.onp-sl-flat .onp-sl-social-buttons .onp-sl-overlay-icon1 {
    height: 34px;
    width: 44px;
    background-image:url(images/Instagram_icon.png);
	margin-left:10px;
    background-repeat: no-repeat;
    background-position-y: 50%;
    position: absolute
}



.onp-sl-flat .onp-sl-social-buttons .onp-sl-overlay-text {
    font-size: 14px;
    font-family: Arial,Helvetica,sans-serif;
    line-height: 34px;
    color: #fff;
    text-align: center;
    position: static;
    padding-left: 42px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-shadow: 0 -1px 1px rgba(0,0,0,.15)
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-twitter .onp-sl-overlay-front {
    background: #4086cc;
    border-bottom-color: #13579e
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-twitter .onp-sl-overlay-icon {
    background-position: -132px 8px
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-twitter .onp-sl-overlay-back {
    background: #4086cc
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-twitter .onp-sl-overlay-header {
    background: #13579e
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-facebook .onp-sl-overlay-front {
    background: #3c5a9a;
    border-bottom-color: #082b6f
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-facebook .onp-sl-overlay-icon {
    background-position: 15px 9px
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-facebook .onp-sl-overlay-back {
    background: #3c5a9a
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-facebook .onp-sl-overlay-header {
    background: #082b6f
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-google .onp-sl-overlay-front {
    background: #ca4639;
    border-bottom-color: #a52316
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-google .onp-sl-overlay-icon {
    background-position: -18px 9px
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-google .onp-sl-overlay-back {
    background: #ca4639
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-google .onp-sl-overlay-header {
    background: #a52316
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-linkedin .onp-sl-overlay-front {
    background-color: #286b8d;
    border-bottom-color: #19465d
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-linkedin .onp-sl-overlay-icon {
    background-position: -58px 7px
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-linkedin .onp-sl-overlay-back {
    background: #286b8d
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-linkedin .onp-sl-overlay-header {
    background-color: #19465d
}

.onp-sl-flat .onp-sl-youtube-subscribe .onp-sl-control-inner-wrap {
    padding: 5px 10px
}

.onp-sl-flat .onp-sl-youtube-subscribe .onp-sl-overlay-front {
    background: #d8322e;
    border-bottom-color: #af221f
}

.onp-sl-flat .onp-sl-youtube-subscribe .onp-sl-overlay-icon {
    background-position: -200px 8px
}

.onp-sl-flat .onp-sl-youtube-subscribe .onp-sl-overlay-back {
    background: #d8322e
}

.onp-sl-flat .onp-sl-youtube-subscribe .onp-sl-overlay-header {
    background-color: #af221f
}

.onp-sl-flat .onp-sl-connect-buttons {
    margin-top: 15px;
    text-align: center
}

.onp-sl-flat .onp-sl-connect-buttons .onp-sl-control {
    cursor: pointer;
    background: #eaeaea;
    border-bottom: 4px solid #dadada;
    border-radius: 4px;
    color: #fff;
    display: inline-block;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 170px;
    height: 55px;
    padding: 9px 10px 5px 15px;
    margin: 7px;
    position: relative;
    box-shadow: none;
    font-size: 13px;
    line-height: 135%;
    text-align: left
}

.onp-sl-flat .onp-sl-connect-buttons .onp-sl-control .onp-sl-name {
    display: block;
    font-size: 16px;
    font-weight: 700
}

.onp-sl-flat .onp-sl-connect-buttons .onp-sl-control .onp-sl-icon {
    height: 55px;
    width: 50px;
    background-image: url(/static/img/social-icons-large.png);
    background-repeat: no-repeat;
    background-position-y: 50%;
    position: absolute;
    top: 2px;
    right: 5px;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px
}

.onp-sl-flat .onp-sl-connect-buttons .onp-sl-facebook .onp-sl-icon {
    background-position: 2px 0
}

.onp-sl-flat .onp-sl-connect-buttons .onp-sl-twitter .onp-sl-icon {
    background-position: -51px -1px
}

.onp-sl-flat .onp-sl-connect-buttons .onp-sl-google .onp-sl-icon {
    background-position: -100px 0
}

.onp-sl-flat .onp-sl-connect-buttons .onp-sl-linkedin .onp-sl-icon {
    background-position: -60px 10px
}

.onp-sl-flat .onp-sl-connect-buttons .onp-sl-facebook {
    background: #3c5a9a;
    border-bottom-color: #082b6f
}

.onp-sl-flat .onp-sl-connect-buttons .onp-sl-twitter {
    background: #4086cc;
    border-bottom-color: #13579e
}

.onp-sl-flat .onp-sl-connect-buttons .onp-sl-google {
    background: #ca4639;
    border-bottom-color: #a52316
}

.onp-sl-flat .onp-sl-connect-buttons .onp-sl-linkedin {
    background-color: #286b8d;
    border-bottom-color: #19465d
}

.onp-sl-flat .onp-sl-connect-buttons .onp-sl-facebook:hover {
    background: #4263a9;
    border-bottom-color: #093282
}

.onp-sl-flat .onp-sl-connect-buttons .onp-sl-twitter:hover {
    background: #448fd9;
    border-bottom-color: #155fac
}

.onp-sl-flat .onp-sl-connect-buttons .onp-sl-google:hover {
    background: #da4c3e;
    border-bottom-color: #b22618
}

.onp-sl-flat .onp-sl-connect-buttons .onp-sl-linkedin:hover {
    background-color: #4682a0;
    border-bottom-color: #3b6377
}

.onp-sl-flat.onp-sl-subscription-enabled .onp-sl-inner-wrap {
    padding-bottom: 10px
}

.onp-sl-flat .onp-sl-subscription {
    padding: 0
}

.onp-sl-flat .onp-sl-subscription .onp-sl-control {
    padding-bottom: 0;
    max-width: 270px
}

.onp-sl-flat .onp-sl-subscription .onp-sl-field {
    margin-bottom: 8px
}

.onp-sl-flat .onp-sl-subscription .onp-sl-control .onp-sl-input {
    border: 0;
    border-radius: 3px;
    height: 45px;
    font-size: 16px;
    padding: 14px 14px 10px;
    border-bottom: 2px solid rgba(0,0,0,.04);
    text-align: center
}

.onp-sl-flat .onp-sl-subscription .onp-sl-control .onp-sl-submit {
    height: 49px;
    padding: 0 14px;
    line-height: 49px;
    background-color: #566067;
    font-size: 16px;
    color: #fff;
    border-bottom: 3px solid #3b4348;
    border-radius: 3px
}

.onp-sl-flat .onp-sl-subscription .onp-sl-control .onp-sl-submit:hover {
    background-color: #4e575d
}

.onp-sl-flat .onp-sl-subscription .onp-sl-hiding-link-container {
    border-top: 2px dashed #efefef;
    margin-top: 30px;
    padding-bottom: 20px
}

.onp-sl-flat .onp-sl-hiding-link-separator .onp-sl-title {
    border-bottom: 1px dashed #111
}

.onp-sl-flat .onp-sl-hiding-link-separator .onp-sl-title:hover {
    border-bottom: 0
}

.onp-sl-flat .onp-sl-terms-inner-wrap {
    border-top: 0;
    padding: 8px 40px 6px
}

.onp-sl-flat.onp-sl-has-terms .onp-sl-outer-wrap {
    border-bottom: 4px solid #eee
}

.onp-sl-glass {
    padding: 15px;
    border: 0;
    -moz-box-shadow: 0 1px 1px rgba(255,255,255,.7),inset 0 1px 1px rgba(0,0,0,.1);
    -webkit-box-shadow: 0 1px 1px rgba(255,255,255,.7),inset 0 1px 1px rgba(0,0,0,.1);
    box-shadow: 0 1px 1px rgba(255,255,255,.7),inset 0 1px 1px rgba(0,0,0,.1);
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    text-shadow: 0 1px 1px #fff;
    background: rgba(0,0,0,.03)
}

.onp-sl-glass .onp-sl-outer-wrap {
    -webkit-border-radius: 11px;
    -moz-border-radius: 11px;
    border-radius: 11px;
    -webkit-shadow: 0 1px 5px rgba(0,0,0,.25),inset 0 1px 1px rgba(255,255,255,.7);
    -moz-box-shadow: 0 1px 5px rgba(0,0,0,.25),inset 0 1px 1px rgba(255,255,255,.7);
    box-shadow: 0 1px 5px rgba(0,0,0,.25),inset 0 1px 1px rgba(255,255,255,.7);
    background: #f7f7f7;
    background: -moz-linear-gradient(top,rgba(255,255,255,.6) 0,rgba(240,240,240,.6) 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,rgba(255,255,255,.6)),color-stop(100%,rgba(240,240,240,.6)));
    background: -webkit-linear-gradient(top,rgba(255,255,255,.6) 0,rgba(240,240,240,.6) 100%);
    background: -o-linear-gradient(top,rgba(255,255,255,.6) 0,rgba(240,240,240,.6) 100%);
    background: -ms-linear-gradient(top,rgba(255,255,255,.6) 0,rgba(240,240,240,.6) 100%);
    background: linear-gradient(to bottom,rgba(255,255,255,.6) 0,rgba(240,240,240,.6) 100%)
}

.onp-sl-glass .onp-sl-text .onp-sl-strong:after,.onp-sl-glass .onp-sl-text .onp-sl-strong:before {
    content: " ";
    display: inline-block;
    width: 11px;
    height: 14px;
    margin: 0 9px;
    background: url(/static/img/lock-icon.png) 0 2px no-repeat
}

@media screen and (max-width:500px) {
    .onp-sl-glass .onp-sl-text .onp-sl-strong:after,.onp-sl-glass .onp-sl-text .onp-sl-strong:before {
        display: none
    }
}

.onp-sl-glass .onp-sl-cross {
    top: 20px;
    right: 20px
}

.onp-sl-glass .onp-sl-timer {
    right: 23px;
    bottom: 21px
}

.onp-sl-glass .onp-sl-control {
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
    border-radius: 7px;
    background-color: rgba(0,0,0,.03);
    -webkit-box-shadow: inset 0 0 4px rgba(0,0,0,.12),0 1px 1px rgba(255,255,255,.7);
    -moz-box-shadow: inset 0 0 4px rgba(0,0,0,.12),0 1px 1px rgba(255,255,255,.7);
    box-shadow: inset 0 0 4px rgba(0,0,0,.12),0 1px 1px rgba(255,255,255,.7)
}

.onp-sl-glass .onp-sl-google-youtube .onp-sl-control-inner-wrap {
    padding: 8px 7px
}

.onp-sl-dandyish {
    padding: 7px;
    background: url(/static/img/dandysh-border.png);
    border-radius: 12px;
    -moz-box-shadow: 0 0 10px rgba(0,0,0,.25);
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,.25);
    box-shadow: 0 0 10px rgba(0,0,0,.25)
}

.onp-sl-dandyish .onp-sl-outer-wrap {
    padding: 5px;
    background-color: #fff;
    border-radius: 10px
}

.onp-sl-dandyish .onp-sl-inner-wrap {
    padding: 15px 10px 20px;
    border-radius: 10px;
    background: linear-gradient(top,#f9f9f9,#F5F5F5);
    background: -o-linear-gradient(top,#f9f9f9,#F5F5F5);
    background: -moz-linear-gradient(top,#f9f9f9,#F5F5F5);
    background: -webkit-linear-gradient(top,#f9f9f9,#F5F5F5);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#F5F5F5', GradientType=0);
    background: -ms-linear-gradient(top,#FFF,#F5F5F5);
    -moz-box-shadow: inset 0 1px 6px rgba(0,0,0,.2);
    -webkit-box-shadow: inset 0 1px 6px rgba(0,0,0,.2);
    box-shadow: inset 0 1px 6px rgba(0,0,0,.2)
}

.onp-sl-dandyish .onp-sl-text {
    padding: 10px 10px 0
}

.onp-sl-dandyish .onp-sl-text,.onp-sl-dandyish .onp-sl-timer,.onp-sl-dandyish .onp-sl-timer * {
    -webkit-text-shadow: 1px 1px 2px #fff;
    -moz-text-shadow: 1px 1px 2px #fff;
    text-shadow: 1px 1px 2px #fff
}

.onp-sl-dandyish .onp-sl-text .onp-sl-strong:after,.onp-sl-dandyish .onp-sl-text .onp-sl-strong:before {
    content: " ";
    display: inline-block;
    width: 11px;
    height: 14px;
    margin: 0 9px;
    background: url(/static/img/lock-icon.png) 0 2px no-repeat
}

@media screen and (max-width:500px) {
    .onp-sl-dandyish .onp-sl-text .onp-sl-strong:after,.onp-sl-dandyish .onp-sl-text .onp-sl-strong:before {
        display: none
    }
}

.onp-sl-dandyish .onp-sl-text .onp-sl-strong:after {
    margin-left: 10px
}

.onp-sl-dandyish .onp-sl-cross {
    top: 18px;
    right: 18px
}

.onp-sl-dandyish .onp-sl-timer {
    right: 18px;
    bottom: 18px
}

.onp-sl-dandyish .onp-sl-state-loading .onp-sl-control-inner-wrap {
    background-image: url(/static/img/button-loader-ffffff.gif)
}

.onp-sl-dandyish .onp-sl-social-buttons {
    margin: 0;
    padding: 5px
}

.onp-sl-dandyish .onp-sl-control {
    border-radius: 7px;
    background-color: rgba(255,255,255,1);
    -moz-box-shadow: 0 1px 3px rgba(0,0,0,.15);
    -webkit-box-shadow: 0 3px 1px rgba(0,0,0,.15);
    box-shadow: 0 1px 3px rgba(0,0,0,.15)
}

.onp-sl-dandyish .onp-sl-control .fb-like iframe,.onp-sl-dandyish .onp-sl-control .fb-like span {
    height: 61px
}

.onp-sl-dandyish .onp-sl-control {
    margin: 14px 7px 0;
    min-width: 85px;
    max-width: 125px
}

.onp-sl.onp-sl-dandyish .onp-sl-social-button {
    position: static;
    min-width: 0;
    width: auto
}

.onp-sl-dandyish .onp-linkedin-button {
    position: relative
}

.onp-sl-dandyish .onp-google-button {
    position: relative;
    top: 2px
}

.onp-sl-dandyish .onp-facebook-button,.onp-sl-dandyish .onp-google-button,.onp-sl-dandyish .onp-twitter-tweet {
    width: auto
}

.onp-sl-dandyish .fb-like {
    position:top;
    top: 1px
}

.onp-sl-dandyish .onp-sl-control-inner-wrap {
    min-width: 85px;
    height: 84px;
    padding: 10px;
    text-align: center
}

.onp-sl-dandyish .onp-sl-terms {
    border-top: 1px solid #eaeaea;
    margin-top: 20px;
    background-color: transparent
}

.onp-sl-dandyish.onp-sl-has-terms .onp-sl-inner-wrap {
    padding-bottom: 0
}

.onp-sl-secrets .fb-like iframe,.onp-sl-secrets .fb-like span {
    width: 118px!important
}

.onp-sl-secrets {
    margin: 30px auto 35px;
    border: 0;
    background-color: transparent
}

.onp-sl-secrets .onp-sl-inner-wrap {
    border: 3px solid #fefefe;
    background-color: #f7f7f7
}

.onp-sl-secrets .onp-sl-outer-wrap {
    border: 1px solid #e6e6e6;
    -moz-box-shadow: 0 0 40px rgba(0,0,0,.08);
    -webkit-box-shadow: 0 0 40px rgba(0,0,0,.08);
    box-shadow: 0 0 40px rgba(0,0,0,.08)
}

.onp-sl-secrets .onp-sl-text,.onp-sl-secrets .onp-sl-timer,.onp-sl-secrets .onp-sl-timer * {
    -webkit-text-shadow: 1px 1px 2px #fff;
    -moz-text-shadow: 1px 1px 2px #fff;
    text-shadow: 1px 1px 2px #fff
}

.onp-sl-secrets .onp-sl-text .onp-sl-strong:after,.onp-sl-secrets .onp-sl-text .onp-sl-strong:before {
    content: " ";
    display: inline-block;
    width: 11px;
    height: 14px;
    margin: 0 9px;
    background: url(/static/img/lock-icon.png) 0 2px no-repeat
}

@media screen and (max-width:500px) {
    .onp-sl-secrets .onp-sl-text .onp-sl-strong:after,.onp-sl-secrets .onp-sl-text .onp-sl-strong:before {
        display: none
    }
}

.onp-sl-secrets .onp-sl-cross {
    top: 8px;
    right: 8px
}

.onp-sl-secrets .onp-sl-timer {
    right: 9px;
    bottom: 8px;
    color: #777
}

.onp-sl-secrets .onp-sl-state-loading .onp-sl-button-inner-wrap {
    background-image: url(/static/img/button-loader-eaeaea.gif)
}

.onp-sl-secrets .onp-sl-control {
    padding: 4px;
    background: rgba(0,0,0,.05)
}

.onp-sl-secrets .onp-sl-button-overlay,.onp-sl-secrets .onp-sl-control-inner-wrap {
    height: 34px;
    min-width: 118px
}

.onp-sl-secrets .onp-sl-control-inner-wrap {
    padding: 7px;
    -moz-box-shadow: inset 0 0 6px rgba(0,0,0,.25);
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.25);
    box-shadow: inset 0 0 6px rgba(0,0,0,.25)
}

.onp-sl-secrets .onp-sl-control .onp-sl-overlay-front {
    box-shadow: inset 0 2px 0 rgba(255,255,255,.25);
    -moz-box-shadow: inset 0 2px 0 rgba(255,255,255,.25);
    -webkit-box-shadow: inset 0 2px 0 rgba(255,255,255,.25);
    position: relative;
    background: #f7f7f7;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwYmZlZSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMGExZTMiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);background: -moz-linear-gradient(top,rgba(247,247,247,1) 0,rgba(238,238,238,1) 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,rgba(247,247,247,1)),color-stop(100%,rgba(238,238,238,1)));
    background: -webkit-linear-gradient(top,rgba(247,247,247,1) 0,rgba(238,238,238,1) 100%);
    background: -o-linear-gradient(top,rgba(247,247,247,1) 0,rgba(238,238,238,1) 100%);
    background: -ms-linear-gradient(top,rgba(247,247,247,1) 0,rgba(238,238,238,1) 100%);
    background: linear-gradient(to bottom,rgba(247,247,247,1) 0,rgba(238,238,238,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='f7f7f7', endColorstr='eeeeee', GradientType=0)
}

.onp-sl-secrets .onp-sl-control .onp-sl-overlay-icon {
    height: 34px;
    width: 44px;
    background: url(images/social-icons.png) -1000px 50% no-repeat;
    position: absolute
}

.onp-sl-secrets .onp-sl-control .onp-sl-overlay-line {
    position: absolute;
    left: 41px;
    top: 7px;
    height: 21px;
    width: 0;
    border-left: 1px solid rgba(0,0,0,.11);
    border-right: 1px solid rgba(255,255,255,.16)
}

.onp-sl-secrets .onp-sl-control .onp-sl-overlay-text {
    font-size: 14px;
    font-family: Arial,Helvetica,sans-serif;
    line-height: 34px;
    color: #fff;
    text-align: center;
    position: static;
    padding-left: 42px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-shadow: 0 -1px 1px rgba(0,0,0,.15)
}

.onp-sl-secrets .onp-sl-control .onp-sl-overlay-back,.onp-sl-secrets .onp-sl-control .onp-sl-overlay-header {
    background: #eaeaea
}

.onp-sl-secrets .onp-sl-twitter .onp-sl-overlay-front {
    background: #00bfee;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwYmZlZSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMGExZTMiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);background: -moz-linear-gradient(top,rgba(0,191,238,1) 0,rgba(0,161,227,1) 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,rgba(0,191,238,1)),color-stop(100%,rgba(0,161,227,1)));
    background: -webkit-linear-gradient(top,rgba(0,191,238,1) 0,rgba(0,161,227,1) 100%);
    background: -o-linear-gradient(top,rgba(0,191,238,1) 0,rgba(0,161,227,1) 100%);
    background: -ms-linear-gradient(top,rgba(0,191,238,1) 0,rgba(0,161,227,1) 100%);
    background: linear-gradient(to bottom,rgba(0,191,238,1) 0,rgba(0,161,227,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00bfee', endColorstr='#00a1e3', GradientType=0)
}

.onp-sl-secrets .onp-sl-twitter .onp-sl-overlay-icon {
    background-position: -132px 8px
}

.onp-sl-secrets .onp-sl-twitter .onp-sl-overlay-back {
    background: #24b1e5
}

.onp-sl-secrets .onp-sl-twitter .onp-sl-overlay-header {
    background: #368acd
}

.onp-sl-secrets .onp-sl-facebook .onp-sl-overlay-front {
    background: #5581bc;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzU1ODFiYyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9Ijk5JSIgc3RvcC1jb2xvcj0iIzI1NWI5ZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);background: -moz-linear-gradient(top,rgba(85,129,188,1) 0,rgba(37,91,157,1) 99%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,rgba(85,129,188,1)),color-stop(99%,rgba(37,91,157,1)));
    background: -webkit-linear-gradient(top,rgba(85,129,188,1) 0,rgba(37,91,157,1) 99%);
    background: -o-linear-gradient(top,rgba(85,129,188,1) 0,rgba(37,91,157,1) 99%);
    background: -ms-linear-gradient(top,rgba(85,129,188,1) 0,rgba(37,91,157,1) 99%);
    background: linear-gradient(to bottom,rgba(85,129,188,1) 0,rgba(37,91,157,1) 99%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5581bc', endColorstr='#255b9d', GradientType=0)
}

.onp-sl-secrets .onp-sl-facebook .onp-sl-overlay-icon {
    background-position: 15px 9px
}

.onp-sl-secrets .onp-sl-facebook .onp-sl-overlay-back {
    background: #46629e
}

.onp-sl-secrets .onp-sl-facebook .onp-sl-overlay-header {
    background-color: #314775
}

.onp-sl-secrets .onp-sl-google .onp-sl-overlay-front {
    background: #5c5c5c;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzVjNWM1YyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMxNTA5MGQiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);background: -moz-linear-gradient(top,#5c5c5c 0,#15090d 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#5c5c5c),color-stop(100%,#15090d));
    background: -webkit-linear-gradient(top,#5c5c5c 0,#15090d 100%);
    background: -o-linear-gradient(top,#5c5c5c 0,#15090d 100%);
    background: -ms-linear-gradient(top,#5c5c5c 0,#15090d 100%);
    background: linear-gradient(to bottom,#5c5c5c 0,#15090d 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5c5c5c', endColorstr='#15090d', GradientType=0)
}

.onp-sl-secrets .onp-sl-google .onp-sl-overlay-icon {
    background-position: -18px 9px
}

.onp-sl-secrets .onp-sl-google .onp-sl-overlay-back {
    background: #494647
}

.onp-sl-secrets .onp-sl-google .onp-sl-overlay-header {
    background-color: #111
}

.onp-sl-secrets .onp-sl-linkedin .onp-sl-overlay-front {
    background: #0076a3;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwNzZhMyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDU1NzUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);background: -moz-linear-gradient(top,#0076a3 0,#005575 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#0076a3),color-stop(100%,#005575));
    background: -webkit-linear-gradient(top,#0076a3 0,#005575 100%);
    background: -o-linear-gradient(top,#0076a3 0,#005575 100%);
    background: -ms-linear-gradient(top,#0076a3 0,#005575 100%);
    background: linear-gradient(to bottom,#0076a3 0,#005575 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0076a3', endColorstr='#005575', GradientType=0)
}

.onp-sl-secrets .onp-sl-linkedin .onp-sl-overlay-icon {
    background-position: -58px 8px
}

.onp-sl-secrets .onp-sl-linkedin .onp-sl-overlay-back {
    background: #286b8d
}

.onp-sl-secrets .onp-sl-linkedin .onp-sl-overlay-header {
    background-color: #19465d
}

.onp-sl-secrets .onp-sl-youtube-subscribe .onp-sl-control-inner-wrap {
    padding: 5px 7px
}

.onp-sl-secrets .onp-sl-youtube-subscribe .onp-sl-overlay-front {
    background: #e85858;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2U4NTg1OCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNjODIzMWEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);background: -moz-linear-gradient(top,rgba(232,88,88,1) 0,rgba(200,35,26,1) 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,rgba(232,88,88,1)),color-stop(100%,rgba(200,35,26,1)));
    background: -webkit-linear-gradient(top,rgba(232,88,88,1) 0,rgba(200,35,26,1) 100%);
    background: -o-linear-gradient(top,rgba(232,88,88,1) 0,rgba(200,35,26,1) 100%);
    background: -ms-linear-gradient(top,rgba(232,88,88,1) 0,rgba(200,35,26,1) 100%);
    background: linear-gradient(to bottom,rgba(232,88,88,1) 0,rgba(200,35,26,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e85858', endColorstr='#c8231a', GradientType=0)
}

.onp-sl-secrets .onp-sl-youtube-subscribe .onp-sl-overlay-icon {
    background-position: -207px 8px
}

.onp-sl-secrets .onp-sl-youtube-subscribe .onp-sl-overlay-back {
    background: #E85858
}

.onp-sl-secrets .onp-sl-youtube-subscribe .onp-sl-overlay-header {
    background-color: #C8231A
}

.onp-sl-secrets .onp-sl-terms {
    border-top: 0;
    background-color: #fff;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px
}

.onp-sl-secrets .onp-sl-terms-inner-wrap {
    border-top: 0;
    padding: 10px 40px 8px
}

iframe[src^="https://apis.google.com/u/0/_/widget/oauthflow/toast"] {
    display: none;
}

.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-bg_BG .fb-share-button {
    width: 95px !important;
}

.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-bg_BG .fb-like {
    width: 95px !important;
}

.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-bg_BG .onp-sl-social-button-facebook-like {
    width: 125px;
}

.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-bg_BG .fb-like iframe,
.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-bg_BG .fb-like span {
    width: 125px !important;
}

.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-bg_BG .onp-sl-social-button-facebook-share {
    width: 130px;
}

.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-bg_BG .fb-share-button iframe,
.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-bg_BG .fb-share-button span {
    width: 130px !important;
}

.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-nl_NL .fb-share-button {
    width: 92px !important;
}

.onp-sl-horizontal.onp-sl-no-counters.onp-sl-lang-nl_NL .fb-like {
    width: 92px !important;
}

.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-nl_NL .onp-sl-social-button-facebook-like {
    width: 120px;
}

.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-nl_NL .fb-like iframe,
.onp-sl-horizontal.onp-sl-has-counters.onp-sl-lang-nl_NL .fb-like span {
    width: 120px !important;
}

.onp-sl .onp-sl-input {
    float: none !important;
}
.console-underscore {
   display:inline-block;
  position:relative;
  top:-0.14em;
  left:10px;
}

.banner2
{
	width: 300px;
    margin-top: -317px;
    margin-left: 350px;
	
}

.onp-sl-great-attractor .onp-sl-connect-buttons .onp-sl-insta .onp-sl-icon {
    background-position: -18px 16px;
    background-color: #e4405f;
    border: 1px solid #ff0084
}
.onp-sl-great-attractor .onp-sl-connect-buttons.onp-sl-last-group .onp-sl-insta .onp-sl-icon {
    background-position: -18px 11px
}
.onp-sl-friendly-giant .onp-sl-connect-buttons .onp-sl-button.onp-sl-insta:hover {
    background-color: #ff0084
}
.onp-sl-friendly-giant .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-insta .onp-sl-connect-button {
    border-left: 5px solid #ff0084
}
.onp-sl-dark-force .onp-sl-connect-buttons .onp-sl-insta .onp-sl-icon {
    background-color: #e4405f;
    background-position: -24px 8px
}
.onp-sl-dark-force .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-insta {
    background-color: #e4405f
}

.onp-sl-dark-force .onp-sl-connect-buttons.onp-sl-first-group .onp-sl-insta:hover {
    background-color: #d04736
}
.onp-sl-flat .onp-sl-social-buttons .onp-sl-insta .onp-sl-overlay-front {
    background: #D6249F;
    border-bottom-color: #a52316
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-insta .onp-sl-overlay-icon {
    background-position: -18px 9px
}
.onp-sl-flat .onp-sl-social-buttons .onp-sl-insta .onp-sl-overlay-back {
    background: #D6249F;
}

.onp-sl-flat .onp-sl-social-buttons .onp-sl-insta .onp-sl-overlay-header {
    background: #a52316
}

.onp-sl-flat .onp-sl-connect-buttons .onp-sl-insta .onp-sl-icon {
    background-position: -100px 0
}
.onp-sl-flat .onp-sl-connect-buttons .onp-sl-insta {
    background: #ca4639;
    border-bottom-color: #a52316
}
.onp-sl-flat .onp-sl-connect-buttons .onp-sl-insta:hover {
    background: #da4c3e;
    border-bottom-color: #b22618
}
.onp-sl-glass .onp-sl-insta-youtube .onp-sl-control-inner-wrap {
    padding: 8px 7px
}
.onp-sl-dandyish .onp-insta-button {
    position: relative;
    top: 2px
}
.onp-sl-dandyish .onp-facebook-button,.onp-sl-dandyish .onp-insta-button,.onp-sl-dandyish .onp-twitter-tweet {
    width: auto
}
.onp-sl-secrets .onp-sl-insta .onp-sl-overlay-front {
    background: #5c5c5c;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzVjNWM1YyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMxNTA5MGQiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);background: -moz-linear-gradient(top,#5c5c5c 0,#15090d 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#5c5c5c),color-stop(100%,#15090d));
    background: -webkit-linear-gradient(top,#5c5c5c 0,#15090d 100%);
    background: -o-linear-gradient(top,#5c5c5c 0,#15090d 100%);
    background: -ms-linear-gradient(top,#5c5c5c 0,#15090d 100%);
    background: linear-gradient(to bottom,#5c5c5c 0,#15090d 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5c5c5c', endColorstr='#15090d', GradientType=0)
}

.onp-sl-secrets .onp-sl-insta .onp-sl-overlay-icon {
    background-position: -18px 9px
}

.onp-sl-secrets .onp-sl-insta .onp-sl-overlay-back {
    background: #494647
}

.onp-sl-secrets .onp-sl-insta .onp-sl-overlay-header {
    background-color: #111
}
.onp-sl-social-buttons .onp-sl-facebook .onp-sl-social-button,.onp-sl-social-buttons .onp-sl-insta .onp-sl-social-button,.onp-sl-social-buttons .onp-sl-twitter-tweet .onp-sl-social-button {
    width: 104px
}
.onp-sl-social-buttons .onp-sl-insta .onp-sl-social-button {
    position: relative
}


<!-- copyright -->
.footer-content-wrapper .copyright-info {
    margin-top: 80px;
    font-size: 12px;
    color: hsl(0, 0%, 100%);
    margin: auto;
}

@media screen and (max-width: 500px) {
	
	.hero-content{  
	padding: 0px 0 0px 0;
    /*background: url("images/cover.jpg") no-repeat ;
	background:url(images/OT10Y39.gif);*/
	background-size:auto;
	animation-fill-mode: forwards;
  -webkit-animation:  ;
  animation-timing-function: ease-out; 
  animation-delay: 0.2s;
   overflow: hidden; 
	}
	.hero-content-main{
		min-height:30px;
	padding: 5px 32% ;
	}
		
    .hero-content .entry-header h1 {
        font-size: 17px;
    }

    .hero-content .entry-header .entry-meta-date {
        top: 60px;
    }
	
	.banner2
{
	width: 170px !important;
    margin-top: -310px !important;
    margin-left: 35px !important;
	
}
.site-footer {
    position: relative;
    padding: 40px 0 30px;
    background: url(new-images/dollu-footer-bg.png) no-repeat;
    background-size: cover !important;
	margin-top:100px;
}
	.celebration h1{font-size:30px;
	}
	.celebration{
top:30%;
	}


.page-header .entry-title
{
    font-size: 17px;
    color: white;
    margin: 17px;
    padding: 16px;
}
.dl-menuwrapper {
    width: 100% !important;
    max-width: 300px!important;
    float: left!important;
    position: relative!important;
    -webkit-perspective: 1000px!important;
    perspective: 1000px!important;
    -webkit-perspective-origin: 50% 200%!important;
    perspective-origin: 50% 200%!important;
    
}
.page-header {
    min-height: 5px;
    padding-top: 250px;
    background-size: contain;
}
.dl-menuwrapper button {
    background: #ccc;
    border: none;
    width: 50px !important;
    height: 40px!important;
    text-indent: -90em;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    outline: none;
    top: 40%;
}
.dl-menuwrapper .dl-menu{top:250px;}


}
<!--Menu part -->
.zoom-in {cursor: zoom-in;}






.menu_top{position:absolute;    left: 14%; top: -50px;}

.menu-text{ position:absolute; left: 10%; top: 35%;z-index: 9;}
.menu-text p{color:#fff;font-size:40px;     }



.sliding12{
  posititon: relative;
}
.js-nametag{
  position: absolute;
}
.js-nametag:nth-child(1){
  animation-name: fade;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  animation-duration: 5s;
  animation-direction: alternate-reverse;  
}


.js-nametag:nth-child(2){
  animation-name: fade;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  animation-duration: 5s;
  animation-direction: alternate;
}

.js-nametag:nth-child(3){
  animation-name: fade;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  animation-duration: 5s;
  animation-direction: alternate;
}

.js-nametag:nth-child(4){
  animation-name: fade;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  animation-duration: 5s;
  animation-direction: alternate;
}

@keyframes fade{
    0%,50% {
      opacity: 0;
}
    100%{
      opacity: 1;
  }
}


 
a:hover {

    color: #0056b3;
    text-decoration: none;

}



.boxborder
{
    position: relative;
    padding: 30px;
    background: hsl(0, 0%, 100%);
    box-shadow: 50px 40px 115px rgba(0, 0, 0, 0.1);
}
/*Modal Content*/
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

/* Caption of Modal Image */


/* Add Animation */
.modal-content, #caption {    
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

.modal-body {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
 padding: 0; 
}
@-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)} 
    to {-webkit-transform:scale(1)}
}

@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}
	
.zoom-in {cursor: zoom-in;}





