/* CSS for v2 of video player */

.video-player {
  position: relative;
  background: #000;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  cursor: pointer;
}

.video-player:after {
  background: transparent url("https://www.paypalobjects.com/webstatic/mktg/kb/play-overlay.png") center center no-repeat;
  content: "";
  overflow: hidden;
  width: 100%;
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.video-player.loaded {
  cursor: auto;
}

.video-player.loaded:after {
  display: none;
  background-image: none;
}
.video-player a {
  cursor: pointer;
}
.video-player .video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 34px;
  width: 100%;
  background-color: #9191a9;
  background-color: rgba(245,245,245,0.3);
  
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate(0,0);
  transform: translate3d(0,0,0);

  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  -moz-transition: -moz-transform 0.4s ease-in-out;
  -ms-transition: -ms-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
}
.video-player.playing .video-controls.autohide {
  -webkit-transform: translate3d(0,34px,0);
  -moz-transform: translate3d(0,34px,0);
  -ms-transform: translate(0,34px);
  transform: translate3d(0,34px,0);
}
.video-player.playing:hover .video-controls.autohide {
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate(0,0);
  transform: translate3d(0,0,0);
}
.video-controls a.video-play {
  display: inline-block;
  width: 28px;
  height: 28px;
  margin-left: 15px;
  margin-right: 20px;
  margin-top: 5px;
  background-image: url('https://www.paypalobjects.com/webstatic/mktg/kb/play-pause-sprite.png');
  background-repeat: no-repeat;
  background-position: 0 -1px;
  z-index: auto;
  opacity: 0.7;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-out-in;
  -ms-transition: all 0.2s ease-out-in;
  transition: all 0.2s ease-in-out;
}
.video-player .video-controls a.paused-button {
  background-repeat: no-repeat;
  background-position: -29px -1px;
}
/* seek */
.video-player .video-seek {
  display: inline-block;
  position: relative;
  top: -12px;
  width: 520px;
  height: 8px;
  margin-top: 13px;
  border-radius: 15px;
  background: #535353;
  background: -moz-linear-gradient(top, rgba(186,186,186,1) 0%, rgba(222,222,226,1) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(186,186,186,1)), color-stop(100%,rgba(222,222,226,1)));
  background: -webkit-linear-gradient(top, rgba(186,186,186,1) 0%,rgba(222,222,226,1) 100%);
  background: -ms-linear-gradient(top, rgba(186,186,186,1) 0%,rgba(222,222,226,1) 100%);
  background: linear-gradient(to bottom, rgba(186,186,186,1) 0%,rgba(222,222,226,1) 100%);
  box-shadow: inset 0 -2px 2px #efefef;
}
.video-player .video-seek .ui-slider-handle {
  width: 10px;
  height: 20px;
  border: none;
  top: -6px;
  border-radius: 6px;
  box-shadow: inset 0 -2px 2px rgba(101,101,149,0.7);
  background: #e6e6e6;
  background: -moz-linear-gradient(top, rgba(230,230,230,1) 0%, rgba(213,213,213,1) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(230,230,230,1)), color-stop(100%,rgba(213,213,213,1)));
  background: -webkit-linear-gradient(top, rgba(230,230,230,1) 0%,rgba(213,213,213,1) 100%);
  background: -ms-linear-gradient(top, rgba(230,230,230,1) 0%,rgba(213,213,213,1) 100%);
  background: linear-gradient(to bottom, rgba(230,230,230,1) 0%,rgba(213,213,213,1) 100%);
}
.video-player .video-seek .ui-slider-handle.ui-state-hover {
  background: #fff;
}
.video-player .video-seek .ui-slider-loaded {
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  border: 0 none;
  position: absolute;
  z-index: 1;
  border-radius: 6px;
  box-shadow: inset 0 2px 2px rgba(101,101,149,0.4);
  background: #c4c4c4;
  background: -moz-linear-gradient(top, rgba(206,206,206,1) 0%, rgba(173,173,173,1) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(206,206,206,1)), color-stop(100%,rgba(173,173,173,1)));
  background: -webkit-linear-gradient(top, rgba(206,206,206,1) 0%,rgba(173,173,173,1) 100%);
  background: -ms-linear-gradient(top, rgba(206,206,206,1) 0%,rgba(173,173,173,1) 100%);
  background: linear-gradient(to bottom, rgba(206,206,206,1) 0%,rgba(173,173,173,1) 100%);
}
.video-player .video-seek .ui-slider-range {
  border-radius: 15px;
  box-shadow: inset 0 -3px 3px rgba(57,162,206,0.7);
  background: #4cbae8;
  background: -moz-linear-gradient(top, rgba(76,186,232,1) 0%, rgba(57,162,206,1) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(76,186,232,1)), color-stop(100%,rgba(57,162,206,1)));
  background: -webkit-linear-gradient(top, rgba(76,186,232,1) 0%,rgba(57,162,206,1) 100%);
  background: -ms-linear-gradient(top, rgba(76,186,232,1) 0%,rgba(57,162,206,1) 100%);
  background: linear-gradient(to bottom, rgba(76,186,232,1) 0%,rgba(57,162,206,1) 100%);
  z-index: 2;
}
/* volume */
.video-player .video-controls .volume-box {
  position: absolute;
  bottom: 1px;
  right: 0px;
  overflow: hidden;
  width: 24px;
  height: 30px;
  color: #fff;
  padding: 0px 10px;
}
.video-player .video-controls .volume-box:hover {
  height: 135px;
  padding-top: 5px;
}
.video-player .video-controls .volume-box:hover .volume-slider {
  position: relative;
  visibility: visible;
  opacity: 1;
}
.video-player .video-controls .volume-slider {
  position: relative;
  height: 100px;
  width: 8px;
  top: 0;
  left: 0;
  visiblity: hidden;
  opacity: 0;
  border-radius: 4px;
  box-shadow: inset 0 3px 3px rgba(239,239,239,0.7);
  background: rgb(222,222,226);
  background: -moz-linear-gradient(top, rgba(222,222,226,1) 0%, rgba(186,186,186,1) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(222,222,226,1)), color-stop(100%,rgba(186,186,186,1)));
  background: -webkit-linear-gradient(top, rgba(222,222,226,1) 0%,rgba(186,186,186,1) 100%);
  background: -ms-linear-gradient(top, rgba(222,222,226,1) 0%,rgba(186,186,186,1) 100%);
  background: linear-gradient(to bottom, rgba(222,222,226,1) 0%,rgba(186,186,186,1) 100%);
  
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.video-player .video-controls .volume-slider .ui-slider-handle {
  width: 16px;
  height: 9px;
  left: -4px;
  margin-bottom: -0.6em;
  margin-left: 0;
  border-radius: 6px;
  box-shadow: inset 0 -2px 2px rgba(101,101,149,0.7);
  background: #e6e6e6;
  background: -moz-linear-gradient(top, rgba(230,230,230,1) 0%, rgba(213,213,213,1) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(230,230,230,1)), color-stop(100%,rgba(213,213,213,1)));
  background: -webkit-linear-gradient(top, rgba(230,230,230,1) 0%,rgba(213,213,213,1) 100%);
  background: -ms-linear-gradient(top, rgba(230,230,230,1) 0%,rgba(213,213,213,1) 100%);
  background: linear-gradient(to bottom, rgba(230,230,230,1) 0%,rgba(213,213,213,1) 100%);
}
.video-player .video-controls .volume-slider .ui-slider-handle .ui-state-hover {
  background: #fff;
}
.video-player .volume-slider .ui-slider-range {
  border-radius: 15px;
  box-shadow: inset -3px 0 3px rgba(76,186,232,0.7);
  background: #4cbae8;
  background: -moz-linear-gradient(top, rgba(76,186,232,1) 0%, rgba(57,162,206,1) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(76,186,232,1)), color-stop(100%,rgba(57,162,206,1)));
  background: -webkit-linear-gradient(top, rgba(76,186,232,1) 0%,rgba(57,162,206,1) 100%);
  background: -ms-linear-gradient(top, rgba(76,186,232,1) 0%,rgba(57,162,206,1) 100%);
  background: linear-gradient(to bottom, rgba(76,186,232,1) 0%,rgba(57,162,206,1) 100%);
}
/* volume button */
.video-player .video-controls .volume-button {
  position: absolute;
  bottom: 3px;
  right: 15px;
  display: block;
  width: 29px;
  height: 25px;
  border-radius: 2px;
  background-color: rgba(245,245,245,0.6);
  background-position: center center;
  background-image: url('https://www.paypalobjects.com/webstatic/mktg/kb/volumefull.png');
  background-image: -webkit-image-set(url("https://www.paypalobjects.com/webstatic/mktg/kb/volumefull.png") 1x, 
                                      url("https://www.paypalobjects.com/webstatic/mktg/kb/volumefull2x.png") 2x);
  background-size: 23px 23px;
  background-repeat: no-repeat;
}
.video-player .video-controls .volume-mute {
  background-image: url('https://www.paypalobjects.com/webstatic/mktg/kb/volumemute.png');
  background-image: -webkit-image-set(url("https://www.paypalobjects.com/webstatic/mktg/kb/volumemute.png") 1x, 
                                      url("https://www.paypalobjects.com/webstatic/mktg/kb/volumemute2x.png") 2x);
  background-size: 23px 23px;
  background-repreat: no-repeat;
}
.video-player .video-fullscreen {
  display: block;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 30px;
  height: 30px;
  background-color: rgba(245,245,245,0.6);
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("https://www.paypalobjects.com/webstatic/mktg/kb/fullscreen.png");
  background-image: -webkit-image-set(url("https://www.paypalobjects.com/webstatic/mktg/kb/fullscreen.png") 1x, 
                                      url("https://www.paypalobjects.com/webstatic/mktg/kb/fullscreen2x.png") 2x);
  background-size: 24px 24px;
  border-radius: 2px;
  overflow: hidden;
  text-indent: -999em;
  opacity: 0;
  
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.video-player:hover .video-fullscreen {
  opacity: 1;
}
/* Disable in lightbox */
.ui-dialog .video-player .video-fullscreen {
  display: none;
}
.video-player.fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
}
.video-player.fullscreen .video-fullscreen {
  background-image: url("https://www.paypalobjects.com/webstatic/mktg/kb/shrink.png");
  background-image: -webkit-image-set(url("https://www.paypalobjects.com/webstatic/mktg/kb/shrink.png") 1x, 
                                      url("https://www.paypalobjects.com/webstatic/mktg/kb/shrink2x.png") 2x);
  background-size: 24px 24px;
}

