/* 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")}@font-face{font-family:'PayPalOpen-Regular';font-style:normal;font-display:swap;src:url('https://www.paypalobjects.com/paypal-ui/fonts/PayPalOpen-Regular.woff2') format('woff2')}@font-face{font-family:'PayPalOpen-Bold';font-style:normal;font-display:swap;src:url('https://www.paypalobjects.com/paypal-ui/fonts/PayPalOpen-Bold.woff2') format('woff2')}.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')}.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}@media (orientation:landscape) and (min-width:1024px){html[data-device-type=portable] .row-fluid [class*=span]:first-child{margin-left:70px}}.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}.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;margin-bottom:5px}.offering-panel a{line-height:.8;margin-bottom:15px}.offering-panel img{margin:45px 0px}.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:0px 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:0px;padding-bottom:0px}@media (max-width:1025px){html[data-device-type=portable] .offering-panel p{margin-bottom:0px}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:0px}}.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%}html[data-device-type=portable] .hero-bg{background-position:54% 50%}}.hero-bg{background-image:url(https://www.paypalobjects.com/marketing/web25/mx/mesesconpaypal/online-shopping/desktop/shopping-site-banner-desktop_d.png);align-items:inherit;min-height:530px;background-position:center bottom;background-size:100%;background-color:transparent}@media (min-width:1890px){.hero-bg{background-size:contain}}@media (max-width:1989px){.hero-bg{background-size:80%}}@media (max-width:1400px){.hero-bg{background-size:100%}}.hero-bg .editorial-cell{padding-bottom:30px;padding-top:100px}.hero-bg .span-yellow{color:#ff9c01;display:block;width:100%}.hero-bg .pageHeadline{font-weight:900;font-family:PayPal Pro,"Helvetica Neue",Arial,sans-serif;letter-spacing:-0.02em;font-size:40px;position:relative;padding-bottom:0;width:120%}.hero-bg .pageHeadline:before{background-image:url(https://www.paypalobjects.com/marketing/web24/es/campaign/buen_fin/logo_bf.png);background-size:100%;display:inline-block;width:100px;height:100px;content:"";background-repeat:no-repeat;vertical-align:-70%;margin-left:-10px}.hero-bg .contentPara{color:#fff;margin-top:10px;font-weight:600;font-family:PayPal Pro,"Helvetica Neue",Arial,sans-serif}.hero-bg .hatch{color:#fff;font-weight:600;font-family:PayPal Pro,"Helvetica Neue",Arial,sans-serif}.hero-bg .hatch a{color:#fff;font-weight:600;font-family:PayPal Pro,"Helvetica Neue",Arial,sans-serif;text-decoration:underline}a.btn.heroBtn{background:#fff;color:#073182;margin-left:auto;margin-right:auto;display:block;font-weight:800;font-family:PayPal Pro,"Helvetica Neue",Arial,sans-serif;font-size:20px;width:190px;border-radius:30px}.editorial-cell ul li{list-style-position:inside;list-style-type:disc}h1{font-weight:400}.off{opacity:0}.on{opacity:1}.heroBtn{width:215px}.center_me{margin-left:auto;margin-right:auto;text-align:center;float:none}html[data-device-type=dedicated] .hatch{padding-top:45px}html[data-device-type=dedicated] .btn-white:hover{background-color:#fff}html[data-device-type=dedicated] .btn-white:focus{text-decoration:underline}html[data-device-type=dedicated] a.btn.heroBtn:hover{background-color:#fff}html[data-device-type=dedicated] a.btn.heroBtn:focus{background-color:#fff}html[data-device-type=dedicated] .row-fluid .span10{width:78%}@media screen and (max-device-width:1024px){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"] .hero-bg{min-height:480px;background-position:50% 0}html[data-device-type="mobile"] h1.pageHeadline.x-large.h2{font-size:24px}html[data-device-type="mobile"] h1.pageHeadline.x-large.h2::before{width:50px;height:50px;vertical-align:-50%}html[data-device-type="mobile"] .span4{margin:3.75% 0 0}html[data-device-type="mobile"] .span4:last-child{margin-bottom:3.75%}html[data-device-type="mobile"] .main_content{padding-bottom:3.75%}}@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}}@media screen and (max-device-width:1024px) and screen and (max-device-width:768px){.span4:last-child{margin-top:16px}}html[data-device-type="mobile"]  .hero-bg:not(.no-img) .editorial-cell{padding-top:inherit}html[data-device-type="portable"] .row-fluid .heroBtn.span8{margin:auto;margin-top:20px}html[data-device-type=portable],html[data-device-type=dedicated]{overflow:overlay}html[data-device-type=portable] .hero-bg .heroBtn:hover,html[data-device-type=dedicated] .hero-bg .heroBtn:hover,html[data-device-type=portable] .hero-bg .heroBtn:focus,html[data-device-type=dedicated] .hero-bg .heroBtn:focus{background:#fff;color:#003087;text-decoration:underline}.hero-banner-section__mobile,.below-hero-banner-section__mobile{display:none}html[data-device-type="mobile"] .pp-header+#main>section.hero-bg.row-fluid:first-of-type{padding-top:0}html[data-device-type="mobile"] .hero-bg{background:none;position:relative;min-height:100px}html[data-device-type="mobile"] .hero-bg .containerCentered,html[data-device-type="mobile"] .hero-bg .editorial-container{padding:0}html[data-device-type="mobile"] .hero-bg .editorial-cell>.pageHeadline,html[data-device-type="mobile"] .hero-bg .editorial-cell>.contentPara,html[data-device-type="mobile"] .hero-bg .editorial-cell>a{display:none}html[data-device-type="mobile"] p.hatch{position:absolute;bottom:30px;font-weight:100;padding-left:3.75%;padding-right:3.75%;font-size:11px}html[data-device-type="mobile"] p.hatch a{font-weight:100;font-size:11px}html[data-device-type="mobile"] .hero-banner-section__mobile{padding-top:60px;min-height:auto;box-sizing:border-box;background:url("https://www.paypalobjects.com/marketing/web25/mx/mesesconpaypal/online-shopping/mobile/shopping-site-banners_mobile_juega.jpg") no-repeat;background-size:contain;background-position:top;background-color:#003187;color:#fff;text-align:left;margin-top:50px}html[data-device-type="mobile"] .hero-banner-section__mobile,html[data-device-type="mobile"] .below-hero-banner-section__mobile{display:block;padding-left:3.75%;padding-right:3.75%;background-color:#003187}html[data-device-type="mobile"] .hero-banner-section__mobile .pageHeadline,html[data-device-type="mobile"] .below-hero-banner-section__mobile .pageHeadline{padding-top:30px;width:100%;padding-bottom:0;margin-bottom:0;text-align:left;padding-top:55px}html[data-device-type="mobile"] .hero-banner-section__mobile .pageHeadline,html[data-device-type="mobile"] .below-hero-banner-section__mobile .pageHeadline,html[data-device-type="mobile"] .hero-banner-section__mobile .subheadline,html[data-device-type="mobile"] .below-hero-banner-section__mobile .subheadline,html[data-device-type="mobile"] .hero-banner-section__mobile a,html[data-device-type="mobile"] .below-hero-banner-section__mobile a{text-align:center;font-weight:800;font-family:PayPal Pro,"Helvetica Neue",Arial,sans-serif;color:#fff;text-align:left}html[data-device-type="mobile"] .hero-banner-section__mobile .subheadline,html[data-device-type="mobile"] .below-hero-banner-section__mobile .subheadline{padding-bottom:10px;font-weight:500;font-size:16px}html[data-device-type="mobile"] .hero-banner-section__mobile .heroBtn,html[data-device-type="mobile"] .below-hero-banner-section__mobile .heroBtn{background:#0070ba;color:#fff;width:100%;max-width:320px;margin-top:5px;margin-left:auto;margin-right:auto;box-sizing:border-box;font-weight:800;font-family:PayPal Pro,"Helvetica Neue",Arial,sans-serif;font-size:18px;width:auto;border-radius:30px;background:#fff;color:#073182;text-align:center;float:right}html[data-device-type="mobile"] .below-hero-banner-section__mobile{padding-bottom:130px}html[data-device-type="mobile"] .notification-bar{padding-left:3.75%;padding-right:3.75%}html[data-device-type="portable"] .hero-bg{background-position:45% 178px;background-size:100%}html[data-device-type="portable"] .hero-bg .editorial-container{height:480px;line-height:480px}html[data-device-type="portable"] .hero-bg .editorial-cell{padding-bottom:40px}.logoImg{height:120px;margin-bottom:5px}.logoPara{margin-bottom:15px}img[alt*="Siclo+"]{margin-top:25px}html[data-device-type="mobile"] img[alt*="Siclo+"]{height:70px}html[data-device-type="mobile"] img[alt*="Sorteo Anáhuac "]{height:140px}.spinner{margin:0 auto 60px auto;text-align:center;box-sizing:border-box;position:relative;padding:60px 0}.spinner--circle{height:30px;width:30px;left:50%;content:"";height:50px;width:50px;position:absolute;left:48%;top:50%;z-index:6;margin:-15px auto auto -15px;border-left:6px solid rgba(0,0,0,0.2);border-right:6px solid rgba(0,0,0,0.2);border-bottom:6px solid rgba(0,0,0,0.2);border-top:6px solid #2180c0;border-radius:100%;-webkit-animation:spin .7s infinite linear;-moz-animation:spin .7s infinite linear;-o-animation:spin .7s infinite linear;animation:spin .7s infinite linear;top:1em}@-webkit-keyframes spin{from{-webkit-transform:rotate(0deg)}to{-webkit-transform:rotate(359deg)}}@-moz-keyframes spin{from{-moz-transform:rotate(0deg)}to{-moz-transform:rotate(359deg)}}@-o-keyframes spin{from{-o-transform:rotate(0deg)}to{-o-transform:rotate(359deg)}}@keyframes spin{from{transform:rotate(0deg)}to{transform:rotate(359deg)}}@-webkit-keyframes spin{from{-webkit-transform:rotate(0deg)}to{-webkit-transform:rotate(359deg)}}@-moz-keyframes spin{from{-moz-transform:rotate(0deg)}to{-moz-transform:rotate(359deg)}}@-o-keyframes spin{from{-o-transform:rotate(0deg)}to{-o-transform:rotate(359deg)}}@keyframes spin{from{transform:rotate(0deg)}to{transform:rotate(359deg)}}html[data-device-type="mobile"] .spinner{padding-bottom:120px}div[data-nav-version="rebrand"]>header{overflow-x:hidden}

.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}

