/*

This is a less library contains PayPal common styles and variables,
you may want to import it in your less files if you need to.

*/
body .svg {
  width: 50px;
  height: 50px;
  padding: 10px;
  display: block;
}
body .svg svg {
  width: 100%;
  height: 100%;
  fill: #231f20;
}
body .svg.circled {
  border: 2px solid #231f20;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
body .svg.i-gray,
.i-gray body .svg {
  border-color: #d0d0d0;
}
body .svg.i-gray svg,
.i-gray body .svg svg {
  fill: #d0d0d0;
}
body .svg.i-blue,
.i-blue body .svg {
  border-color: #009cde;
}
body .svg.i-blue svg,
.i-blue body .svg svg {
  fill: #009cde;
}
body .svg.i-black,
.i-black body .svg {
  border-color: #1c1c1c;
}
body .svg.i-black svg,
.i-black body .svg svg {
  fill: #1c1c1c;
}
body .svg.i-white,
.i-white body .svg {
  border-color: #ffffff;
}
body .svg.i-white svg,
.i-white body .svg svg {
  fill: #ffffff;
}

/* 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;
}

/*

This is a less library contains PayPal common styles and variables,
you may want to import it in your less files if you need to.

*/
/*
Shows the Spinner on the page.
It will appear in the center (takes the parent width and height).
Common spinner for UL, Tesla and MPP.
*/
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
@-moz-keyframes spin {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  from {
    -o-transform: rotate(0deg);
  }
  to {
    -o-transform: rotate(359deg);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.sticky-nav-global {
  z-index: 3;
  line-height: 60px;
  padding: 1px;
  opacity: .95;
}
.sticky-nav-global .stickyContainer {
  padding: 10px 0;
  overflow: auto;
}
.sticky-nav-global.white {
  background: #fff;
}
.sticky-nav-global.white .links-section ul li a {
  font-weight: bold;
}
.sticky-nav-global.white .stickyContainer {
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}
.sticky-nav-global.white.on {
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}
.sticky-nav-global.white.on .stickyContainer {
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0);
}
.sticky-nav-global.gray {
  background: #f5f5f5;
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}
.sticky-nav-global .btn-section {
  width: 25%;
  float: left;
}
.sticky-nav-global .btn-section .btn {
  visibility: hidden;
  font-size: 13px;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.sticky-nav-global .mobile-control {
  display: none;
}
.sticky-nav-global .links-section {
  width: 75%;
  float: left;
}
.sticky-nav-global .links-section .links-container {
  float: right;
}
.sticky-nav-global .links-section .links-container p {
  display: inline-block;
  margin-right: 10px;
}
.sticky-nav-global .links-section .links-container ul {
  display: inline-block;
  margin: 0;
}
.sticky-nav-global .links-section .links-container ul li {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
  justify-content: space-between;
}
.sticky-nav-global .links-section .links-container ul li.justified {
  display: flex;
}
.sticky-nav-global.on {
  position: fixed;
  top: 0;
  z-index: 4;
}
.sticky-nav-global.on .btn-section .btn {
  visibility: visible;
}
.sticky-nav-global.btn-right .btn-section {
  float: right;
}
.sticky-nav-global.btn-right .links-section .links-container {
  float: left;
}
.sticky-nav-global.btn-right .links-section .links-container .link-item:first-of-type a {
  margin-left: 0;
}
@media (max-width: 1000px) {
  .sticky-nav-global {
    line-height: 30px;
  }
  .sticky-nav-global .containerCentered {
    min-width: 100%;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .sticky-nav-global .containerCentered .links-container {
    float: left;
    margin-left: 10px;
  }
  .sticky-nav-global .containerCentered .links-container .links-headline {
    display: none;
  }
  .sticky-nav-global .containerCentered .links-container .sticky-nav-links {
    margin-left: 10px;
  }
}
@media (max-width: 768px) {
  .sticky-nav-global .links-section {
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: 0.3s height;
    -moz-transition: 0.3s height;
    -webkit-transition: 0.3s height;
  }
  .sticky-nav-global .links-section .links-container {
    margin-left: 0;
    width: inherit;
  }
  .sticky-nav-global .links-section .links-container ul {
    width: inherit;
  }
  .sticky-nav-global .links-section .links-container ul li {
    display: block;
    width: inherit;
  }
  .sticky-nav-global .links-section .links-container ul li a.sticky-nav-links {
    display: block;
    width: inherit;
    margin-left: 0;
    line-height: 45px;
  }
  .sticky-nav-global.on .mobile-control {
    float: right;
  }
  .sticky-nav-global.on .btn-section {
    display: block;
  }
  .sticky-nav-global.on.btn-right .mobile-control {
    float: left;
  }
  .sticky-nav-global .mobile-control {
    margin: auto;
    min-width: 40px;
    display: block;
    height: 40px;
    background: transparent;
    border-radius: 50%;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoxMjhDQUY2RjQ4RjcxMUU1QkIzNUVGNzFBNTcxOEQ4MCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoxMjhDQUY3MDQ4RjcxMUU1QkIzNUVGNzFBNTcxOEQ4MCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjEyOENBRjZENDhGNzExRTVCQjM1RUY3MUE1NzE4RDgwIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjEyOENBRjZFNDhGNzExRTVCQjM1RUY3MUE1NzE4RDgwIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+XITWJgAAARtJREFUeNrs2dENgjAQBmAwbsAaPoAkLqA+uIAOpfv4oA8uQOIgMAOeSZsQIlra/6rB/5J7ABKuH4H2gLRt22QKMUsmEoQQQgghhBBCCCGEEPI/kPnQgaqqfnLAZVny1lpKXiWzL4wvM7ULBOQouZa8RMZkpuaz9gkBOUjezVWJhbGIwtTeIyC15DYipo/YSDao6TcWxgsxdtaqzYm1MN0HexTCZ/ptlDAWkfsgfNcRNCYYEbIgojAQROjKHoqBIRAtSh/j2gFAEaheq4vJHTBwBLJpdMWoINDd7yeMGkKjjR/CqCLevlgBMHbgN7N/oYXQgrzCJJoITUgXczbbOy2ENsRiVvyKMiJS/tUlhBBCCCGEEEIIUYuHAAMAg89oVszT+ikAAAAASUVORK5CYII=');
    background-size: 40px 40px;
    background-position: center center;
    background-repeat: no-repeat;
    -moz-transition: 0.3s all;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
  }
  .sticky-nav-global .mobile-control.on {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAZCAQAAABu4E3oAAAFFWlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4KPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS41LWMwMTIgMS4xNDk2MDIsIDIwMTIvMTAvMTAtMTg6MTA6MjQgICAgICAgICI+CiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPgogIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiCiAgICB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iCiAgICB4bWxuczpkYW09Imh0dHA6Ly93d3cuZGF5LmNvbS9kYW0vMS4wIgogICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZmLzEuMC8iCiAgICB4bWxuczpQYXlQYWw9Ind3dy5wYXlwYWwuY29tL2Jhc2UvdjEiCiAgIGRjOmZvcm1hdD0iaW1hZ2UvcG5nIgogICBkYzptb2RpZmllZD0iMjAxMy0xMi0xMFQxNTo0ODo1Ny41MjEtMDg6MDAiCiAgIGRhbTpzaXplPSIxNzEiCiAgIGRhbTpQaHlzaWNhbHdpZHRoaW5pbmNoZXM9Ii0xLjAiCiAgIGRhbTpleHRyYWN0ZWQ9IjIwMTMtMTItMTBUMTU6NDg6NTYuMTYxLTA4OjAwIgogICBkYW06c2hhMT0iZjQwZTM2OGI1NmNlMDdhZDRlNWNlY2ZiNGY5NDQxZmU1YjM3NDFjMiIKICAgZGFtOk51bWJlcm9mdGV4dHVhbGNvbW1lbnRzPSIwIgogICBkYW06RmlsZWZvcm1hdD0iUE5HIgogICBkYW06UHJvZ3Jlc3NpdmU9Im5vIgogICBkYW06UGh5c2ljYWxoZWlnaHRpbmRwaT0iLTEiCiAgIGRhbTpNSU1FdHlwZT0iaW1hZ2UvcG5nIgogICBkYW06TnVtYmVyb2ZpbWFnZXM9IjEiCiAgIGRhbTpCaXRzcGVycGl4ZWw9IjE2IgogICBkYW06UGh5c2ljYWxoZWlnaHRpbmluY2hlcz0iLTEuMCIKICAgZGFtOlBoeXNpY2Fsd2lkdGhpbmRwaT0iLTEiCiAgIHRpZmY6SW1hZ2VMZW5ndGg9IjI1IgogICB0aWZmOkltYWdlV2lkdGg9IjI1IgogICBQYXlQYWw6c3RhdHVzPSJTb3VyY2VBcHByb3ZlZCIKICAgUGF5UGFsOnNvdXJjZU5vZGVQYXRoPSIvY29udGVudC9kYW0vUGF5UGFsRGlnaXRhbEFzc2V0cy9zcGFydGFJbWFnZXMvR2xvYmFsSW1hZ2VzL21rdGcvMjAxNGRlc2lnbi9jbG9zZV9kZWZhdWx0LnBuZyIKICAgUGF5UGFsOmlzU291cmNlPSJ0cnVlIj4KICAgPGRjOmxhbmd1YWdlPgogICAgPHJkZjpCYWcvPgogICA8L2RjOmxhbmd1YWdlPgogIDwvcmRmOkRlc2NyaXB0aW9uPgogPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KPD94cGFja2V0IGVuZD0iciI/PhESLTAAAABySURBVHgBzdIxCoAwFATRtZCACYpoITaCl9BjeP/T2AnB4W+b6V+K7Ff7FcVN6lWVdGkNwKz7/2hm9IFRECMGjBg4xIARA4MQGHSGANr16BAUDbeZcfFbc4gAyCIAHgFgxMAjBgYVBhVaVNVpsBeR1HYvtcwLhzoX1iQAAAAASUVORK5CYII=');
    background-size: 25px 25px;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .sticky-nav-global .btn-section {
    display: none;
    width: auto;
    max-width: 75%;
  }
  .sticky-nav-global .btn-section .btn {
    min-width: 100%;
  }
}

.pal-blue{background-color:#009cde}.pay-blue{background-color:#003087}.pink{background-color:#de0063}.purple{background-color:#640487}.green{background-color:#00cf92}.orange{background-color:#ff9600}.pink,.purple,.green,.orange,.pink *,.purple *,.green *,.orange *,.pay-blue *,.pal-blue *{color:#fff}@font-face{font-family:"pp-sans-big-bold";src:url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Bold.eot");src:url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Bold.eot?#iefix") format("embedded-opentype"),url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Bold.woff") format("woff"),url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/headlinedark/festivo1.ttf") format("truetype"),url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Bold.svg") format("svg")}@font-face{font-family:"pp-sans-big-light";src:url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Light.eot");src:url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Light.eot?#iefix") format("embedded-opentype"),url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Light.woff") format("woff"),url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/headlinedark/festivo1.ttf") format("truetype"),url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Light.svg") format("svg")}@font-face{font-family:"pp-sans-big-medium";src:url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Medium.eot");src:url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Medium.eot?#iefix") format("embedded-opentype"),url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Medium.woff") format("woff"),url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/headlinedark/festivo1.ttf") format("truetype"),url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Medium.svg") format("svg")}@font-face{font-family:"pp-sans-big-regular";src:url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Regular.eot");src:url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Regular.eot?#iefix") format("embedded-opentype"),url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Regular.woff") format("woff"),url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/headlinedark/festivo1.ttf") format("truetype"),url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Regular.svg") format("svg")}@font-face{font-family:"pp-sans-big-thin";src:url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Thin.eot");src:url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Thin.eot?#iefix") format("embedded-opentype"),url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Thin.woff") format("woff"),url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/headlinedark/festivo1.ttf") format("truetype"),url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Thin.svg") format("svg")}@font-face{font-family:"pp-sans-small-bold";src:url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansSmall-Bold.eot");src:url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansSmall-Bold?#iefix") format("embedded-opentype"),url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansSmall-Bold.woff") format("woff"),url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/headlinedark/festivo1.ttf") format("truetype"),url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansSmall-Bold.svg") format("svg")}@font-face{font-family:"pp-sans-small-light";src:url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansSmall-Light.eot");src:url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansSmall-Light.eot?#iefix") format("embedded-opentype"),url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansSmall-Light.woff") format("woff"),url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/headlinedark/festivo1.ttf") format("truetype"),url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansSmall-Light.svg") format("svg")}@font-face{font-family:"pp-sans-small-medium";src:url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansSmall-Medium.eot");src:url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansSmall-Medium.eot?#iefix") format("embedded-opentype"),url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansSmall-Medium.woff") format("woff"),url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/headlinedark/festivo1.ttf") format("truetype"),url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansSmall-Medium.svg") format("svg")}@font-face{font-family:"pp-sans-small-regular";src:url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansSmall-Regular.eot");src:url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansSmall-Regular.eot?#iefix") format("embedded-opentype"),url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansSmall-Regular.woff") format("woff"),url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/headlinedark/festivo1.ttf") format("truetype"),url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansSmall-Regular.svg") format("svg")}@font-face{font-family:"pp-sans-small-thin";src:url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansSmall-Thin.eot");src:url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansSmall-Thin.eot?#iefix") format("embedded-opentype"),url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansSmall-Thin.woff") format("woff"),url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/headlinedark/festivo1.ttf") format("truetype"),url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansSmall-Thin.svg") format("svg")}.pp-sans-big-bold{font-family:"pp-sans-big-bold",Helvetica Neue,Arial,sans-serif;font-weight:normal;font-variant:normal}.pp-sans-big-light{font-family:"pp-sans-big-light",Helvetica Neue,Arial,sans-serif;font-weight:normal;font-variant:normal}.pp-sans-big-medium{font-family:"pp-sans-big-medium",Helvetica Neue,Arial,sans-serif;font-weight:normal;font-variant:normal}.pp-sans-big-regular{font-family:"pp-sans-big-regular",Helvetica Neue,Arial,sans-serif;font-weight:normal;font-variant:normal}.pp-sans-small-bold{font-family:"pp-sans-small-bold",Helvetica Neue,Arial,sans-serif;font-weight:normal;font-variant:normal}.pp-sans-small-light{font-family:"pp-sans-small-light",Helvetica Neue,Arial,sans-serif;font-weight:normal;font-variant:normal}.pp-sans-small-medium{font-family:"pp-sans-small-medium",Helvetica Neue,Arial,sans-serif;font-weight:normal;font-variant:normal}.pp-sans-small-regular{font-family:"pp-sans-small-regular",Helvetica Neue,Arial,sans-serif;font-weight:normal;font-variant:normal}.pp-sans-small-thin{font-family:"pp-sans-small-thin",Helvetica Neue,Arial,sans-serif;font-weight:normal;font-variant:normal}@font-face{font-family:'DharmaGothicE-Regular';src:url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_0_0.eot');src:url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_0_0.eot?#iefix') format('embedded-opentype'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_0_0.woff') format('woff'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_0_0.ttf') format('truetype')}@font-face{font-family:'DharmaGothicE-ExLightItalic';src:url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_1_0.eot');src:url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_1_0.eot?#iefix') format('embedded-opentype'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_1_0.woff') format('woff'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_1_0.ttf') format('truetype')}@font-face{font-family:'DharmaGothicE-Heavy';src:url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_2_0.eot');src:url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_2_0.eot?#iefix') format('embedded-opentype'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_2_0.woff') format('woff'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_2_0.ttf') format('truetype')}@font-face{font-family:'DharmaGothicE-Thin';src:url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_3_0.eot');src:url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_3_0.eot?#iefix') format('embedded-opentype'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_3_0.woff') format('woff'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_3_0.ttf') format('truetype')}@font-face{font-family:'DharmaGothicE-ExBoldItalic';src:url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_4_0.eot');src:url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_4_0.eot?#iefix') format('embedded-opentype'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_4_0.woff') format('woff'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_4_0.ttf') format('truetype')}@font-face{font-family:'DharmaGothicE-ThinItalic';src:url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_5_0.eot');src:url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_5_0.eot?#iefix') format('embedded-opentype'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_5_0.woff') format('woff'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_5_0.ttf') format('truetype')}@font-face{font-family:'DharmaGothicE-Bold';src:url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_6_0.eot');src:url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_6_0.eot?#iefix') format('embedded-opentype'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_6_0.woff') format('woff'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_6_0.ttf') format('truetype')}@font-face{font-family:'DharmaGothicE-RegularItalic';src:url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_7_0.eot');src:url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_7_0.eot?#iefix') format('embedded-opentype'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_7_0.woff') format('woff'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_7_0.ttf') format('truetype')}@font-face{font-family:'DharmaGothicE-ExLight';src:url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_8_0.eot');src:url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_8_0.eot?#iefix') format('embedded-opentype'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_8_0.woff') format('woff'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_8_0.ttf') format('truetype')}@font-face{font-family:'DharmaGothicE-LightItalic';src:url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_9_0.eot');src:url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_9_0.eot?#iefix') format('embedded-opentype'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_9_0.woff') format('woff'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_9_0.ttf') format('truetype')}@font-face{font-family:'DharmaGothicE-Light';src:url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_A_0.eot');src:url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_A_0.eot?#iefix') format('embedded-opentype'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_A_0.woff') format('woff'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_A_0.ttf') format('truetype')}@font-face{font-family:'DharmaGothicE-BoldItalic';src:url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_B_0.eot');src:url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_B_0.eot?#iefix') format('embedded-opentype'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_B_0.woff') format('woff'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_B_0.ttf') format('truetype')}@font-face{font-family:'DharmaGothicE-HeavyItalic';src:url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_C_0.eot');src:url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_C_0.eot?#iefix') format('embedded-opentype'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_C_0.woff') format('woff'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_C_0.ttf') format('truetype')}@font-face{font-family:'DharmaGothicE-ExBold';src:url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_D_0.eot');src:url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_D_0.eot?#iefix') format('embedded-opentype'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_D_0.woff') format('woff'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_D_0.ttf') format('truetype')}.phone-line{background:rgba(0,0,0,0) url("https://www.paypalobjects.com/webstatic/en_US/mktg/wright/merchant/businesshomepage_telicon_1x.png") 2px center no-repeat;background-size:11px 13px;padding-left:20px}.phone-line_white{background:url('https://www.paypalobjects.com/webstatic/icon/Phone-Icon-White_12x12_baseline.png') 0 2px no-repeat}.video-module{height:530px;background:#000 url('https://www.paypalobjects.com/webstatic/en_US/mktg/merchant/video/pb-americano-still-1.jpg') no-repeat;background-size:cover;background-position:60% center;overflow:hidden}.video-module>.containerCentered>.editorial-container{line-height:580px}.video-module .play-button>span{top:30%}html[data-device-type="portable"] .video-module .play-button{height:auto;top:16%}@media (orientation:landscape){html[data-device-type="portable"] .video-module .play-button{top:24%}}html[data-device-type="mobile"] .video-module .play-button{height:auto;top:8%}@media (orientation:landscape){html[data-device-type="mobile"] .video-module .play-button{top:16%}}.video-module .small{font-weight:normal}.pricing{margin-top:385px;padding-top:125px}.pricing h2:before{content:"";position:absolute;top:-480px;left:0;width:100%;height:460px;background:url("https://www.paypalobjects.com/webstatic/en_US/mktg/merchant/US_merchant_devices_03.png") center center no-repeat;background-size:contain}.pricing h3{font-size:1.3rem}.pricing .large{font-size:3rem}.pricing .medium.m2{font-size:1.8rem}.pricing .left{border-right:1px solid #f5f5f5;padding-left:20%}@media (orientation:portrait){html[data-device-type="portable"] .pricing .left{padding-left:0}}html[data-device-type="mobile"] .pricing .left{border-right:none;padding-left:0}.pricing .row-fluid:nth-child(2){padding-top:30px}html[data-device-type="mobile"] .pricing{margin-top:250px;padding-top:84px}html[data-device-type="mobile"] .pricing h2:before{top:-290px;height:265px}.panel p.legal-notes{font-size:.813em}.sticky-nav-global{z-index:0}.sticky-nav-global.on{z-index:99999}.sticky-nav-global .btn-section .btn{visibility:visible}html[data-device-type="dedicated"] header[role="banner"].pp-header+#main>section.panel.treatment-one:first-of-type{padding-top:70px;padding-bottom:70px}.panel-hero{padding-top:60px;background-color:#009cde;box-sizing:border-box;padding-bottom:400px}@media only screen and (max-width:1100px){html[data-device-type="dedicated"] .panel-hero{padding-bottom:330px}}@media (orientation:portrait){html[data-device-type="portable"] .panel-hero{padding-bottom:290px}}@media (orientation:landscape){html[data-device-type="portable"] .panel-hero{padding-bottom:330px}}@media (orientation:portrait){html[data-device-type="mobile"] .panel-hero{padding-bottom:140px}}@media (orientation:landscape){html[data-device-type="mobile"] .panel-hero{padding-bottom:180px}}div.container.panel-hero-container{padding:0}.panel-hero-container .x-large{color:#fff;font-size:36px;font-size:2.6rem}.panel-hero-container .img-payments{margin-top:25px}.panel-hero-container .animated-images{box-sizing:border-box;position:absolute;left:0;right:0;bottom:-38px;margin-left:auto;margin-right:auto;margin-top:30px;overflow:hidden;padding:20px 0}@media only screen and (max-width:1010px){html[data-device-type="dedicated"] .panel-hero-container .animated-images{margin-top:0;padding-bottom:0;bottom:-18px}}.panel-hero-container .animated-images .img-device{position:relative}.panel-hero-container .animated-images .img-device_phone{left:123px;z-index:10}@media only screen and (max-width:1100px){.panel-hero-container .animated-images .img-device_phone{width:100px}}@media (orientation:portrait){html[data-device-type="portable"] .panel-hero-container .animated-images .img-device_phone{left:80px;width:80px}}@media (orientation:landscape){html[data-device-type="portable"] .panel-hero-container .animated-images .img-device_phone{left:100px}}@media (orientation:portrait){html[data-device-type="mobile"] .panel-hero-container .animated-images .img-device_phone{left:36px;width:40px}}@media (orientation:landscape){html[data-device-type="mobile"] .panel-hero-container .animated-images .img-device_phone{left:50px;width:50px}}.panel-hero-container .animated-images .img-device_laptop{z-index:0;top:-12px}@media only screen and (max-width:1100px){.panel-hero-container .animated-images .img-device_laptop{width:581px}}@media (orientation:portrait){html[data-device-type="portable"] .panel-hero-container .animated-images .img-device_laptop{width:480px}}@media (orientation:portrait){html[data-device-type="mobile"] .panel-hero-container .animated-images .img-device_laptop{width:200px}}@media (orientation:landscape){html[data-device-type="mobile"] .panel-hero-container .animated-images .img-device_laptop{width:300px}}.panel-hero-container .animated-images .img-device_tablet{right:120px;z-index:10}@media only screen and (max-width:1100px){.panel-hero-container .animated-images .img-device_tablet{width:180px}html[data-device-type="dedicated"] .panel-hero-container .animated-images .img-device_tablet{right:98px}}@media (orientation:portrait){html[data-device-type="portable"] .panel-hero-container .animated-images .img-device_tablet{width:140px;right:80px}}@media (orientation:landscape){html[data-device-type="portable"] .panel-hero-container .animated-images .img-device_tablet{right:100px}}@media (orientation:portrait){html[data-device-type="mobile"] .panel-hero-container .animated-images .img-device_tablet{width:70px;right:35px}}@media (orientation:landscape){html[data-device-type="mobile"] .panel-hero-container .animated-images .img-device_tablet{width:90px;right:50px}}.panel-animated.dark{background:url('https://www.paypalobjects.com/webstatic/en_US/mktg/merchant/interactive/intent-hero-bg.jpg') 0 0 no-repeat;background-size:cover}.panel-animated.dark .img-payments{float:none;display:block;margin:35px auto 30px}.panel-animated.dark a.btn{margin-bottom:15px}.panel-animated.dark a.btn.treatmentone-btn{margin-bottom:26px}.panel-animated.dark a.btn.treatmenttwo-btn{margin-top:60px;margin-bottom:26px}.panel-animated.dark .treatmentone-phn{padding-bottom:26px}.panel-animated .pulloutHeadline{margin-bottom:50px}.panel-animated-cards-container{margin:0;padding:0;box-sizing:border-box}.panel-animated-cards-container:after{content:'';display:block;clear:both}.panel-animated-cards-container:first-of-type{border-bottom:1px solid #d8d8d8}html[data-device-type="dedicated"] .one-row.panel-animated-cards-container:first-of-type,html[data-device-type="portable"] .one-row.panel-animated-cards-container:first-of-type{border-bottom:none}html[data-device-type="mobile"] .one-row.panel-animated-cards-container:first-of-type{padding-top:30px}.panel-animated .panel-animated-card{overflow:hidden;box-sizing:border-box;height:295px;line-height:320px;cursor:pointer}html:not([data-device-type="mobile"]) .panel-animated .panel-animated-card+.panel-animated-card{border-left:1px solid #d8d8d8}.panel-animated .panel-animated-card[class*="span"]{margin-left:0;padding-right:0;width:33%}.panel-animated .panel-animated-card-headline{padding:20px 30px;display:inline-block}html[data-device-type="dedicated"] .panel-animated .panel-animated-card-headline{min-height:70px}@media (orientation:portrait){html[data-device-type="portable"] .panel-animated .panel-animated-card-headline{padding:20px 10px}}@media (orientation:landscape){html[data-device-type="portable"] .panel-animated .panel-animated-card-headline{min-height:70px}}html[data-device-type="mobile"] .panel-animated .panel-animated-card-headline{padding-bottom:0}.panel-animated .panel-animated-card-info{overflow:hidden;padding:10px;line-height:1.5em;position:relative;top:200px}.panel-animated .panel-animated-card-info .btn{border:1px solid #009cde;color:#009cde;background-color:transparent;padding:10px 0;position:absolute;left:0;right:0;bottom:20px}.panel-animated .panel-animated-card-info .btn:hover,.panel-animated .panel-animated-card-info .btn:visited{background-color:transparent;color:#0079ad}html[data-device-type="mobile"] .panel-animated .panel-animated-card-info .btn{width:90%;position:relative;margin-top:1.4em}html[data-device-type="dedicated"] .panel-animated .panel-animated-card-info{opacity:0;height:190px}@media only screen and (max-width:1100px){html[data-device-type="dedicated"] .panel-animated .panel-animated-card-info{height:205px}}@media (orientation:portrait){html[data-device-type="portable"] .panel-animated .panel-animated-card-info{min-height:240px}}@media (orientation:landscape){html[data-device-type="portable"] .panel-animated .panel-animated-card-info{min-height:200px}}html[data-device-type="mobile"] .panel-animated .panel-animated-card-info{display:block;height:auto;opacity:1}html[data-device-type="portable"] .panel-animated .panel-animated-card-info,html[data-device-type="mobile"] .panel-animated .panel-animated-card-info{top:0}@media only screen and (max-width:1100px){html[data-device-type="dedicated"] .panel-animated .panel-animated-card{height:350px}}html[data-device-type="portable"] .panel-animated .panel-animated-card{width:33%}html[data-device-type="mobile"] .panel-animated .panel-animated-card,html[data-device-type="portable"] .panel-animated .panel-animated-card{overflow:auto;margin-left:0;height:auto;line-height:1.5em}html[data-device-type="mobile"] .panel-animated .panel-animated-card{border-top:1px solid #d8d8d8;padding:20px 0}html[data-device-type="mobile"] .panel-animated .panel-animated-card:first-of-type{border:none}.panel.row-fluid div.panel-animated-container_dark[class*="span"]{padding-right:0}.panel-animated-container_dark img{margin:35px 0 45px}.panel-animated-container_dark .panel-animated-card-info .btn,.panel-animated-container_dark .panel-animated-card-info .btn:visited{border:1px solid #fff;color:#fff}.panel-animated-container_dark .panel-animated-card-info .btn:hover,.panel-animated-container_dark .panel-animated-card-info .btn:visited:hover{color:#009cde}html[data-device-type="mobile"] .panel-animated{padding:80px 0}.panel-steps-heading{padding-bottom:30px}.panel-steps{padding:80px 0}.panel-steps img{margin-left:1em}@media (orientation:portrait){html[data-device-type="portable"] .panel-steps img{margin-top:15%}}html[data-device-type="mobile"] .panel-steps img{margin-left:0;margin-bottom:1.4em}.panel-steps .steps{padding:0}.panel-steps .circle{border:1px solid #c0c0c0;padding:4px 11px;border-radius:50%;width:8px;float:left;margin-right:20px;text-align:center}.panel-steps .containerCentered{margin-top:30px}.panel-pricing_t1#pricing{margin-top:0}.panel-pricing_t1 h2:before{background:none}.panel-logos{padding-bottom:30px}.custom-logos{padding:0 0 90px}.custom-logos .containerCentered:after{border-bottom:1px solid #ddd;width:100%;position:relative;top:90px}.custom-logos .row-fluid{background-position:50% 10px}.custom-logos .appslogos{background:url("https://www.paypalobjects.com/webstatic/en_US/mktg/merchant/interactive/merchant-logos-915.jpg") no-repeat;width:33%;height:105px;float:left;margin-left:0;margin:10px 0}@media (orientation:portrait){html[data-device-type="portable"] .custom-logos .appslogos{background-size:75% 1040%;width:50%}}@media (max-width:480px){html[data-device-type="mobile"] .custom-logos .appslogos{background-size:106% 1040%;width:50%}}.custom-logos .appslogos.adorama{background-position:50% 2px}.custom-logos .appslogos.bhcosmetics{background-position:50% -112px}.custom-logos .appslogos.diapers{background-position:50% -217px}.custom-logos .appslogos.dyson{background-position:50% -328px}.custom-logos .appslogos.gyft{background-position:50% -436px}.custom-logos .appslogos.overstock{background-position:50% -548px}.custom-logos .appslogos.steam{background-position:50% -660px}.custom-logos .appslogos.walmart{background-position:50% -762px}.custom-logos .appslogos.travelocity{background-position:50% -875px}.custom-logos .appslogos.zulily{background-position:50% -985px}.closing-section a.btn{padding:10px 0}.panel-pillars h3{font-size:1.7rem;margin-bottom:20px}.pillars-footer{clear:both;padding-top:2em}.animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}@-webkit-keyframes slideInUp{from{-webkit-transform:translate3d(0, 100%, 0);transform:translate3d(0, 100%, 0);visibility:visible}to{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}}@keyframes slideInUp{from{-webkit-transform:translate3d(0, 100%, 0);transform:translate3d(0, 100%, 0);visibility:visible}to{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}}.slideInUp{-webkit-animation-name:slideInUp;animation-name:slideInUp}.panel-animated.dark.grad-design{background-color:#009cde;background-image:radial-gradient(circle at top left, #009cde, #003087)}#grad-design{padding:60px 0}#grad-design .title{font-size:16px;font-size:1.14285714rem}#grad-design h2 em{font-style:normal;margin-bottom:15px;display:block}#grad-design .svg{margin:0 auto 10px}#grad-design .contentPara span{display:block;margin-top:15px}.panel-animated.treatment-design{background-color:#009cde;background:url('https://www.paypalobjects.com/digitalassets/c/website/marketing/na/us/merchant/img-hero.jpg') no-repeat center top;background-size:cover}html[data-device-type="mobile"] .panel-animated.treatment-design.treatment-one{background-position:45% top}.panel-animated.treatment-design .panel-animated-card{position:relative}.panel-animated.treatment-design .panel-animated-card .panel-animated-card-info .panel-animated-card-para span{display:block;margin-top:15px}.panel-animated.treatment-design .panel-animated-card .panel-animated-card-info .btn{border:0}.panel-animated.treatment-design .panel-animated-card .animated-links .btn{width:100%}.panel-animated.treatment-design .animated-links a:hover,.panel-animated.treatment-design .animated-links .btn:hover{color:#fff;text-decoration:underline}.panel-animated-container p.subcontent-treatmentone{padding:0;margin:0;color:#fff;font-family:"pp-sans-small-medium",Helvetica Neue,Arial,sans-serif;font-weight:normal;font-variant:normal;font-size:20px}html[data-device-type="mobile"] .panel-animated-container p.subcontent-treatmentone{padding-bottom:40px}.panel-animated-container p.subcontent-treatmentone.note-one{margin-top:60px}html[data-device-type="mobile"] .panel-animated-container p.subcontent-treatmentone.note-one{padding-bottom:10px}.panel-animated-container p.subcontent-treatmentone sup{font-size:60%;top:-0.7em}.panel-animated-container .trmtone .panel-animated-card-info ul{list-style-type:disc;padding:0 0 0 20px;text-align:left}.panel-animated-container .trmtone .panel-animated-card-info ul li{padding:15px 0 0 0}.panel-animated-container .trmtone .panel-animated-card-info ul li a:hover sup,.panel-animated-container .trmtone .panel-animated-card-info ul li a:focus sup{text-decoration:none;display:inline-block}.panel-animated-container .trmtone .panel-animated-card-info ul li:first-child{display:none}.panel-animated-container .trmtone .panel-animated-card-info ul li:nth-child(2){padding-top:0}html[data-device-type="dedicated"] .panel-animated-container h1{padding:70px 0 50px 0}html[data-device-type="dedicated"] .panel-animated.treatment-design .panel-animated-card .animated-links{bottom:65px;position:absolute;width:100%}html[data-device-type="dedicated"] .panel-animated.treatment-design .panel-animated-card{height:245px}html[data-device-type="dedicated"] .panel-animated.treatment-design .panel-animated-card.trmtone{height:238px;padding-right:0;line-height:238px}html[data-device-type="dedicated"] .panel-animated.treatment-design .panel-animated-card.trmtone h3{padding-top:0;padding-bottom:0;min-height:55px}html[data-device-type="dedicated"] .panel-animated.treatment-design .panel-animated-card.trmtone.trmtwo{height:356px;line-height:356px}html[data-device-type="dedicated"] .panel-animated.treatment-design .panel-animated-card.trmtone.trmtwo .panel-animated-card-info{height:auto}html[data-device-type="dedicated"] .panel-animated.treatment-design .panel-animated-card .panel-animated-card-info{position:relative}html[data-device-type="dedicated"] .panel-animated.treatment-design .panel-animated-card .panel-animated-card-info a{width:90%;position:relative;left:auto;right:auto;bottom:auto;margin-bottom:0;padding-bottom:0}html[data-device-type="dedicated"] .panel-animated.treatment-design .panel-animated-card-headline{padding-top:15px;padding-bottom:10px}html[data-device-type="dedicated"] .panel-animated.treatment-design .panel-animated-card-info .btn{position:static;left:auto;right:auto;bottom:auto;width:100%}html[data-device-type="dedicated"] a.get-started{margin:50px 0 30px 0}@media (orientation:portrait){html[data-device-type=portable] .panel-animated.treatment-design .panel-animated-card{min-height:450px}}@media (orientation:portrait){html[data-device-type=portable] .panel-animated.treatment-design .panel-animated-card.trmtone{height:390px}}@media (orientation:landscape){html[data-device-type=portable] .panel-animated.treatment-design .panel-animated-card.trmtone{min-height:325px}}@media (orientation:portrait){html[data-device-type=portable] .panel-animated.treatment-design .panel-animated-card.trmtone.trmtwo{height:595px}}@media (orientation:landscape){html[data-device-type=portable] .panel-animated.treatment-design .panel-animated-card.trmtone.trmtwo{min-height:425px}}html[data-device-type=portable] .panel-animated.treatment-design .panel-animated-card.trmtone.trmtwo .panel-animated-card-headline{min-height:0}html[data-device-type=portable] .panel-animated.treatment-design .panel-animated-container h1{padding:70px 0 50px}@media (orientation:portrait){html[data-device-type=portable] .panel-animated.treatment-design .panel-animated-cards-container:first-of-type li{min-height:320px}html[data-device-type=portable] .panel-animated.treatment-design .panel-animated-cards-container.one-row:first-of-type li{min-height:0}html[data-device-type=portable] .panel-animated.treatment-design .panel-animated-cards-container:first-of-type li .panel-animated-card-info{min-height:initial}}html[data-device-type=portable] .panel-animated.treatment-design .panel-animated-card{position:relative}@media (orientation:portrait){html[data-device-type=portable] .panel-animated.treatment-design .panel-animated-card{min-height:380px}}@media (orientation:landscape){html[data-device-type=portable] .panel-animated.treatment-design .panel-animated-card{min-height:180px}}@media (orientation:portrait){html[data-device-type=portable] .panel-animated.treatment-design .panel-animated-card .panel-animated-card-info{position:static}}@media (orientation:landscape){html[data-device-type=portable] .panel-animated.treatment-design .panel-animated-card .panel-animated-card-info{min-height:160px}}html[data-device-type=portable] .panel-animated.treatment-design .panel-animated-card .panel-animated-card-info .animated-links{padding:0 0;position:absolute;left:0;right:0;bottom:10px}@media (orientation:portrait){html[data-device-type=portable] .panel-animated.treatment-design .panel-animated-card .panel-animated-card-info .animated-links{bottom:30px}}html[data-device-type=portable] .panel-animated.treatment-design .panel-animated-card .panel-animated-card-info .animated-links a.btn{position:relative;bottom:0;width:90%;margin-bottom:0;padding-bottom:0}html[data-device-type=portable] a.get-started{margin:50px 0 30px 0}html[data-device-type=mobile]  .panel-animated.treatment-design .panel-animated-card{padding:0}html[data-device-type=mobile]  .panel-animated.treatment-design .panel-animated-card .panel-animated-card-headline{min-height:10px}html[data-device-type=mobile]  .panel-animated.treatment-design .panel-animated-card.trmtone{padding-bottom:20px}html[data-device-type=mobile]  .panel-animated.treatment-design .panel-animated-card.trmtone .panel-animated-card-headline{padding:20px 0 20px 0}html[data-device-type=mobile]  .panel-animated.treatment-design .panel-animated-card .panel-animated.treatment-design .panel-animated-card-info .animated-links{padding:0 0;bottom:0;position:relative}html[data-device-type=mobile]  .panel-animated.treatment-design .panel-animated-card .panel-animated.treatment-design .panel-animated-card-info .btn{margin-top:0;bottom:0}html[data-device-type=mobile]  a.get-started{margin:10px 0 30px 0}