/* inline jquery ui styles */
.ui-slider-handle {
  position: absolute;
  z-index: 2;
  display: block;
  margin-left: -0.6em;
  outline: none;
}
.ui-slider-range {
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  border: 0 none;
  position: absolute;
  z-index: 1;
}
.video-modal .ui-dialog-content {
  padding-bottom: 1.5em;
}
/* accessibility fix */
.ui-dialog .ui-dialog-titlebar-close:focus {
    border: 1px dotted #999;
}

/*************** /ES/es/<pagenaem>/resources/css/page.css *******************/

section {
    background-color: #fff;
    position: relative;
    z-index: 2;
    -webkit-transform: translate3d(0, 0, 0);
}
.disabled-link {
    font-weight: bold;
}
.hero-hugger-spacer {
    height: 80px;
    overflow: hidden;
}
#sticky-nav, .floating-bar-spacer {
    margin-top: -80px;
    position: relative;
    z-index: 2;
}
html[data-device-type="mobile"] #sticky-nav, html[data-device-type="mobile"] .floating-bar-spacer {
    margin-top: 0;
}
html[data-device-type="mobile"] .hero-hugger-spacer {
    height: 0;
}
.floating-bar-spacer {
    z-index: 1;
    background: #fff;
    -webkit-transform: translate3d(0,0,0);
}
#sticky-nav {
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1), 0 1px 0 rgba(0, 0, 0, 0.1);
    z-index: 3;
}
#sticky-nav .controls {
    text-align: right;
}
#sticky-nav.on {
    margin-top: 0;
    position: fixed;
    z-index: 99;
}
#fixed-top > .table-row > #hero {
    vertical-align: middle;
}
.hero-bg .editorial-container {
    display: table;
    width: 100%;
}
.hero-bg {
    background-image: url("https://www.paypalobjects.com/webstatic/mktg/wright/merchant/hero-bg.jpg");
}
.hero-bg-exp2{
    background-image: url("https://www.paypalobjects.com/webstatic/mktg/wright/merchant/B2B_Pricing-Promotion-for-Merchant_hero_new.jpg");
}
.hero-bg-exp1{
    background-image: url("https://www.paypalobjects.com/webstatic/mktg/wright/merchant/Hero_banner_frites.jpg");
}
.hero-bg ul {
    padding-left: 10px;
}
#hero .span12 > .editorial-cell {
    width: 100%;
}
.hero-bg .transaction-tray {
    max-width: 305px;
}
.transaction-tray p, .merchant p {
    font-size: 13px;
    font-size: 0.92857142857143rem;
    line-height: 1.25em;
}
.transaction-tray p {
    line-height: 2em;
    padding-bottom: 0;
}
.transaction-tray p:first-child {
    padding-top: 1px;
    border-bottom: 1px solid #666;
    line-height: 2.5em;
}
.transaction-tray a {
    font-weight: bold;
}
.transaction-tray p b {
    font-size: 16px;
}
.transaction-tray p span {
    display: inline-block;
}
.transaction-tray p span:first-child {
    margin-right: 6px;
    padding-right: 6px;
    border-right: 1px solid #666;
}
.transaction-tray p:last-child {
    font-size: 11px;
    line-height: 1.5em;
    padding-top: 8px;
}
.merchant-heroTray .heroBtn {
    width: 230px;
    max-width: none;
    line-height: 2.5em;
}
.hero-bg .phone-line {
    margin-top: 25px;
}
.phone-line {
    clear: both;
    font-size: 11px;    
}
.phone-line a,
a.fees-table-pop {
    font-size: 11px;
}
#hero-down-arrow {
    position: absolute;
    bottom: 20%;
    left: 50%;
    margin: -6px 0 0 -19px;
}
#get-started, #more-than-payments-container {
    padding: 60px 0;
}
#get-started-carousel, #more-than-payments {
    margin-top: 30px;
}
.merchant-links-bar {
    text-align: right;
    line-height: 46px;
}
.merchant-links {
    padding-left: 20px;
}
.merchant-links-panel {
    padding: 20px 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.merchant-links-panel .span6 {
    line-height: 40px;
}
.light .span3.merchant-panel {
    border-color: #fff;
}
.merchant-links-panel .btn {
    line-height: 1.8em;
    min-width: 235px;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}
html[data-device-type="portable"] .merchant-links-panel .btn {
    -webkit-transition: all 0 ease 0;
    transition: all 0 ease 0;
}
.floating-bar.on .btn {
    opacity: 1;
}
ul.merchant-bullets {
    margin-left: 15px;
    list-style: disc;
}
.merchant-heroTray {
    background-color: rgba(36, 29, 28, 0.8);
    padding: 30px 30px 20px;
    border-radius: 5px;
    margin-top: 20px;
    max-width: 564px;
}
.row-fluid .merchant-panel {
    background: #fff;
    padding: 30px 16px;
    border: 1px solid;
    border-color: #E5E5E5 #D9D9D9 #CCC;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
#get-started .merchant-panel .contentPara {
    min-height: 100px;
}
#more-than-payments .merchant-panel .contentPara {
    min-height: 90px;
}
#more-than-payments .merchant-panel .sideKickHeadline {
    min-height: 72px;
}
.panel-img {
    width: 70px;
    margin-bottom: 20px;
}
html[data-device-type="mobile"] .panel-img {
    margin-bottom: 0;
}
.chart-bgcolor {
    padding-top: 30px;
    padding-bottom: 60px;
    background: #23a0ef;
    background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #23a0ef), color-stop(100%, #07447b));
    background: -webkit-radial-gradient(center, ellipse cover, #23a0ef 0%, #07447b 100%);
    background: -webkit-radial-gradient(center, ellipse, #23a0ef 0%, #07447b 100%);
    background: radial-gradient(ellipse at center, #23a0ef 0%, #07447b 100%);
}
.chart-bgcolor .row-fluid {
    background: transparent;
}
html .chart-bgcolor .containerCentered:first-child {
    padding: 0;
}
.chart-bgcolor h3 {
    white-space: nowrap;
}
.chart-bgcolor .pulloutPara {
    color: #e2f4ff;
    margin-bottom: 20px;
}
.chart-bgcolor .sideKickHeadline {
    margin-bottom: 10px;
}
/* Don't resize on desktop */
 .chart-container {
    position: relative;
    margin-bottom: 20px;
}
.chart-container img {
    width: 100%;
    min-width: 1004px;
    height: 239px;
}
.chart-container .chart-marker {
    padding: 4px;
    position: absolute;
    background: #fff;
    border-radius: 8px;
    color: #065f9d;
    font-size: 10px;
    font-weight: bold;
}
.chart-container #marker1 {
    left: 9.06374501992%;
    top: 152px;
}
.chart-container #marker2 {
    left: 29.980079681275%;
    top: 96px;
}
.chart-container #marker3 {
    left: 51.09561752988%;
    top: 31px;
}
.chart-container #marker4 {
    left: 72.111553784861%;
    top: 69px;
}
.chart-container .chart-marker:after {
    content:'';
    width: 0;
    height: 0;
    position: absolute;
    bottom: -20px;
    left: 50%;
    margin-left: -10px;
    border: 10px solid transparent;
    border-top-color: #fff;
}
.chart-container .chart-marker.top:after {
    bottom: auto;
    top: -20px;
    border-top-color: transparent;
    border-bottom-color: #fff;
}
.chart-bullets {
    font-size: 13px;
    line-height: 17px;
    color: #e2f4ff;
    margin: 0;
    white-space: normal;
}
.chart-bullets li {
    padding-left: 20px;
    background: transparent url(https://www.paypalobjects.com/webstatic/mktg/wright/merchant/blue-check.png) left 2px no-repeat;
    background-size: 11px 13px;
}
.chart-bgcolor .legal-notes {
    color: #e2f4ff;
}
.excite-bg {
    background: transparent url(https://www.paypalobjects.com/webstatic/mktg/wright/merchant/video-bottom.jpg) center top no-repeat;
    background-size: cover;
    height: 530px;
}
.play {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.play > span {
    content:'';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 60px;
    height: 60px;
    margin-left: -30px;
    margin-top: -30px;
    text-indent: -999em;
    overflow: hidden;
    border: 2px solid #fff;
    border-radius: 36px;
}
.play > span:after {
    content:'';
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    margin-top: -12px;
    margin-left: -10px;
    overflow: hidden;
    border: 24px solid transparent;
    border-width: 12px 24px;
    border-left-color: #fff;
}
.merchant .expander {
    display: none;
}
.merchant p {
    line-height: 1.5em;
}
.merchant .btn {
    margin: 26px 0;
    line-height: 2.5em;
    width: 92%;
}
.merchant h4 {
    padding: 10px 0 0;
}
.merchant .transaction-tray p:first-child {
    line-height: 2.5em;
}
#signup-modal h4 {
    margin: 20px 0;
}
#signup-modal .btn {
    max-width: 46%;
}
#signup-modal ul {
    list-style-type: disc;
    padding-left: 30px;
    margin-bottom: 30px;
}
.editorial-right ul.merchant-bullets li,.bullet-lists ul.merchant-bullets li{
    margin: 2em;
}
.hatch-link {
    text-decoration: none;
    color: #777 !important;
    font-weight: normal !important;
    font-size: 1em;
}
.icon-mail {
    background: url("https://www.paypalobjects.com/webstatic/icon/mail-12x12.png") center bottom no-repeat;
    height: 12px;
    width: 12px;
    display: inline-block;
    margin-right: 10px;
}
#Advantage .spacer {
    height: 5em;
    clear: both;
}
#Advantage .span6.no-left-margin{
    margin-left: 0px;
}
.n2 {
    background-image: url("https://www.paypalobjects.com/webstatic/fr_FR/mktg/wright/sell_onwebsite/iPhone-image-for-FRITES-landing-page.jpg");
}
.editorial-right header{
    padding-top:50px;
}
.editorial-right .editorial-img{
    background-position: 70% bottom;
}
#fixed-top.treatment > .table-row > div{
    display:block;
}
#fixed-top.treatment{
    height:530px !important;
}
.contactPhone{
    padding:5px 0 0 5px;
    display: block;
    clear: left;
    font-size: 1.07142857142857rem;
    line-height: 1.5em;
}
.dark .hatch-link{
    font-weight:normal;
    color: #e6e6e6 !important;
}
#hero-down-arrow-dark{
    left: 100%;
    margin-bottom: 8% !important;
}
#hero-down-arrow-dark.fancy-down-arrow-grey {
    background: transparent url(https://www.paypalobjects.com/webstatic/shopping/img/categories/down-arrow.png) center center no-repeat;
    background-size: 22px 13px;
    width: 38px;
    height: 38px;
    display: inline-block;
    text-indent: -999em;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    border: 1px solid #666;
    border-radius: 21px;
}
#Fees .transaction-tray p{
    font-size:0.92857142857143rem !important;
}
.hero-bg-exp1.parallax,.hero-bg-exp2.parallax {
    background-position: 60% center;
    background-size: cover;
    background-repeat: no-repeat;
}
p.legalStar, .legalStar a {
    font-size: 11px;
    line-height: 1.5em;
    clear: left;
    padding-bottom: 33px;
    padding-top: 0px;
}
p.contact-leftAlign{
    clear:left;
}
#hero-banner .hatch-link{
    color: #fff !important;
}
#hero-banner #hero .offerHeading{
    font-size: 1.1em;
    text-transform: uppercase;
    font-weight: initial;    
}
#hero-banner #hero .border-line{
    border-bottom: 1px solid #fff;
    width: 30px;
    margin: 10px 0px 20px 48%;
}
#hero-banner #hero .btnCenter{
    float: none;
    margin-bottom: 30px;
    margin-top:10px;
}
#hero-banner #hero h1{
    margin-bottom: 20px;
}
html[data-device-type="dedicated"] .editorial-container{
    height: 30.857143em;
}
html[data-device-type="mobile"] #signup-modal .btn {
    max-width: none;
    margin-bottom: 14px;
}
html[data-device-type="mobile"] #signup-modal ul {
    margin-bottom: 14px;
}
html[data-device-type="portable"] .merchant-links-panel, html[data-device-type="mobile"] .merchant-links-panel {
    background: #f4f4f4;
    padding: 16px 0;
}
html[data-device-type="portable"] .hero-bg {
    background-position: center center;
    background-size: cover;
}
html[data-device-type="portable"] #sticky-nav #jump-bar-select {
    height: 46px;
}
html[data-device-type="mobile"] .hero-bg {
    background: url("https://www.paypalobjects.com/webstatic/mktg/wright/merchant/hero-bg.jpg") center center no-repeat;
    background-size: cover;
}
html[data-device-type="mobile"] h1 {
    font-size: 40px;
    font-size: 2.857rem;
    line-height: 1.25em;
    padding: 5% 8% 0;
}
html[data-device-type="mobile"] .merchant-heroTray {
    background-color: transparent;
    padding: 0;
}
html[data-device-type="mobile"] .hero-bg .editorial-cell {
    height: auto;
    margin-top: 0;
    padding-top: 0;
}
html[data-device-type="portable"] #get-started, html[data-device-type="portable"] #more-than-payments-container {
    padding: 40px 0;
}
html[data-device-type="mobile"] .row-fluid .containerMobileFullWidth .merchant-panel {
    width: 90%;
    min-height: 420px;
    margin-left: 10px;
}
html[data-device-type="portable"] #get-started-carousel .merchant-panel {
    width: 48%;
    margin-bottom: 30px;
    min-height: 330px;
}
html[data-device-type="portable"] #more-than-payments .merchant-panel h3 {
    min-height: 80px;
}
html[data-device-type="portable"] #get-started-carousel .merchant-panel:nth-child(2n+1) {
    margin-left: 0;
}
html[data-device-type="portable"] #get-started .merchant-panel .contentPara {
    min-height: 100px;
}
html[data-device-type="portable"] #more-than-payments .merchant-panel .contentPara {
    min-height: 140px;
}
@media all and (max-width: 768px) {
    html[data-device-type="portable"] .chart-container img {
        min-width: 100%;
        height: auto;
    }
    html[data-device-type="portable"] #marker1 {
        top: 71px;
    }
    html[data-device-type="portable"] #marker2 {
        top: 48px;
    }
    html[data-device-type="portable"] #marker3 {
        top: 8px;
    }
    html[data-device-type="portable"] #marker4 {
        top: 52px;
    }
    html[data-device-type="portable"] #more-than-payments .merchant-panel h3, html[data-device-type="portable"] #more-than-payments .merchant-panel .contentPara {
        min-height: 110px;
    }
}

