/* 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;
}

.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;
}
/* For mobile - shorter height and width */
.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.non-sticky {
  position: static;
}
.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: 25px;
  }
  .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}.green,.green *,.orange,.orange *,.pal-blue *,.pay-blue *,.pink,.pink *,.purple,.purple *{color:#fff}@font-face{font-family:pp-sans-big-light;src:local('pp-sans-big-light'),url(https://www.paypalobjects.com/digitalassets/c/paypal-ui/fonts/PayPalSansBig-Light.woff2) format("woff2"),url(https://www.paypalobjects.com/digitalassets/c/paypal-ui/fonts/PayPalSansBig-Light.woff) format("woff"),url(https://www.paypalobjects.com/digitalassets/c/paypal-ui/fonts/PayPalSansBig-Light.eot) format("embedded-opentype"),url(https://www.paypalobjects.com/digitalassets/c/paypal-ui/fonts/PayPalSansBig-Light.svg) format("svg")}@font-face{font-family:pp-sans-small-regular;src:local('pp-sans-small-regular'),url(https://www.paypalobjects.com/digitalassets/c/paypal-ui/fonts/PayPalSansSmall-Regular.woff2) format("woff2"),url(https://www.paypalobjects.com/digitalassets/c/paypal-ui/fonts/PayPalSansSmall-Regular.woff) format("woff"),url(https://www.paypalobjects.com/digitalassets/c/paypal-ui/fonts/PayPalSansSmall-Regular.eot) format("embedded-opentype"),url(https://www.paypalobjects.com/digitalassets/c/paypal-ui/fonts/PayPalSansSmall-Regular.svg) format("svg")}.pp-sans-big-bold{font-family:pp-sans-small-regular,Helvetica Neue,Arial,sans-serif;font-weight:700}.pp-sans-big-light{font-family:pp-sans-big-light,Helvetica Neue,Arial,sans-serif;font-weight:400}.pp-sans-big-medium{font-family:pp-sans-small-regular,Helvetica Neue,Arial,sans-serif;font-weight:700}.pp-sans-big-regular{font-family:pp-sans-small-regular,Helvetica Neue,Arial,sans-serif;font-weight:400}.pp-sans-small-bold{font-family:pp-sans-small-regular,Helvetica Neue,Arial,sans-serif;font-weight:700}.pp-sans-small-light{font-family:pp-sans-big-light,Helvetica Neue,Arial,sans-serif;font-weight:400}.pp-sans-small-medium{font-family:pp-sans-small-regular,Helvetica Neue,Arial,sans-serif;font-weight:700}.pp-sans-small-regular{font-family:pp-sans-small-regular,Helvetica Neue,Arial,sans-serif;font-weight:400}.pp-sans-small-thin{font-family:pp-sans-big-light,Helvetica Neue,Arial,sans-serif;font-weight:400}@font-face{font-family:DharmaGothicE-Regular;src: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.eot),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.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.woff) format('woff'),url(https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_1_0.eot),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.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.woff) format('woff'),url(https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_2_0.eot),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.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.woff) format('woff'),url(https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_3_0.eot),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.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.woff) format('woff'),url(https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_4_0.eot),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.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.woff) format('woff'),url(https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_5_0.eot),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.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.woff) format('woff'),url(https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_6_0.eot),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.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.woff) format('woff'),url(https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_7_0.eot),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.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.woff) format('woff'),url(https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_8_0.eot),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.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.woff) format('woff'),url(https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_9_0.eot),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.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.woff) format('woff'),url(https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_A_0.eot),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.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.woff) format('woff'),url(https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_B_0.eot),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.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.woff) format('woff'),url(https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_C_0.eot),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.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.woff) format('woff'),url(https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_D_0.eot),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.ttf) format('truetype')}@keyframes rotation{from{transform:rotate(0)}to{transform:rotate(359deg)}}@-webkit-keyframes rotation{from{-webkit-transform:rotate(0)}to{-webkit-transform:rotate(359deg)}}@-moz-keyframes rotation{from{-moz-transform:rotate(0)}to{-moz-transform:rotate(359deg)}}@-o-keyframes rotation{from{-o-transform:rotate(0)}to{-o-transform:rotate(359deg)}}.do-block.containerCentered a{text-decoration:none}.do-block.containerCentered .do-section{background:url(https://www.paypalobjects.com/digitalassets/c/website/marketing/latam/mx/shopping/logos/compras-diarias-v1.jpg) center center no-repeat;background-size:cover;height:200px}.do-block.containerCentered .do-section div.center_me{font-size:2.5em;line-height:1.25em;vertical-align:middle;padding:73px;color:#fff;font-weight:400}.do-block.containerCentered .do-section:hover{opacity:.8}.callout_panel{text-decoration:none;display:table;height:400px}.callout_panel h1{font-size:2.5em;line-height:1.25em;color:#fff;font-weight:300}.callout_panel div{vertical-align:middle;padding:30px;display:table-cell}.callout_panel:hover{opacity:.8;text-decoration:none}.callout_panel p{color:#fff;font-weight:400}.category{text-decoration:none;display:table;height:302px;background-size:cover;background-position:center center}.category div{font-size:2.5em;line-height:1.25em;vertical-align:middle;padding:30px;display:table-cell;color:#fff;font-weight:400}.category:hover{opacity:.8;text-decoration:none}.callout_panel div,.category div{padding:30px;vertical-align:middle}.sticky_nav_on{text-decoration:none;color:#009cde;cursor:default}.apps_wrap ul li{list-style-position:inside;list-style-type:disc}.apps_wrap .span4{margin-right:2%;margin-bottom:3.75%}.apps_wrap .span4 p{padding-top:0}.apps_wrap .span4 p:nth-of-type(2){display:none}.apps_wrap .span4:nth-child(3n){margin-right:0}.apps_wrap .span4 img{max-width:100px;padding-bottom:20px;display:block}.editorial-cell ul li{list-style-position:inside;list-style-type:disc}#shop-video{background:url(https://www.paypalobjects.com/webstatic/shopping_portal/hero/Video_ES.jpg) center center no-repeat;background-size:cover;height:400px}#shop-video .containerCentered>span{content:'';overflow:hidden;position:absolute;right:15px;bottom:15px;width:60px;height:60px;margin-left:-30px;margin-top:-30px;text-indent:-999em;border:2px solid #fff;border-radius:36px}#shop-video .containerCentered>span:after{content:'';overflow:hidden;position:absolute;width:0;height:0;top:50%;left:50%;margin-top:-12px;margin-left:-10px;border:24px solid transparent;border-width:12px 24px;border-left-color:#fff}#shop-video:hover{opacity:.8}.icon-play{display:inline-block;position:relative;width:32px;height:32px;color:#fff;text-indent:-999em;vertical-align:middle;margin-right:12px}.icon-play:after{content:'';overflow:hidden;position:absolute;top:9px;left:11px;width:0;height:0;border:14px solid transparent;border-width:7px 14px;border-left-color:#009cde}h1{font-weight:400}.off{opacity:0}.on{opacity:1}.loader{display:block;margin:2% auto;height:30px;width:30px;border-left:8px solid rgba(0,0,0,.2);border-right:8px solid rgba(0,0,0,.2);border-bottom:8px solid rgba(0,0,0,.2);border-top:8px solid #2180c0;border-radius:100%;-webkit-animation:rotation .7s infinite linear;-moz-animation:rotation .7s infinite linear;-o-animation:rotation .7s infinite linear;animation:rotation .7s infinite linear}.span12{float:left;width:100%}.span12 .pull-right{width:100%;margin:0 auto;text-align:center}.span12 .pull-right p{display:none}.span4{display:block;float:left;width:32%}.span6{display:block;float:left;width:49%}.main_content{opacity:0;float:right;width:74%}.newMerchants.main_content{opacity:0;float:none;width:100%}.sticky_left{opacity:0;float:left;width:25%}.sticky_left p{height:24px;cursor:pointer;text-decoration:none}.sticky_left p:hover{color:#009cde}.hero-bg{background-position:80% 0;background-size:cover}html[data-device-type=dedicated] .hero-bg .editorial-container{height:418px;line-height:418px}.parallax{height:240px}.pageHeadline{padding-bottom:15px;color:#fff}.heroBtn{width:215px}.hero_col{height:240px;line-height:240px;padding:0;max-width:900px}.center_me{margin-left:auto;margin-right:auto;text-align:center;float:none}.two_col{float:left;width:50%;display:table}.vert_spacing_med{padding:40px 0 0}.two_col_inner{display:table-cell;vertical-align:middle;height:255px}.two_col_inner img{vertical-align:middle;width:90%}.sticky-nav-global .links-section{width:100%}#sticky-nav .span12{width:100%;margin:0 auto}.sticky-nav-links{margin-left:45px}.home{margin:0}#jump-bar-select{margin:0}.callout_panel_wrap{margin-right:2%}.category_wrap{margin-right:2%}.controls{float:right}#category1{background-image:url(https://www.paypalobjects.com/webstatic/shopping_portal/category/Fashion_Plaid.jpg)}#category2{background-image:url(https://www.paypalobjects.com/webstatic/shopping_portal/category/Entertainment_Gaming.jpg)}#category3{background-image:url(https://www.paypalobjects.com/webstatic/shopping_portal/category/Travel_RV.jpg)}#category4{background-image:url(https://www.paypalobjects.com/webstatic/shopping_portal/category/Electronics_Cat.jpg)}#category4_pe{background-image:url(https://www.paypalobjects.com/webstatic/shopping_portal/category/Local_Peru.jpg)}#category4_cl{background-image:url(https://www.paypalobjects.com/webstatic/shopping_portal/category/Local_Chile.jpg)}.sm{height:139px}.sm_bottom{margin-bottom:24px}.sm_top{margin-top:24px}#callout_panel1{background-image:url(https://www.paypalobjects.com/webstatic/shopping_portal/category/PurchaseProtection_Lock.jpg);background-size:cover}#callout_panel2{background-image:url(https://www.paypalobjects.com/digitalassets/c/website/marketing/latam/mx/shopping/logos/frs-v1.jpg);background-size:cover}.no_bg{background-image:none;background:#f5f5f5}.cp_headline{color:#444;font-weight:300}.cp_para{color:#777}.callout_icon{max-width:70px}.sticky_right{float:left}.cat{border-bottom:1px solid #e5e5e5;float:left;padding:6% 0}.cat:first-child{padding-top:0}.cat:last-child{border-bottom:0 solid #e5e5e5;padding-bottom:0}.cat_img{float:left;width:48%;margin-right:4%}.cat_img img{vertical-align:middle}.cat_desc{float:left;width:48%}.cat_logos{float:left;width:100%}.cat_logos img{width:100%;padding:15px;vertical-align:middle;display:block;margin:0 auto;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #e5e5e5}.cat_logos img:hover{cursor:pointer;opacity:.6}.cat_logos .wrap{float:left;width:22.75%;margin-right:3%;margin-top:3%}.cat_logos .wrap:nth-child(4n){margin-right:0}.arrow{border-top:8px solid transparent;border-bottom:8px solid transparent;border-left:8px solid #009cde;width:10px;display:inline-block;vertical-align:middle;margin-top:-3px;transition:.1s ease opacity}.ebay_submit{margin:0;vertical-align:top;width:38%;float:left}form{margin:0}.ebay_input{height:40px;margin:0 2% 0 0;width:60%;float:left;background:url(https://www.paypalobjects.com/webstatic/shopping_portal/icon/search_icon_1x.png) 95% 50% no-repeat}.ebay_fs{background-position:50%;background-size:90%;background-image:url(https://www.paypalobjects.com/webstatic/shopping_portal/editorial/eBay_eShopex.png)}.ebay_search{background-position:50%;background-size:90%;background-image:url(https://www.paypalobjects.com/webstatic/shopping_portal/editorial/eBay_search_1x.png)}.ebay_wrap{float:left;border-bottom:1px solid #e5e5e5;padding-bottom:40px}.ebay_cat_wrap{max-width:84%;margin:0 auto}.shipping_deals{background-image:url(https://www.paypalobjects.com/webstatic/shopping_portal/hero/Shipping_Module.jpg)}.security{background-position:50% 50%;background-image:url(https://www.paypalobjects.com/webstatic/en_US/mktg/avatar/security_avatar.png)}.shopping{background-position:50% 50%;background-image:url(https://www.paypalobjects.com/webstatic/en_US/mktg/avatar/shopping_avatar.png)}.speed{background-position:50% 50%;background-image:url(https://www.paypalobjects.com/webstatic/en_US/mktg/avatar/convenience_avatar.png)}.ebay_fs_bg{background-color:#f5f5f5}.apps_subhead{padding-bottom:3.75%}.pipe{vertical-align:top;font-size:18px;padding-left:4px}.contentLink{display:inline-block}.dl_pad{padding-right:10px}.what_is_pp{padding:40px 0}.what_is_pp .panel-img{max-width:80px;display:block;margin:0 auto;margin-bottom:20px}.panel header{padding-bottom:54px}.signing_up .panel-img{max-width:300px;display:block;margin:0 auto;margin-bottom:20px}.vert_space{padding:40px 0}.btn-white{border:1px solid #009cde;color:#009cde;background-color:#fff}html[data-device-type=dedicated] .btn-white:hover{background-color:#fff;color:#0079ad}html[data-device-type=dedicated] .btn-white:focus{color:#009cde;text-decoration:underline}html[data-device-type=dedicated] .row-fluid .span10{width:78%}#pp-works-video{margin:0 auto 40px;display:block;padding:5px 25px 5px 5px;-webkit-box-sizing:inherit;-moz-box-sizing:inherit;box-sizing:inherit;width:100%;max-width:269px;font-size:14px}.faq_panel_wrap div img{margin-bottom:20px;vertical-align:middle;width:100%;max-width:200px}.txtOverVideo a{margin-bottom:20px}.answers{padding:20px}#faq{padding:40px 0}@media screen and (max-device-width:1024px){.category{height:250px}.sm{height:113px}#shop-video,#shop-video .editorial-container{height:250px}.security,.shopping,.speed{background-size:70%}.faq_panel_wrap .container4d2p1m .span4{margin-top:0}.faq_panel_wrap .container4d2p1m .span4 p{text-align:left;width:100%}html[data-device-type=mobile] .main_content,html[data-device-type=mobile] .span4,html[data-device-type=mobile] .span6{width:100%}html[data-device-type=mobile] #faq,html[data-device-type=mobile] .apps_wrap .span4:first-child{border-top:1px solid #e5e5e5}html[data-device-type=mobile] .hero_col{height:inherit;line-height:inherit}html[data-device-type=mobile] .hero_col .editorial-cell{padding-top:20px;padding-bottom:10px}html[data-device-type=mobile] .hero-bg{background-position:62% 0}html[data-device-type=mobile] .hero-bg p{color:#fff}html[data-device-type=mobile] .hero-bg .editorial-cell{padding-top:20px}html[data-device-type=mobile] .vert_spacing_med{padding:3.75% 0 0}html[data-device-type=mobile] .category_wrap:first-child{margin-top:0}html[data-device-type=mobile] .sm{height:250px}html[data-device-type=mobile] .span6{margin:0}html[data-device-type=mobile] .span4{margin:3.75% 0 0}html[data-device-type=mobile] .sm_bottom,html[data-device-type=mobile] .sm_top:last-child,html[data-device-type=mobile] .span4:last-child{margin-bottom:3.75%}html[data-device-type=mobile] .sm_top{margin-top:3.75%}html[data-device-type=mobile] .callout_panel{height:inherit;min-height:250px}html[data-device-type=mobile] .callout_panel div{padding:35px 15px 15px 15px}html[data-device-type=mobile] .ebay_cat_wrap,html[data-device-type=mobile] .ebay_wrap,html[data-device-type=mobile] .main_content{padding-bottom:3.75%}html[data-device-type=mobile] .sticky_left{display:none}html[data-device-type=mobile] .cat_logos .wrap{width:48.125%;margin-right:3.75%;margin-top:3.75%}html[data-device-type=mobile] .cat_logos .wrap:nth-child(4n){margin-right:0}html[data-device-type=mobile] .cat_logos .wrap:nth-child(3n){margin-right:3.75%}html[data-device-type=mobile] .apps_wrap .span4:nth-child(3n),html[data-device-type=mobile] .cat_logos .wrap:nth-child(2n){margin-right:0}html[data-device-type=mobile] .two_col{width:100%;float:left;display:table}html[data-device-type=mobile] .two_col_inner{display:block;height:inherit}html[data-device-type=mobile] .ebay_img_wrap{display:none}html[data-device-type=mobile] .apps_wrap .span4{width:100%;margin-top:0;border-bottom:1px solid #e5e5e5}html[data-device-type=mobile] .apps_wrap .span4:nth-child(2n){margin-top:0;width:100%;margin-right:0}html[data-device-type=mobile] .apps_wrap .span4:last-child{border-bottom:0 solid #e5e5e5;margin-bottom:0}html[data-device-type=mobile] .apps_wrap .span4 img{padding-top:25px}html[data-device-type=mobile] .vert_space .container4d2p1m .span4 p{width:100%;margin:0 auto;text-align:left}html[data-device-type=mobile] #pp-works-video{margin-bottom:3.75%}html[data-device-type=mobile] .vert_space{padding:3.75% 0 0}html[data-device-type=mobile] .panel header{padding-bottom:3.75%}html[data-device-type=mobile] .faq_panel_wrap .container4d2p1m .span4{margin-top:0}html[data-device-type=mobile] #faq{padding:3.75% 0}html[data-device-type=mobile] #faq .faq h2{padding-bottom:0}html[data-device-type=mobile] .pipe{padding:0 10px}html[data-device-type=mobile] .more-info-des{position:absolute;top:10px;left:10px;height:230px;overflow-x:auto}html[data-device-type=mobile] .more-info-des p{min-height:initial}html[data-device-type=mobile] .more-info-des a.more-info-close{position:fixed;right:40px}}@media screen and (max-device-width:1024px) and screen and (max-device-width:991px){.span4{width:49%}.span4:last-child{width:100%;margin-top:24px}.category_wrap:nth-child(2){margin:0}.cat_logos .wrap{width:31.333333%;margin-right:3%;margin-top:3%}.cat_logos .wrap:nth-child(4n){margin-right:3%}.cat_logos .wrap:nth-child(3n){margin-right:0}.ebay_input,.ebay_submit{width:100%;margin-right:0}.ebay_submit{margin-top:3.75%}.apps_wrap .span4:nth-child(3n){margin-right:2%}.apps_wrap .span4:nth-child(2n){margin-top:0;width:49%;margin-right:0}.vert_space .container4d2p1m .span4{width:100%;margin-left:0;padding:0 0 3.75%}.vert_space .container4d2p1m .span4:last-child{padding-bottom:0}.vert_space .container4d2p1m .span4 p{width:66.666666%;margin:0 auto;text-align:center}.faq_panel_wrap .container4d2p1m .span4{margin-top:0}.faq_panel_wrap .container4d2p1m .span4 p{text-align:left;width:100%}.play img{height:auto}}@media screen and (max-device-width:1024px) and screen and (max-device-width:768px){.sm_top,.span4:last-child{margin-top:16px}.cat_desc,.cat_img{width:100%}.sm_bottom{margin-bottom:16px}.sm{height:117px}.cat_img{margin-right:0}.cat_img img{vertical-align:middle;width:100%}.cat_desc h3{padding-top:20px}.ebay_cat_wrap{max-width:100%}.faq_panel_wrap .container4d2p1m .span4{margin-top:0}}.hero-bg.march{background-image:url(https://www.paypalobjects.com/digitalassets/c/website/marketing/latam/mx/shopping/banners/Background_MX_March_Shopping_Site_Banner.jpg);background-position:center center;background-size:cover}.hero-bg.march h1{padding-bottom:10px;font-family:DharmaGothicE-BoldItalic,"Helvetica Neue",Arial,sans-serif;font-size:56px;font-size:4rem;line-height:1;text-transform:uppercase}.hero-bg.march p.contentPara{color:#1a1a1a}.hero-bg.march a.heroBtn{width:40%;margin-top:20px}.hero-bg.march p.hatch span.telcelLogo{background:url(https://www.paypalobjects.com/digitalassets/c/website/marketing/latam/mx/shopping/banners/Telcel_Pay.png) no-repeat;background-size:150px 53px;display:inline-block;width:150px;height:53px;padding:10px 0;margin-left:30px;vertical-align:middle}.hero-bg.march p.hatch span.GoogleLogo{background:url(https://www.paypalobjects.com/digitalassets/c/website/marketing/latam/mx/home/google-play-badge-new.png) no-repeat;display:inline-block;background-size:100%;width:150px;height:50px;padding:10px 0;vertical-align:middle}html[data-device-type=portable] .hero-bg.march{background-position:80% 0}html[data-device-type=portable] .hero-bg.march h1{font-size:42px;font-size:3rem}html[data-device-type=portable] .hero-bg.march .contentPara{font-size:18px;font-size:1.28571429rem}html[data-device-type=mobile] .hero-bg.march{background-position:4% 0;min-height:490px}html[data-device-type=mobile] .hero-bg.march .editorial-cell{padding-top:20px}html[data-device-type=mobile] .hero-bg.march h1{font-size:40px;font-size:2.85714286rem}html[data-device-type=mobile] .hero-bg.march a.heroBtn{width:auto}html[data-device-type=mobile] .hero-bg.march p.hatch span.GoogleLogo{width:125px}html[data-device-type=mobile] .hero-bg.march p.hatch span.telcelLogo{margin-left:14px}

.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-light";src:local('pp-sans-big-light'),url("https://www.paypalobjects.com/digitalassets/c/paypal-ui/fonts/PayPalSansBig-Light.woff2") format("woff2"),url("https://www.paypalobjects.com/digitalassets/c/paypal-ui/fonts/PayPalSansBig-Light.woff") format("woff"),url("https://www.paypalobjects.com/digitalassets/c/paypal-ui/fonts/PayPalSansBig-Light.eot") format("embedded-opentype"),url("https://www.paypalobjects.com/digitalassets/c/paypal-ui/fonts/PayPalSansBig-Light.svg") format("svg")}@font-face{font-family:"pp-sans-small-regular";src:local('pp-sans-small-regular'),url("https://www.paypalobjects.com/digitalassets/c/paypal-ui/fonts/PayPalSansSmall-Regular.woff2") format("woff2"),url("https://www.paypalobjects.com/digitalassets/c/paypal-ui/fonts/PayPalSansSmall-Regular.woff") format("woff"),url("https://www.paypalobjects.com/digitalassets/c/paypal-ui/fonts/PayPalSansSmall-Regular.eot") format("embedded-opentype"),url("https://www.paypalobjects.com/digitalassets/c/paypal-ui/fonts/PayPalSansSmall-Regular.svg") format("svg")}.pp-sans-big-bold{font-family:"pp-sans-small-regular",Helvetica Neue,Arial,sans-serif;font-weight:700}.pp-sans-big-light{font-family:"pp-sans-big-light",Helvetica Neue,Arial,sans-serif;font-weight:normal}.pp-sans-big-medium{font-family:"pp-sans-small-regular",Helvetica Neue,Arial,sans-serif;font-weight:700}.pp-sans-big-regular{font-family:"pp-sans-small-regular",Helvetica Neue,Arial,sans-serif;font-weight:normal}.pp-sans-small-bold{font-family:"pp-sans-small-regular",Helvetica Neue,Arial,sans-serif;font-weight:700}.pp-sans-small-light{font-family:"pp-sans-big-light",Helvetica Neue,Arial,sans-serif;font-weight:normal}.pp-sans-small-medium{font-family:"pp-sans-small-regular",Helvetica Neue,Arial,sans-serif;font-weight:700}.pp-sans-small-regular{font-family:"pp-sans-small-regular",Helvetica Neue,Arial,sans-serif;font-weight:normal}.pp-sans-small-thin{font-family:"pp-sans-big-light",Helvetica Neue,Arial,sans-serif;font-weight:normal}@font-face{font-family:'DharmaGothicE-Regular';src: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.eot'),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.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.woff') format('woff'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_1_0.eot'),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.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.woff') format('woff'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_2_0.eot'),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.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.woff') format('woff'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_3_0.eot'),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.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.woff') format('woff'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_4_0.eot'),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.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.woff') format('woff'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_5_0.eot'),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.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.woff') format('woff'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_6_0.eot'),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.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.woff') format('woff'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_7_0.eot'),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.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.woff') format('woff'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_8_0.eot'),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.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.woff') format('woff'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_9_0.eot'),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.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.woff') format('woff'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_A_0.eot'),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.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.woff') format('woff'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_B_0.eot'),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.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.woff') format('woff'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_C_0.eot'),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.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.woff') format('woff'),url('https://www.paypalobjects.com/webstatic/mktg/2014design/font/Dharma-Gothic-Expanded/webfonts/2F7DFA_D_0.eot'),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.ttf') format('truetype')}.hero-bg{background-size:cover;background-repeat:no-repeat}html[data-device-type="dedicated"] .hero-bg .editorial-container{line-height:418px;height:418px}html[data-device-type="portable"] .hero-bg .editorial-container{height:518px;line-height:518px}html[data-device-type="mobile"] .hero-bg{background-position:62% 0}html[data-device-type="mobile"] .hero-bg p{color:#fff}html[data-device-type="mobile"] .hero-bg .editorial-cell{padding-top:20px}html[data-device-type="mobile"] .hero-bg .heroBtn{width:auto}html[data-device-type="dedicated"] .hero-default.row-fluid.hero-bg{background-image:url("https://www.paypalobjects.com/digitalassets/c/website/marketing/latam/mx/shop/home/shopping-site-banner-D.jpg");background-position:center center}html[data-device-type="mobile"] .hero-default.row-fluid.hero-bg{background-image:url("https://www.paypalobjects.com/digitalassets/c/website/marketing/latam/mx/shop/home/shopping-site-banner-m.jpg");background-position:60% center}html[data-device-type="portable"] .hero-default.row-fluid.hero-bg{background-image:url("https://www.paypalobjects.com/digitalassets/c/website/marketing/latam/mx/shop/home/shopping-site-banner-t.jpg");background-position:center center}.hero-bg.hero-default{background-size:cover}.hero-bg.hero-default h1{font-size:38px;font-size:2.71428571rem;line-height:1.25em;padding-bottom:20px;font-weight:700;padding-top:40px}.hero-bg.hero-default p{font-size:28px;font-size:2rem}.hero-bg.hero-default p .hatch{padding-top:120px;font-size:18px}.hero-bg.hero-default span.block{display:block}html[data-device-type=mobile] .hero-bg.hero-default{background-position:75% 0}html[data-device-type=mobile] .hero-bg.hero-default h1{color:#fff}html[data-device-type="dedicated"] .buen-fin-hero.row-fluid.hero-bg{background-image:url("https://www.paypalobjects.com/digitalassets/c/website/marketing/latam/mx/shop/hero/IMG-desktop.jpg");background-position:center center}html[data-device-type="mobile"] .buen-fin-hero.row-fluid.hero-bg{background-image:url("https://www.paypalobjects.com/digitalassets/c/website/marketing/latam/mx/shop/hero/IMG-mobile.jpg");background-position:left center}html[data-device-type="portable"] .buen-fin-hero.row-fluid.hero-bg{background-image:url("https://www.paypalobjects.com/digitalassets/c/website/marketing/latam/mx/shop/hero/IMG-portable.jpg");background-position:left center}.buen-fin-hero.row-fluid.hero-bg .editorial-container .editorial-cell .pageHeadline{font-family:"DharmaGothicE-RegularItalic",Arial,sans-serif;text-transform:uppercase;line-height:1.4em;margin-bottom:20px;padding-bottom:0}.buen-fin-hero.row-fluid.hero-bg .editorial-container .editorial-cell .pageHeadline span{display:block}.buen-fin-hero.row-fluid.hero-bg .editorial-container .editorial-cell .pageHeadline span.sub-head1{font-size:55px}.buen-fin-hero.row-fluid.hero-bg .editorial-container .editorial-cell .pageHeadline span.sub-head2{font-size:70px}.buen-fin-hero.row-fluid.hero-bg .editorial-container .editorial-cell .contentPara span{display:block}.buen-fin-hero.row-fluid.hero-bg .editorial-container .editorial-cell a{width:30%}.buen-fin-hero.row-fluid.hero-bg .editorial-container .editorial-cell .hatch .buen-fin-logo{background:url("https://www.paypalobjects.com/digitalassets/c/website/marketing/latam/mx/shop/hero/Buen_Fin_2018_LOGO.png");width:150px;height:150px;position:absolute;left:250px;bottom:90px}html[data-device-type="portable"] .buen-fin-hero.row-fluid.hero-bg .editorial-container .editorial-cell a{width:40%}html[data-device-type="portable"] .buen-fin-hero.row-fluid.hero-bg .editorial-container .editorial-cell .hatch .buen-fin-logo{left:15%;bottom:75px;background-size:75%;background-repeat:no-repeat}html[data-device-type="mobile"] .buen-fin-hero.row-fluid.hero-bg{height:600px}html[data-device-type="mobile"] .buen-fin-hero.row-fluid.hero-bg .editorial-container .editorial-cell .pageHeadline{color:#fff}html[data-device-type="mobile"] .buen-fin-hero.row-fluid.hero-bg .editorial-container .editorial-cell .pageHeadline .sub-head1{font-size:40px}html[data-device-type="mobile"] .buen-fin-hero.row-fluid.hero-bg .editorial-container .editorial-cell .pageHeadline .sub-head1{font-size:50px}html[data-device-type="mobile"] .buen-fin-hero.row-fluid.hero-bg .editorial-container .editorial-cell .contentPara span{display:inline}html[data-device-type="mobile"] .buen-fin-hero.row-fluid.hero-bg .editorial-container .editorial-cell a{width:100%}html[data-device-type="mobile"] .buen-fin-hero.row-fluid.hero-bg .editorial-container .editorial-cell .hatch .buen-fin-logo{background:url("https://www.paypalobjects.com/digitalassets/c/website/marketing/latam/mx/shop/hero/Buen_Fin_2018_LOGO.png");background-size:75%;background-repeat:no-repeat;position:absolute;left:130px;bottom:-25px}@media (orientation:landscape){html[data-device-type="mobile"] .buen-fin-hero.row-fluid.hero-bg{height:500px}html[data-device-type="mobile"] .buen-fin-hero.row-fluid.hero-bg .editorial-container .editorial-cell a{width:40%;margin:auto}html[data-device-type="mobile"] .buen-fin-hero.row-fluid.hero-bg .editorial-container .editorial-cell .contentPara span{display:block}html[data-device-type="mobile"] .buen-fin-hero.row-fluid.hero-bg .editorial-container .editorial-cell .hatch .buen-fin-logo{left:275px;bottom:-25px}}@media (orientation:landscape){html[data-device-type="portable"] .row-fluid.hero-bg{min-height:675px}}html[data-device-type="dedicated"] .liverpool-Night-Sale{background:url('https://www.paypalobjects.com/digitalassets/c/website/marketing/latam/mx/shop/hero/Liverpool-desktop.jpg');background-position:right;background-size:cover;background-repeat:no-repeat}html[data-device-type="dedicated"] .liverpool-Night-Sale .span8{width:85%}html[data-device-type="portable"] .liverpool-Night-Sale{background:url('https://www.paypalobjects.com/digitalassets/c/website/marketing/latam/mx/shop/hero/Liverpool-portable.jpg');background-position:right;background-size:cover;background-repeat:no-repeat}html[data-device-type="portable"] .liverpool-Night-Sale .span8{width:68%}html[data-device-type="portable"] .row-fluid.hero-bg{min-height:600px}html[data-device-type="mobile"] .liverpool-Night-Sale{background:url('https://www.paypalobjects.com/digitalassets/c/website/marketing/latam/mx/shop/hero/Liverpool-mobile.jpg');background-position:center;background-size:cover;background-repeat:no-repeat}html[data-device-type="mobile"] .liverpool-Night-Sale .pageHeadline{color:#fff}@media (orientation:landscape){html[data-device-type="mobile"] .liverpool-Night-Sale .heroBtn{width:215px}}@media (max-width:768px) and (orientation:portrait){html[data-device-type=portable] .liverpool-Night-Sale .span8{width:68.666%}}html[data-device-type="dedicated"] .payPalFestShoppingSite{background:url('https://www.paypalobjects.com/digitalassets/c/website/marketing/latam/mx/shop/hero/PP_Banner_shopping_site-desktop.jpg');background-position:center center;background-size:cover;background-repeat:no-repeat}html[data-device-type="dedicated"] .payPalFestShoppingSite .span8{width:100%;text-align:center;height:490px}html[data-device-type="dedicated"] .payPalFestShoppingSite .span8 .editorial-cell .pageHeadline .pp-fest-logo-portable,html[data-device-type="dedicated"] .payPalFestShoppingSite .span8 .editorial-cell .pageHeadline .pp-fest-logo-mobile{display:none}html[data-device-type="dedicated"] .payPalFestShoppingSite .span8 .editorial-cell .pageHeadline img{padding-bottom:10px}html[data-device-type="portable"] .payPalFestShoppingSite{background:url('https://www.paypalobjects.com/digitalassets/c/website/marketing/latam/mx/shop/hero/PP_Banner_shopping_site-portable.jpg');background-position:center center;background-size:cover;background-repeat:no-repeat}html[data-device-type="portable"] .payPalFestShoppingSite .span8{width:100%;text-align:center}html[data-device-type="portable"] .payPalFestShoppingSite .span8 .editorial-cell .pageHeadline .pp-fest-logo-desktop,html[data-device-type="portable"] .payPalFestShoppingSite .span8 .editorial-cell .pageHeadline .pp-fest-logo-mobile{display:none}html[data-device-type="portable"] .payPalFestShoppingSite .span8 .editorial-cell .pageHeadline img{padding-bottom:10px}html[data-device-type="mobile"] .payPalFestShoppingSite{background:url('https://www.paypalobjects.com/digitalassets/c/website/marketing/latam/mx/shop/hero/PP_Banner_shopping_site-mobile.jpg');background-size:cover;background-position:center center;background-repeat:no-repeat}html[data-device-type="mobile"] .payPalFestShoppingSite .span8{width:100%;text-align:center}html[data-device-type="mobile"] .payPalFestShoppingSite .span8 .editorial-cell .pageHeadline{color:#fff}html[data-device-type="mobile"] .payPalFestShoppingSite .span8 .editorial-cell .pageHeadline .pp-fest-logo-portable,html[data-device-type="mobile"] .payPalFestShoppingSite .span8 .editorial-cell .pageHeadline .pp-fest-logo-desktop{display:none}html[data-device-type="mobile"] .payPalFestShoppingSite .span8 .editorial-cell .pageHeadline img{padding-bottom:10px}html[data-device-type="dedicated"] .hotSale.hero-bg{background:url(https://www.paypalobjects.com/digitalassets/c/website/marketing/latam/mx/shop/home/PP-hotsale.jpg) no-repeat;background-position:top;background-size:cover;padding-bottom:20px}html[data-device-type="dedicated"] .hotSale.hero-bg .editorial-cell{padding-top:10px;text-align:center}html[data-device-type="dedicated"] .hotSale.hero-bg .editorial-cell h1 .header-logo{width:96%;margin:0;display:block;padding-bottom:10px}html[data-device-type="dedicated"] .hotSale.hero-bg .editorial-cell h1 .header-logo .sale-logo{width:125px;height:50px;margin-top:15px;margin-right:25px;display:inline-block;vertical-align:top;background:url('https://www.paypalobjects.com/digitalassets/c/website/marketing/latam/mx/shop/hero/sale-attachment.png') no-repeat;background-position:top;background-size:cover}html[data-device-type="dedicated"] .hotSale.hero-bg .editorial-cell h1 .header-logo .sale-logo::after{display:block;content:" ";width:3px;background:white;color:red;height:70px;margin:0 150px}html[data-device-type="dedicated"] .hotSale.hero-bg .editorial-cell h1 .header-logo .hot-logo{width:75px;height:75px;margin-top:5px;margin-left:20px;display:inline-block;vertical-align:top;background:url('https://www.paypalobjects.com/digitalassets/c/website/marketing/latam/mx/shop/hero/Hot-attachment.png') no-repeat;background-position:top;background-size:cover}html[data-device-type="dedicated"] .hotSale.hero-bg .editorial-cell h1.x-large{font-family:DharmaGothicE-RegularItalic,Helvetica Neue,Arial,sans-serif;color:#fff;font-size:60px;font-size:4.28571429rem;text-transform:uppercase;line-height:65px}html[data-device-type="dedicated"] .hotSale.hero-bg .editorial-cell .contentPara{padding-top:10px}html[data-device-type="dedicated"] .hotSale.hero-bg .editorial-cell .btn.heroBtn{margin-top:10px}html[data-device-type="dedicated"] .hotSale.hero-bg .editorial-cell .btn.heroBtn.center_me.pypl-btn{background:transparent;border:1px solid #fff;width:320px}html[data-device-type="dedicated"] .hotSale.hero-bg .editorial-cell .hatch{padding:20px 0}html[data-device-type="portable"] .hotSale{padding-top:25px}html[data-device-type="portable"] .hotSale.hero-bg{min-height:450px;background:url(https://www.paypalobjects.com/digitalassets/c/website/marketing/latam/mx/shop/hero/PP-hotsale-t.jpg) no-repeat;background-position:center;background-size:100%}html[data-device-type="portable"] .hotSale.hero-bg .editorial-container{width:100%;height:325px;line-height:375px}html[data-device-type="portable"] .hotSale.hero-bg .editorial-container .editorial-cell{width:100%;margin:0 auto;text-align:center}html[data-device-type="portable"] .hotSale.hero-bg .editorial-container .editorial-cell h1 .header-logo{width:96%;margin:0;display:block;padding-bottom:10px}html[data-device-type="portable"] .hotSale.hero-bg .editorial-container .editorial-cell h1 .header-logo .sale-logo{width:100px;height:40px;margin-top:15px;margin-right:25px;display:inline-block;vertical-align:top;background:url('https://www.paypalobjects.com/digitalassets/c/website/marketing/latam/mx/shop/hero/sale-attachment.png') no-repeat;background-position:top;background-size:cover}html[data-device-type="portable"] .hotSale.hero-bg .editorial-container .editorial-cell h1 .header-logo .sale-logo::after{display:block;content:" ";width:3px;background:white;color:red;height:55px;margin:0 120px}html[data-device-type="portable"] .hotSale.hero-bg .editorial-container .editorial-cell h1 .header-logo .hot-logo{width:60px;height:60px;margin-top:5px;margin-left:20px;display:inline-block;vertical-align:top;background:url('https://www.paypalobjects.com/digitalassets/c/website/marketing/latam/mx/shop/hero/Hot-attachment.png') no-repeat;background-position:top;background-size:cover}html[data-device-type="portable"] .hotSale.hero-bg .editorial-container .editorial-cell h1.x-large{font-family:DharmaGothicE-RegularItalic,Helvetica Neue,Arial,sans-serif;color:#fff;font-size:36px;font-size:2.57142857rem;text-transform:uppercase;line-height:44px}html[data-device-type="portable"] .hotSale.hero-bg .editorial-container .editorial-cell .contentPara{font-size:18px;font-size:1.28571429rem;padding-top:10px}html[data-device-type="portable"] .hotSale.hero-bg .editorial-container .editorial-cell .btn.heroBtn{margin-top:10px}html[data-device-type="portable"] .hotSale.hero-bg .editorial-container .editorial-cell .btn.heroBtn.center_me.pypl-btn{background:transparent;border:1px solid #fff;width:225px}html[data-device-type="portable"] .hotSale.hero-bg .editorial-container .editorial-cell .hatch{padding:20px 0 0}html[data-device-type="portable"] .hotSale bg{background:url(https://www.paypalobjects.com/digitalassets/c/website/marketing/na/us/home/hero-small-business.jpg) no-repeat;background-position:top}html[data-device-type="portable"] .hotSale p{color:#fff}html[data-device-type="portable"] .hotSale h1.x-large{font-size:38px;font-size:2.71428571rem}html[data-device-type="mobile"] .hotSale.hero-bg{background:url(https://www.paypalobjects.com/digitalassets/c/website/marketing/latam/mx/shop/hero/PP-hotsale-m.jpg) no-repeat;background-position:top;background-size:cover}html[data-device-type="mobile"] .hotSale.hero-bg .editorial-cell{text-align:center}html[data-device-type="mobile"] .hotSale.hero-bg .editorial-cell h1 .header-logo{width:96%;margin:0;display:block;padding-bottom:10px}html[data-device-type="mobile"] .hotSale.hero-bg .editorial-cell h1 .header-logo .sale-logo{width:100px;height:40px;margin-top:15px;margin-right:25px;display:inline-block;vertical-align:top;background:url('https://www.paypalobjects.com/digitalassets/c/website/marketing/latam/mx/shop/hero/sale-attachment.png') no-repeat;background-position:top;background-size:cover}html[data-device-type="mobile"] .hotSale.hero-bg .editorial-cell h1 .header-logo .sale-logo::after{display:block;content:" ";width:3px;background:white;color:red;height:55px;margin:0 120px}html[data-device-type="mobile"] .hotSale.hero-bg .editorial-cell h1 .header-logo .hot-logo{width:60px;height:60px;margin-top:5px;margin-left:20px;display:inline-block;vertical-align:top;background:url('https://www.paypalobjects.com/digitalassets/c/website/marketing/latam/mx/shop/hero/Hot-attachment.png') no-repeat;background-position:top;background-size:cover}html[data-device-type="mobile"] .hotSale.hero-bg .editorial-cell h1.x-large{color:#fff;font-size:42px;font-size:3rem;text-align:center;font-family:DharmaGothicE-RegularItalic,Helvetica Neue,Arial,sans-serif}html[data-device-type="mobile"] .hotSale.hero-bg .editorial-cell .contentPara{padding-top:10px;text-align:center;font-size:18px;font-size:1.28571429rem;color:#fff}html[data-device-type="mobile"] .hotSale.hero-bg .editorial-cell .btn.heroBtn{margin-top:10px}html[data-device-type="mobile"] .hotSale.hero-bg .editorial-cell .btn.heroBtn.center_me.pypl-btn{background:transparent;border:1px solid #fff}html[data-device-type="mobile"] .hotSale.hero-bg .editorial-cell .hatch{padding:20px 0}.hotSale .span8.editorial-container{padding-right:0;width:100%}.hotSale .span8.editorial-container a.btn.heroBtn.center_me.pypl-btn{max-width:320px;margin:10px auto 0}.ppHolidayCampaign .heroBtn{background:#ffb800;color:#002c8b;padding:5px 30px 10px;font-size:25px;font-size:1.78571429rem;font-family:"DharmaGothicE-RegularItalic",Arial,sans-serif;width:215px}.editorial-cell .pageHeadline{font-family:"DharmaGothicE-RegularItalic",Arial,sans-serif;font-size:55px;font-size:3.92857143rem;padding-bottom:30px}html[data-device-type="dedicated"] .ppHolidayCampaign{background:url('https://www.paypalobjects.com/marketing/web/mx/shop/PP_Holidays_Desktop.jpg');background-position:right;background-size:cover;background-repeat:no-repeat}html[data-device-type="dedicated"] .ppHolidayCampaign .span8{width:85%}html[data-device-type="dedicated"] .ppHolidayCampaign .heroBtn:hover{background:#ffb800}html[data-device-type="portable"] .ppHolidayCampaign{background:linear-gradient(0deg, rgba(0,0,0,0.45) 2%, rgba(0,0,0,0) 100%),url(https://www.paypalobjects.com/marketing/web/mx/shop/PP_Holidays_portable.jpg);background-position:right;background-size:cover;background-repeat:no-repeat}html[data-device-type="portable"] .ppHolidayCampaign .span8{width:68%}html[data-device-type="portable"] .ppHolidayCampaign .heroBtn:hover{background:#ffb800}html[data-device-type="portable"] .row-fluid.hero-bg{min-height:600px}html[data-device-type="mobile"] .ppHolidayCampaign{background:linear-gradient(0deg, rgba(0,0,0,0.45) 2%, rgba(0,0,0,0) 100%),url(https://www.paypalobjects.com/marketing/web/mx/shop/PP_Holidays_mobile.jpg);background-position:center;background-size:cover;background-repeat:no-repeat}html[data-device-type="mobile"] .ppHolidayCampaign .pageHeadline{color:#fff}html[data-device-type="mobile"] .ppHolidayCampaign .heroBtn:hover{background:#ffb800}@media (orientation:landscape){html[data-device-type="mobile"] .ppHolidayCampaign .heroBtn{width:215px}}@media (max-width:768px) and (orientation:portrait){html[data-device-type=portable] .ppHolidayCampaign .span8{width:68.666%}}.ppGivingTuesday{background-color:#578af9;background-image:url("https://www.paypalobjects.com/marketing/web/au/where-to-shop-with-paypal/giving-tues-background-tile.jpg");background-size:cover;background-position:73% center}.ppGivingTuesday .hero-giving-tues-image{width:489px;height:361px;top:30px;bottom:41px;right:30px;position:absolute;background-size:cover;background-image:url("https://www.paypalobjects.com/marketing/web/au/where-to-shop-with-paypal/giving-tues-image-stars.jpg");background-position:right center;background-repeat:no-repeat}.ppGivingTuesday .hero-giving-tues-image:after{content:"";position:absolute;display:block;background-size:100% auto;background-repeat:no-repeat}.ppGivingTuesday .giving-tues-top-tile{display:block;position:absolute;top:0;left:56px;right:56px;height:40px;background-image:url("https://www.paypalobjects.com/marketing/web/au/where-to-shop-with-paypal/giving-tues-top-tiling.jpg");background-repeat:repeat-x}.ppGivingTuesday .giving-tues-bottom-tile{display:block;position:absolute;bottom:0;left:56px;right:56px;height:41px;background-image:url("https://www.paypalobjects.com/marketing/web/au/where-to-shop-with-paypal/giving-tues-bottom-tiling.jpg");background-repeat:repeat-x}.ppGivingTuesday .giving-tues-right-tile{display:block;position:absolute;top:40px;bottom:41px;right:0;width:56px;background-image:url("https://www.paypalobjects.com/marketing/web/au/where-to-shop-with-paypal/giving-tues-right-tile.jpg");background-repeat:repeat-y}.ppGivingTuesday .giving-tues-left-tile{display:block;position:absolute;top:40px;bottom:41px;left:0;width:56px;background-image:url("https://www.paypalobjects.com/marketing/web/au/where-to-shop-with-paypal/giving-tues-left-tile.jpg");background-repeat:repeat-y}.ppGivingTuesday .giving-tues-bottom-left,.ppGivingTuesday .giving-tues-bottom-right,.ppGivingTuesday .giving-tues-top-left,.ppGivingTuesday .giving-tues-top-right{display:block;position:absolute;background:url('https://www.paypalobjects.com/marketing/web/au/where-to-shop-with-paypal/give-tues-corner-sprite.png') no-repeat;overflow:hidden;text-indent:-9999px;text-align:left}.ppGivingTuesday .giving-tues-bottom-left{background-position:-10px 0;width:56px;height:41px;bottom:0;left:0}.ppGivingTuesday .giving-tues-bottom-right{background-position:-76px 0;width:56px;height:41px;bottom:0;right:0}.ppGivingTuesday .giving-tues-top-left{background-position:-10px -51px;width:56px;height:40px;top:0;left:0}.ppGivingTuesday .giving-tues-top-right{background-position:-76px -51px;width:56px;height:40px;top:0;right:0}@media (min-width:1024px){html[data-device-type="dedicated"] .ppGivingTuesday .containerCentered,html[data-device-type="portable"] .ppGivingTuesday .containerCentered{position:relative;z-index:2}html[data-device-type="portable"] .row-fluid.hero-bg{min-height:500px}html[data-device-type="portable"] .ppGivingTuesday{background-position:75% center}html[data-device-type="portable"] .ppGivingTuesday .containerCentered{position:relative;width:100%;height:325px}html[data-device-type="portable"] .ppGivingTuesday .containerCentered .editorial-container{line-height:375px;height:325px}html[data-device-type="portable"] .ppGivingTuesday .containerCentered .editorial-container .editorial-cell{padding-left:33px}html[data-device-type="portable"] .ppGivingTuesday .hero-giving-tues-image{width:352px;height:260px}}@media (min-width:1024px) and (max-width:1023px){html[data-device-type="portable"] .ppGivingTuesday .containerCentered{position:relative}html[data-device-type="portable"] .ppGivingTuesday .containerCentered:after{position:absolute;right:80px}html[data-device-type="portable"] .ppGivingTuesday .hero-giving-tues-image{width:271px;height:200px;top:120px;bottom:41px;right:16px}}@media (max-width:1023px){html[data-device-type="portable"] header[role=banner].pp-header+#main>section:not(.hero-pop-out):first-of-type,html[data-device-type="mobile"] header[role=banner].pp-header+#main>section:not(.hero-pop-out):first-of-type{padding-top:0}html[data-device-type="portable"] .ppGivingTuesday,html[data-device-type="mobile"] .ppGivingTuesday{padding-top:0;background:none}html[data-device-type="portable"] .ppGivingTuesday .containerCentered,html[data-device-type="mobile"] .ppGivingTuesday .containerCentered{background-image:url("https://www.paypalobjects.com/marketing/web/au/where-to-shop-with-paypal/giving-tues-image-stars-bg-mobile.jpg");background-size:cover;background-position:center bottom;height:402px}html[data-device-type="portable"] .ppGivingTuesday .containerCentered .editorial-container,html[data-device-type="mobile"] .ppGivingTuesday .containerCentered .editorial-container{width:100%;margin:auto;text-align:center;line-height:325px;height:325px}html[data-device-type="portable"] .ppGivingTuesday .containerCentered .editorial-container .editorial-cell>h1,html[data-device-type="mobile"] .ppGivingTuesday .containerCentered .editorial-container .editorial-cell>h1{font-size:29px;font-size:2.07142857rem;line-height:30px}html[data-device-type="portable"] .ppGivingTuesday .hero-giving-tues-image,html[data-device-type="mobile"] .ppGivingTuesday .hero-giving-tues-image{background-image:url("https://www.paypalobjects.com/marketing/web/au/where-to-shop-with-paypal/giving-tues-image-stars-mobile.png");background-repeat:no-repeat;background-size:100% auto;width:375px;height:370px}html[data-device-type="portable"] .ppGivingTuesday .giving-tues-top-tile,html[data-device-type="mobile"] .ppGivingTuesday .giving-tues-top-tile{left:19px;right:19px;height:16px;background-image:url("https://www.paypalobjects.com/marketing/web/au/where-to-shop-with-paypal/giv-tues-day-top-tile-mobile.jpg")}html[data-device-type="portable"] .ppGivingTuesday .giving-tues-bottom-tile,html[data-device-type="mobile"] .ppGivingTuesday .giving-tues-bottom-tile{display:block;position:absolute;bottom:auto;top:386px;left:19px;right:19px;height:16px;background-image:url("https://www.paypalobjects.com/marketing/web/au/where-to-shop-with-paypal/giv-tues-day-bottom-tile-mobile.jpg");background-repeat:repeat-x}html[data-device-type="portable"] .ppGivingTuesday .giving-tues-right-tile,html[data-device-type="mobile"] .ppGivingTuesday .giving-tues-right-tile{display:block;position:absolute;top:16px;bottom:auto;height:386px;right:0;width:19px;background-image:url("https://www.paypalobjects.com/marketing/web/au/where-to-shop-with-paypal/giv-tues-day-right-tile-mobile.jpg");background-repeat:repeat-y}html[data-device-type="portable"] .ppGivingTuesday .giving-tues-left-tile,html[data-device-type="mobile"] .ppGivingTuesday .giving-tues-left-tile{display:block;position:absolute;top:16px;bottom:auto;height:386px;left:-1px;width:19px;background-image:url("https://www.paypalobjects.com/marketing/web/au/where-to-shop-with-paypal/giv-tues-day-left-tile-mobile.jpg");background-repeat:repeat-y}html[data-device-type="portable"] .ppGivingTuesday .giving-tues-bottom-left,html[data-device-type="mobile"] .ppGivingTuesday .giving-tues-bottom-left,html[data-device-type="portable"] .ppGivingTuesday .giving-tues-bottom-right,html[data-device-type="mobile"] .ppGivingTuesday .giving-tues-bottom-right,html[data-device-type="portable"] .ppGivingTuesday .giving-tues-top-left,html[data-device-type="mobile"] .ppGivingTuesday .giving-tues-top-left,html[data-device-type="portable"] .ppGivingTuesday .giving-tues-top-right,html[data-device-type="mobile"] .ppGivingTuesday .giving-tues-top-right{background:url('https://www.paypalobjects.com/marketing/web/au/where-to-shop-with-paypal/give-tues-corner-sprite-mobile.png') no-repeat;width:19px;height:16px}html[data-device-type="portable"] .ppGivingTuesday .giving-tues-bottom-left,html[data-device-type="mobile"] .ppGivingTuesday .giving-tues-bottom-left{background-position:-10px 0;bottom:auto;top:386px}html[data-device-type="portable"] .ppGivingTuesday .giving-tues-bottom-right,html[data-device-type="mobile"] .ppGivingTuesday .giving-tues-bottom-right{background-position:-39px 0;bottom:auto;top:386px}html[data-device-type="portable"] .ppGivingTuesday .giving-tues-top-left,html[data-device-type="mobile"] .ppGivingTuesday .giving-tues-top-left{background-position:-10px -26px}html[data-device-type="portable"] .ppGivingTuesday .giving-tues-top-right,html[data-device-type="mobile"] .ppGivingTuesday .giving-tues-top-right{background-position:-39px -26px}html[data-device-type="portable"] .ppGivingTuesday .hero-giving-tues-image,html[data-device-type="mobile"] .ppGivingTuesday .hero-giving-tues-image{left:50%;max-width:280px;margin-left:-140px;background-position:center bottom}}.ppGivingTuesday .editorial-cell{text-align:center}.ppGivingTuesday .editorial-cell .pageHeadline{font-family:"DharmaGothicE-Bold",Arial,sans-serif;font-size:70px;font-size:5rem;padding-bottom:15px;line-height:60px}.ppGivingTuesday .editorial-cell .heroBtn{color:#005ea6;background:#fff;width:215px}.ppGivingTuesday .editorial-cell .heroBtn:hover,.ppGivingTuesday .editorial-cell .heroBtn:active,.ppGivingTuesday .editorial-cell .heroBtn:visited,.ppGivingTuesday .editorial-cell .heroBtn:focus{background:#fff;color:#005ea6}.ppGivingTuesday .editorial-cell .hatch{padding:10px 0 49px}@media (max-width:768px) and (orientation:portrait){html[data-device-type="portable"] .ppGivingTuesday .containerCentered .editorial-container{padding-top:40px}}html[data-device-type="mobile"] .ppGivingTuesday .containerCentered .editorial-container{padding-top:20px}html[data-device-type="mobile"] .ppGivingTuesday .containerCentered .editorial-container .editorial-cell{max-width:300px;margin:20px auto 0;position:relative}@media (max-width:360px){html[data-device-type="mobile"] .ppGivingTuesday .containerCentered .editorial-container .editorial-cell{max-width:280px}}html[data-device-type="mobile"] .ppGivingTuesday .containerCentered .editorial-container .editorial-cell::after{content:'';display:none}html[data-device-type="mobile"] .ppGivingTuesday .containerCentered .editorial-container .editorial-cell>h1{padding-bottom:0}html[data-device-type="mobile"] .ppGivingTuesday .contentPara{padding:10px 0;font-size:14px;font-size:1rem}html[data-device-type="mobile"] .ppGivingTuesday .heroBtn{background-color:#fff;font-size:14px;font-size:1rem;padding:8px 20px;max-width:130px;margin:0 auto;color:#0079ad}html[data-device-type="mobile"] .ppGivingTuesday .hatch{padding:10px 0;margin:0 auto;font-size:13px;font-size:.92857143rem}.offersSubheadingBlock .callout_daily-offers{background-image:url(https://www.paypalobjects.com/digitalassets/c/website/marketing/latam/mx/shopping/logos/daily-offers.jpg);height:280px;background-size:cover}.offersSubheadingBlock .callout_panel h1{color:#000;font-size:2.5em;font-weight:300;line-height:1.25em}.offersSubheadingBlock .callout_panel p{font-weight:400;color:#000;padding:20px}.offering-panel{background:none repeat scroll 0 0 #fff;border:1px solid #e2e3e4;padding:10px 17px 20px;color:#000;line-height:1.42857;text-align:center;height:250px}.offering-panel h3{font-size:13px;color:#000}.offering-panel p{color:#000;font-size:12px;min-height:60px;line-height:1.1;padding:0}.offering-panel a{line-height:.8;margin-bottom:15px}.offering-panel img{margin:45px 0}.offering-panel.ofertas-height{height:290px}.merchant{display:none;color:#0079C1;opacity:.8}.img-top img{margin:0}.merchant-listing{padding:10px 0 10px;background-color:#F5F5F5;position:relative}.more-info-click{display:block;margin-bottom:0}.more-info-des{background:none repeat scroll 0 0 #fff;border:1px solid #e2e3e4;box-sizing:border-box;color:#333333;display:none;font-size:14px;left:38px;padding:15px;position:absolute;text-align:left;top:262px;width:94%;z-index:9999;word-break:break-all}.more-info-des p{color:#333333;font-size:14px;height:auto;line-height:1.3;margin-bottom:10px}.more-info-des p span{display:block}.more-info-close{background:url("https://www.paypalobjects.com/webstatic/es_MX/mktg/shopping-banner/shopping-navigation-controls.png") no-repeat scroll 0 -49px rgba(0,0,0,0);float:right;height:10px;width:10px}.more-info-arrow{background:url("https://www.paypalobjects.com/webstatic/es_MX/mktg/shopping-banner/shopping-navigation-controls.png") no-repeat scroll 0 -85px rgba(0,0,0,0);height:15px;margin:auto;width:75px;display:none}html[data-device-type="dedicated"] #main .merchant-listing .containerCentered{margin-bottom:25px}html[data-device-type="dedicated"] #main .containerCentered.container .containerCentered{position:relative;z-index:-10}html[data-device-type="dedicated"] #main .containerCentered.container .containerCentered .sprites.music{background-position:-83px 6px;left:51%;background-size:561px;width:69px;height:180px}html[data-device-type="dedicated"] #main .containerCentered.container .containerCentered .sprites.aplicaciones{background-position:-178px 0;left:60%}html[data-device-type="dedicated"] #main .containerCentered.container .containerCentered .sprites.juegos{background-position:0 0;left:40%}html[data-device-type="dedicated"] #main .containerCentered.container .containerCentered .sprites.peliculas{background-position:-269px 0;left:70%}html[data-device-type="dedicated"] #main .containerCentered.container .containerCentered .sprites.libros{background-position:-273px 14px;left:81%;background-size:470px;width:60px;height:180px}html[data-device-type="dedicated"] #main .containerCentered.container .containerCentered .sprites.kiosko{background-position:-452px 0;left:90%}html[data-device-type="dedicated"] #main .merchant-listing .containerCentered .more-info-arrow{margin-top:-2px}.merchant-listing .containerCentered{position:relative}.merchant-listing .row-fluid{background-color:#F5F5F5}section.merchant-listing:first-of-type{padding-top:20px}.select-category,.title{padding:30px 0}.select-category{background-color:#F5F5F5;padding-bottom:10px}.dark .headline-decorative,.dark .headline-light{color:#fff}html[data-device-type=portable] .list-content .containerCentered{margin-bottom:3px}html[data-device-type=portable] .row-fluid .span7:not(.hero-bg.march){width:48.5%;float:right}html[data-device-type=portable] .row-fluid .span7:not(.hero-bg.march) P{padding-top:10px}html[data-device-type=portable] .more-info-des{width:91%;left:30px}html[data-device-type=portable] .offering-panel p{min-height:45px;margin-bottom:15px}select.no-arrow.category-do{margin:0;width:280px}.ribbon-wrapper{width:82px;height:88px;overflow:hidden;position:absolute;top:-1px;left:-1px;z-index:99}.ribbon{text-align:center;-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);transform:rotate(-45deg);position:relative;padding:4px 0;left:-30px;top:15px;width:120px;background-color:#009CDE;color:#fff}.scroll-top-wrapper{position:fixed;opacity:0;visibility:hidden;overflow:hidden;text-align:center;z-index:99999999;width:50px;right:30px;bottom:30px;padding-top:2px;-webkit-transition:all .5s ease-in-out;-moz-transition:all .5s ease-in-out;-ms-transition:all .5s ease-in-out;-o-transition:all .5s ease-in-out;transition:all .5s ease-in-out}.show{visibility:visible;cursor:pointer;opacity:1}.gifts{padding:8px 0}.featured-title{display:none}html[data-device-type=portable] .more-info-des{position:absolute;top:10px;left:10px;height:165px;overflow:auto}html[data-device-type=portable] .offering-panel{margin-bottom:10px;position:relative}html[data-device-type=portable] .offering-panel a{display:block}html[data-device-type=portable] .more-info-des{left:0;top:260px;width:100%}html[data-device-type=portable] .merchant-listing p{padding:0}html[data-device-type=portable] .featured-merchants .offering-panel{min-height:23rem}.featured-merchants .bdr h3{padding:0 0 1rem}.featured-merchants .offering-panel img{min-width:275px;min-height:21rem}.featured-merchants .row{padding:1rem 0;overflow:hidden}html[data-device-type=dedicated] .highlighted-div-zoom-in,html[data-device-type=portable] .highlighted-div-zoom-in{display:inline-block;position:relative;transition:all 200ms ease-in;transform:scale(1)}html[data-device-type=dedicated] .highlighted-div-zoom-out,html[data-device-type=portable] .highlighted-div-zoom-out{box-shadow:0 0 50px #909090;z-index:2;transition:all 200ms ease-in;transform:scale(1.2)}@media (orientation:landscape){html[data-device-type=portable] .offering-panel .more-info-arrow{margin-top:12px}html[data-device-type="mobile"] .more-info-des a.more-info-close{right:65px}}html[data-device-type="mobile"] .merchant-listing{padding-bottom:0}html[data-device-type="mobile"] .offering-panel a{margin-bottom:14px}html[data-device-type="mobile"] .span3.offering-panel.img-top{margin-bottom:10px;position:relative}html[data-device-type="mobile"] .span3.offering-panel.img-top p{padding-top:0;padding-bottom:0}@media (max-width:1025px){html[data-device-type=portable] .offering-panel p{margin-bottom:0}html[data-device-type=portable] .offering-panel a{margin-bottom:11px}html[data-device-type=portable] .more-info-arrow{margin-top:16px}html[data-device-type=portable] .more-info-des{width:100%}html[data-device-type=portable] .more-info-des p{min-height:0}}@media (max-width:770px){html[data-device-type=portable] .offering-panel p{min-height:85px}html[data-device-type=portable] .more-info-des{width:100%}html[data-device-type=portable] .more-info-des p{min-height:0}}@media (max-width:768px) and (orientation:portrait){html[data-device-type="portable"] .row-fluid .span3.offering-panel{width:25%;margin-left:0}}.hero-site-holidays .editorial-cell{vertical-align:top;margin-top:45px}html[data-device-type="mobile"] .hero-site-holidays .editorial-cell{margin-top:0}@media (min-width:769px) and (orientation:portrait){html[data-device-type=portable] .row-fluid .span3{width:22.5%}}

.bx-wrapper{position:relative;margin:0 auto 60px;padding:0}.bx-wrapper img{max-width:100%;display:block}.bx-wrapper .bx-viewport{-moz-box-shadow:0 0 5px #ccc;-webkit-box-shadow:0 0 5px #ccc;box-shadow:0 0 5px #ccc;border:5px solid #fff;left:-5px;background:#fff;-webkit-transform:translatez(0);-moz-transform:translatez(0);-ms-transform:translatez(0);-o-transform:translatez(0);transform:translatez(0)}.bx-wrapper .bx-controls-auto,.bx-wrapper .bx-pager{position:absolute;bottom:-30px;width:100%}.bx-wrapper .bx-loading{min-height:50px;height:100%;width:100%;position:absolute;top:0;left:0;z-index:2000}.bx-wrapper .bx-pager{text-align:center;font-size:.85em;font-family:Arial;font-weight:700;color:#666;padding-top:20px}.bx-wrapper .bx-controls-auto .bx-controls-auto-item,.bx-wrapper .bx-pager .bx-pager-item{display:inline-block}.bx-wrapper .bx-pager.bx-default-pager a{background:#666;text-indent:-9999px;display:block;width:10px;height:10px;margin:0 5px;outline:0;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.bx-wrapper .bx-pager.bx-default-pager a.active,.bx-wrapper .bx-pager.bx-default-pager a:hover{background:#000}.bx-wrapper .bx-prev{left:10px}.bx-wrapper .bx-next{right:10px}.bx-wrapper .bx-prev:hover{background-position:0 0}.bx-wrapper .bx-next:hover{background-position:-43px 0}.bx-wrapper .bx-controls-direction a{position:absolute;top:50%;margin-top:-16px;outline:0;width:32px;height:32px;text-indent:-9999px;z-index:9999}.bx-wrapper .bx-controls-direction a.disabled{display:none}.bx-wrapper .bx-controls-auto{text-align:center}.bx-wrapper .bx-controls-auto .bx-start{display:block;text-indent:-9999px;width:10px;height:11px;outline:0;background:url(images/controls.png) -86px -11px no-repeat;margin:0 3px}.bx-wrapper .bx-controls-auto .bx-start.active,.bx-wrapper .bx-controls-auto .bx-start:hover{background-position:-86px 0}.bx-wrapper .bx-controls-auto .bx-stop{display:block;text-indent:-9999px;width:9px;height:11px;outline:0;background:url(images/controls.png) -86px -44px no-repeat;margin:0 3px}.bx-wrapper .bx-controls-auto .bx-stop.active,.bx-wrapper .bx-controls-auto .bx-stop:hover{background-position:-86px -33px}.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager{text-align:left;width:80%}.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto{right:0;width:35px}.bx-wrapper .bx-caption{position:absolute;bottom:0;left:0;background:#666\9;background:rgba(80,80,80,.75);width:100%}.bx-wrapper .bx-caption span{color:#fff;font-family:Arial;display:block;font-size:.85em;padding:10px}