html[data-device-type="mobile"] .merchant-heroTray .heroBtn {
    line-height: inherit;
    min-width: 260px;
    max-width: 321px;
    display: block;
    width: 96%;
}
html[data-device-type="mobile"] #hero-down-arrow {
    display: none;
}
html[data-device-type="mobile"] .merchant-links-panel .span6.pull-right {
    width: auto;
    float: none;
}
html[data-device-type="mobile"] .merchant-panel:first-child {
    margin-left: 0;
}
html[data-device-type="mobile"] #more-than-payments .sideKickHeadline {
    min-height: 72px;
}
html[data-device-type="mobile"] #more-than-payments-container {
    padding-top: 20px;
}
html[data-device-type="mobile"] .pullout {
    background: #0079c1;
}
html[data-device-type="mobile"] .pullout h2 {
    color: #fff;
}
html[data-device-type="mobile"] .excite-bg {
    height: 501px;
}
html[data-device-type="mobile"] .excite-bg .editorial-cell {
    padding-top: 0;
    padding-bottom: 0;
}
html[data-device-type="mobile"] .play > span {
    top: 30%;
}
html[data-device-type="mobile"] .panel-three {
    padding-top: 0;
}
html[data-device-type="mobile"] .panel-three .sideKickHeadline {
    margin-left: 10px;
}
html[data-device-type="mobile"] .excite-bg .editorial-container {
    padding: 200px 0 0;
    text-align: center;
}
html[data-device-type="mobile"] #get-started, html[data-device-type="mobile"] #more-than-payments-container {
    padding: 40px 0 20px;
}
html[data-device-type="mobile"] #get-started-carousel, html[data-device-type="mobile"] #more-than-payments {
    margin-top: 10px;
}
html[data-device-type="mobile"] .merchant .transaction-tray {
    margin: 0;
}
html[data-device-type="mobile"] .merchant .phone-line {
    margin-bottom: 20px;
}
html[data-device-type="mobile"] .merchant .btn {
    width: 100%;
}
html[data-device-type="mobile"] .merchant .expanding-rows {
    margin-left: -10px;
    margin-right: -10px;
    padding-right: 0;
    padding-top: 0;
}
html[data-device-type="mobile"] .merchant .expanding-rows h4, html[data-device-type="mobile"] .merchant .expanding-rows p {
    padding-right: 3%;
    padding-left: 3%;
}
html[data-device-type="mobile"] .merchant .expanding-rows h4 {
    padding-bottom: 10px;
}
html[data-device-type="mobile"] .merchant .expander {
    position: relative;
    display: block;
    width: 21px;
    height: 21px;
    text-indent: -999em;
    overflow: hidden;
    border: 1px solid #4d4d4d;
    border-radius: 14px;
    float: right;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}
html[data-device-type="mobile"] .merchant .expander:after {
    content:'+';
    display: block;
    position: absolute;
    width: 21px;
    height: 21px;
    font-size: 21px;
    line-height: 16px;
    text-align: center;
    color: #4d4d4d;
    top: 0;
    left: 0;
    text-indent: 0;
}
html[data-device-type="mobile"] .merchant .expander.open:after {
    content:'–';
}
html[data-device-type="mobile"] .merchant .expandable {
    height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    -webkit-transition: height 0.3s ease;
    transition: height 0.3s ease;
}
html[data-device-type="mobile"] #get-started .merchant-panel .contentPara {
    min-height: 130px;
}
html[data-device-type="mobile"] #more-than-payments .merchant-panel .contentPara {
    min-height: 110px;
}
html[data-device-type="mobile"] .merchant .expandable.open {
    height: 85px;
}
html[data-device-type="mobile"] .merchant .expanding-rows p.expandable {
    border-bottom: 1px solid #4d4d4d;
}
html[data-device-type="mobile"] .merchant .expanding-rows:last-child p.expandable:last-child {
    border-bottom: none;
}
@media all and (max-width: 71.71428571428571em) {
    .chart-bgcolor h3 {
        white-space: normal;
    }
}
html[data-device-type="mobile"] #fixed-top .hero-bg .editorial-cell {
    padding-top: 0;
    text-align: center;
}

.transaction-tray p span:first-child {
    border-right: none;
}
#get-started-carousel .sideKickHeadline {
    min-height: 70px;
}
.panel-three {
    padding-top: 60px;
}
.panel-three a {
    font-size: 14px;
    font-size: 1rem;
    font-weight: normal;
}
.panel-three .sideKickHeadline {
    /* based off of four panel styles */
    padding-bottom: 25px;
}

/* fees table popup*/
.fullFeesTable tr, .fullFeesTable td{
    border: none;
    text-align: center;
}
.fullFeesTable tr.tHead {
    background: linear-gradient(to bottom, #FBFBFB 0%, #E2E2E2 100%) repeat scroll 0 0;
}
.fullFeesTable {
    background-color: #FBFBFB;
    border: 1px solid #EEEEEE;
    color: #666666;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    width: 855px;
}
.fullFeesTable tr.tHead td {
    border-bottom: 1px solid #FFFFFF;
    font-size: 16px;
    padding: 20px 10px;
    text-shadow: 0 1px #FFFFFF;
}
.fullFeesTable tr.tSubhead td {
    border-top: 1px solid #E2E2E2;
}
.fullFeesTable tr.tRow.dottedBorderBottom td, .fullFeesTable tr.tAltRow.dottedBorderBottom td {
    border-bottom: 1px dotted #C7C8BA;
}
.fullFeesTable tr.tRow.dottedBorderLeft td, .fullFeesTable tr.tAltRow.dottedBorderLeft td {
    border-left: 1px dotted #C7C8BA;
}
.fullFeesTable tr.tRow.solidBorderBottom td, .fullFeesTable tr.tAltRow.solidBorderBottom td {
    border-bottom: 1px solid #EEEEEE;
}
.fullFeesTable tr.tHead td, .fullFeesTable tr.tSubhead td {
    background-repeat: repeat-y;
    width: 120px;
}
.fullFeesTable td.rowHeading, .fullFeesTable tr.tHead td.rowHeading, .fullFeesTable tr.tSubhead td.rowHeading, .fullFeesTable tr.dottedBorderLeft td.rowHeading {
    background-image: none;
    border-left: 0 none;
    line-height: 21px;
    padding: 15px 0 15px 20px;
    text-align: left;
    width: 150px;
}
.fullFeesTable .bulletPoint {
    font-size: 24px;
    padding: 0 10px;
    vertical-align: middle;
}
.fullFeesTable .valueRange {
    text-align: right;
}
.fullFeesTable .valueRange div {
    margin: auto;
    text-align: right;
}
.fullFeesTable .valueRange.r1 div {
    width: 95px;
}
.fullFeesTable .valueRange.r2 div {
    width: 103px;
}
.fullFeesTable .valueRange.r3 div {
    width: 106px;
}
.fullFeesTable .valueRange.r4 div {
    width: 112px;
}
.fullFeesTable .valueRange.r5 div {
    width: 98px;
}
.fullFeesTable .valueRange table {
    margin: 0;
    padding: 0;
}
.fullFeesTable .valueRange table td {
    border: 0 none;
    height: 22px;
    padding: 0;
    text-align: right;
}
.fullFeesTable .valueRange table td.fromTo {
    color: #BBBBBB;
    font-size: 13px;
    padding-right: 5px;
    text-align: left;
    width: 14px;
}
.fullFeesTable .valueRange table td.fromTo.wide {
    padding-right: 0;
    text-align: right;
    width: 100%;
}
.fullFeesTable .valueRange table td.value {
    width: auto;
}
.feesFooter {
    padding: 11px 25px 0;
    text-align: left;
}
.feesFooter p {
    color: #999999;
    margin: 5px 0 0;
    padding-bottom: 0;
}
/* end: fees table popup*/

