/* 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;
}

/********* px-video.css ************/

/* utilities */
.sr-only {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}
.show-inline {
  display: inline-block;
}

/* containers */
.px-video-img-captions-container * {
  box-sizing: border-box;
}
.px-video-img-captions-container {
  position: relative;
  background-color: #FFF;
}
.px-video-container {
  position: relative;
}
.px-video-container .loading-spinner {
  background: no-repeat url('https://www.paypalobjects.com/webstatic/es_MX/mktg/logos-buttons/redesign/loading.gif');
  content: '';
  position: absolute;
  left: 50%;
  top: 40%;
  width: 45px;
  height: 45px;
  margin-left: -30px;
  margin-top: -30px;
  text-indent: -999em;
  overflow: hidden;
}

/* progress indicator */
.px-video-progress {
  width: 100%;
  height: 10px;
}
.px-video-progress[value] {
  /* Reset the default appearance */
  -webkit-appearance: none;
  border: none;
}
.px-video-progress[value]::-webkit-progress-bar {
  background-color: #E6E6E6;
}
.px-video-progress[value]::-webkit-progress-value {
  background-color: #009CDF;
}

/* caption area */
.px-video-captions {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: .5em;
  min-height: 2.5em;
  background-color: #000;
  color: #fff;
  font-size: 1.1em;
  text-align: center;
  opacity: 0.75;
}

/* buttons */
.px-video-controls button {
  border: 1px #fff solid;
  background: transparent;
  padding: 0;
  margin: 0 5px;
  min-width: 25px;
  height: 20px;
  overflow: hidden;
  background: no-repeat url('https://www.paypalobjects.com/webstatic/mktg/wright/icons/px-video-sprite.png');
}
.px-video-controls button:focus {
  border: 1px #999 dotted;
  outline: none;
}
.px-video-controls button {
  cursor: pointer;
}
button.px-video-restart {
  margin-left: 0;
}
/* restart button */

.px-video-controls button.px-video-restart {
  background-position: -6px -333px;
}
.px-video-controls button.px-video-restart:hover,
.px-video-controls button.px-video-restart:focus {
  background-position: -6px -297px;
}

/* rewind button */
.px-video-controls button.px-video-rewind {
  background-position: -6px -189px;
}
.px-video-controls button.px-video-rewind:hover,
.px-video-controls button.px-video-rewind:focus {
  background-position: -6px -153px;
}

/* play button */
.px-video-controls button.px-video-play {
  background-position: -6px -45px;
}
.px-video-controls button.px-video-play:hover,
.px-video-controls button.px-video-play:focus {
  background-position: -6px -9px;
}

/* pause button */
.px-video-controls button.px-video-pause {
  background-position: -6px -117px;
}
.px-video-controls button.px-video-pause:hover,
.px-video-controls button.px-video-pause:focus {
  background-position: -6px -81px;
}

/* forward button */
.px-video-controls button.px-video-forward {
  background-position: -6px -261px;
}
.px-video-controls button.px-video-forward:hover,
.px-video-controls button.px-video-forward:focus {
  background-position: -6px -225px;
}

/* captions button */
.px-video-captions-btn-container label {
  display: inline-block;
  width: 25px;
  height: 20px;
  margin-left: 25px;
  background: no-repeat url('https://www.paypalobjects.com/webstatic/mktg/wright/icons/px-video-sprite.png');
  background-position: -6px -835px;
}
.px-video-captions-btn-container input[type="checkbox"]:focus+label {
  outline: 1px #999 dotted;
  background-position: -6px -799px;
}
.px-video-captions-btn-container input[type="checkbox"]:hover+label {
  background-position: -6px -799px;
  cursor: pointer;
}
.px-video-captions-btn-container input[type="checkbox"]:focus+label {
  outline: 1px #999 dotted;
  background-position: -6px -799px;
}
.px-video-captions-btn-container input[type="checkbox"]:checked+label {
  background-position: -6px -871px;
}

/* mute button */
.px-video-mute-btn-container label {
  display: inline-block;
  width: 25px;
  height: 20px;
  margin-left: 240px;
  margin-top: 2px;
  background: no-repeat url('https://www.paypalobjects.com/webstatic/mktg/wright/icons/px-video-sprite.png');
  background-position: -6px -476px;
}
.px-video-mute-btn-container input[type="checkbox"]:focus+label {
  outline: 1px #999 dotted;
  background-position: -6px -440px;
}
.px-video-mute-btn-container input[type="checkbox"]:hover+label {
  background-position: -6px -440px;
  cursor: pointer;
}
.px-video-mute-btn-container input[type="checkbox"]:focus+label {
  outline: 1px #999 dotted;
  background-position: -6px -440px;
}
/* checked state of mute button */
.px-video-mute-btn-container input[type="checkbox"]:checked+label {
  background-position: -6px -692px;
}
.px-video-mute-btn-container input[type="checkbox"]:checked:hover+label,
.px-video-mute-btn-container input[type="checkbox"]:checked:focus+label {
  background-position: -6px -656px;
}

/* volume range input */
.px-video-controls input[type='range'] {
  -webkit-appearance: none;
  height: 6px;
  width: 100px;
  margin-top: 8px;
  background-color: #E6E6E6;
  outline:none;
}
.px-video-controls input[type='range']:focus::-webkit-slider-thumb {
  outline: 1px #999 dotted;
}
.px-video-controls input[type='range']::-moz-range-track {
  -moz-appearance: none;
  height: 6px;
  background-color: #E6E6E6;
  border: none;
}
.px-video-controls input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none !important;
  height: 10px;
  width: 6px;
  background-color: #666;
}
.px-video-controls input[type='range']::-moz-range-thumb {
  height: 12px;
  width: 8px;
}
/* fixing display for IE10+ */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .px-video-controls input[type='range'] {
    position: relative;
    padding: 0;
    height: 8px;
    top: -3px;
  }
  .px-video-time {
    margin-top: 4px;
  }
  .px-video-captions {
    padding: 8px;
    min-height: 36px;
  }
}

/* Fullscreen styles */
.px-video-fullscreen-btn-container label {
  display: inline-block;
  width: 25px;
  height: 20px;
  margin: 0 10px;
  background: no-repeat url('https://www.paypalobjects.com/webstatic/mktg/wright/icons/px-video-sprite.png');
  background-position: -6px -907px;
}
.px-video-fullscreen-btn-container input[type="checkbox"]:focus+label {
  outline: 1px #999 dotted;
  background-position: -6px -943px;
}
.px-video-fullscreen-btn-container input[type="checkbox"]:hover+label {
  background-position: -6px -943px;
  cursor: pointer;
}
.px-video-fullscreen-btn-container input[type="checkbox"]:focus+label {
  outline: 1px #999 dotted;
  background-position: -6px -943px;
}
.px-video-fullscreen-btn-container input[type="checkbox"]:checked+label {
  background-position: -6px -979px;
}
.px-video-fullscreen-btn-container input[type="checkbox"]:checked:hover+label {
  background-position: -6px -1015px;
}
.px-video-container.fullscreen {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-cursor-visibility: auto-hide;
}
.display-inline {
  display: inline-block;
  vertical-align: top;
}
/* style applied through js */
.px-video-controls.js-fullscreen-controls {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 940;
  background: white;
  text-align: center;
}

  .px-video-captions.js-fullscreen-captions {
  min-height: 3.5em;
  font-size: 2.5em;
  padding: 1em;
}

.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}.youtube-player{width:480px;height:360px;position:relative}html[data-device-type="mobile"] .youtube-player{width:100%}.youtube-player .play-button{cursor:pointer;content:'';position:absolute;left:50%;top:50%;width:60px;height:60px;margin-left:-30px;margin-top:-30px;text-indent:-999em;overflow:hidden;border:2px solid #fff;border-radius:36px}.youtube-player .play-button:after{content:'';position:absolute;width:0;height:0;top:50%;left:50%;margin-top:-12px;margin-left:-10px;overflow:hidden;border:24px solid rgba(0,0,0,0);border-width:12px 24px;border-left-color:#fff}.youtube-thumb{width:100%}.youtube-iframe{width:100%;height:100%}.video-module .play-button{cursor:pointer}.hero-bg{background-image:url('https://www.paypalobjects.com/digitalassets/c/EMEA/landing_page/core-pages/emea-merchant-homepage/PayPal_1600x600_HomeRetoucheB.jpg')}.hero-bg p.hatch a.btn-transparent{background:none;border:solid 1px #FFF;float:none;margin-bottom:1em}html[data-device-type=mobile] .hero-bg p.hatch a.btn-transparent{color:#0070ba;border-color:#0070ba}html[data-device-type="mobile"] .hero-bg:not(.no-img) .editorial-cell{padding-top:235px}@media (orientation:portrait){html[data-device-type="portable"] .hero-bg .span6.col-sm-6.editorial-container{width:55%}}html[data-device-type="dedicated"] .rtb3 p.pulloutPara,html[data-device-type="portable"] .rtb3 p.pulloutPara{font-size:1.3em}@media (min-width:1024px) and (orientation:landscape){html[data-device-type="portable"] .hero-bg{background-position:-330px 0}}@media (min-width:768px) and (orientation:portrait){html[data-device-type="portable"] .hero-bg{background-position:-430px 0}}html[data-device-type="dedicated"] #body.nav-simple .hero-bg .editorial-cell,html[data-device-type="portable"] #body.nav-simple .hero-bg .editorial-cell{margin-top:30px}.rtb1{padding-bottom:0}.rtb2{padding:30px 0 50px}.rtb3 a{color:#0C8DC4}.rtb1.row-fluid.control,.rtb2.row-fluid.control{background:none}html p.step-text{padding:4px 0 14px}html[data-device-type="dedicated"] select.no-arrow{width:45%}.merchant-rates{display:none;margin-bottom:14px;font-size:1.071rem}.feesPullout{padding:0;margin:25px 0}.separator{padding:0 30px}html[data-device-type="mobile"] .separator{padding:0}html[data-device-type="mobile"] .devices img{top:0}.devices{z-index:10}.devices img{position:relative;top:60px}.legal-notes{margin:0}.rtb3 .panel-img{height:63px;display:inline-block;margin-bottom:10px}.rtb3 .span6 h2{margin-bottom:10px}@media (min-width:1024px){.row-fluid [class*="span"].steps{margin-left:-5%}}.ui-dialog-titlebar.ui-widget-header.ui-corner-all.ui-helper-clearfix{background-position:center}a.secondary{background:#fff none repeat scroll 0 0;color:#0070ba;border:1px solid #0070ba}.merchant-cookied-hero{background-image:url("https://www.paypalobjects.com/digitalassets/c/website/marketing/emea/fr/fr/merchant/merchant-cookied-hero.jpg")}.merchant-cookied-hero .heroBtn{float:none}html[data-device-type="portable"] .merchant-cookied-hero .heroBtn{float:none;margin:auto;margin-top:30px}html[data-device-type="mobile"] .merchant-cookied-hero .heroBtn{margin-top:0}.merchant-cookied-hero .editorial-cell{max-width:600px}html[data-device-type="mobile"] .merchant-cookied-hero .editorial-cell{max-width:none}html[data-device-type="mobile"] .merchant-cookied-hero{background-size:auto;background-position:27%}.panel.light.secondaryLink a{color:#0070ba}.panel.light.secondaryLink a:hover{color:#005ea6}.panel.light.secondaryLink a:active{color:#0c8dc4}.panel.light.secondaryLink a:visited{color:#0070ba}html[data-device-type="portable"] .intent-fees h3.pypl-heading.pp-sans-big-light.span2{float:none;width:100%;text-align:left;padding-left:11px}

.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: #ffffff;
}
/* For mobile - shorter height and width */
/**
* @fileOverview PayPal.com Icons Fonts
* @name icons_fonts.less
* @author eshadeed


NOTE: I had to add timestamp to the fonts because of caching bug could not resolved,
      we do not need to do the same if we decide to move this code to another css file,
      if we do, then remove the timestamp text "&_=999999"

      */
@font-face {
  font-family: 'ppf-actions';
  src: url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Actions-v1.1.eot?-acnm6v&_=999999');
  src: url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Actions-v1.1.eot?#iefix-acnm6v') format('embedded-opentype'), url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Actions-v1.1.woff?-acnm6v&_=999999') format('woff'), url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Actions-v1.1.ttf?-acnm6v&_=999999') format('truetype'), url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Actions-v1.1.svg?-acnm6v&_=999999#ppf-actions') format('svg');
}
@font-face {
  font-family: 'ppf-features';
  src: url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Features-v1.1.eot?-acnm6v&_=999999');
  src: url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Features-v1.1.eot?#iefix-acnm6v') format('embedded-opentype'), url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Features-v1.1.woff?-acnm6v&_=999999') format('woff'), url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Features-v1.1.ttf?-acnm6v&_=999999') format('truetype'), url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Features-v1.1.svg?-acnm6v&_=999999#ppf-features') format('svg');
}
@font-face {
  font-family: 'ppf-media';
  src: url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Media-v1.1.eot?-acnm6v&_=999999');
  src: url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Media-v1.1.eot?#iefix-acnm6v&_=999999') format('embedded-opentype'), url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Media-v1.1.woff?-acnm6v&_=999999') format('woff'), url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Media-v1.1.ttf?-acnm6v&_=999999') format('truetype'), url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Media-v1.1.svg?-acnm6v&_=999999#ppf-media') format('svg');
}
@font-face {
  font-family: 'ppf-misc';
  src: url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Misc-v1.1.eot?-acnm6v&_=999999');
  src: url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Misc-v1.1.eot?#iefix-acnm6v') format('embedded-opentype'), url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Misc-v1.1.woff?-acnm6v&_=999999') format('woff'), url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Misc-v1.1.ttf?-acnm6v&_=999999') format('truetype'), url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Misc-v1.1.svg?-acnm6v&_=999999#ppf-misc') format('svg');
}
@font-face {
  font-family: 'ppf-utility';
  src: url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Utility-v1.1.eot?-acnm6v&_=999999');
  src: url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Utility-v1.1.eot?#iefix-acnm6v') format('embedded-opentype'), url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Utility-v1.1.woff?-acnm6v&_=999999') format('woff'), url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Utility-v1.1.ttf?-acnm6v&_=999999') format('truetype'), url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Utility-v1.1.svg?-acnm6v&_=999999#ppf-utility') format('svg');
}
@font-face {
  font-family: 'ppf-web';
  src: url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Web-v1.1.eot?-acnm6v&_=999999');
  src: url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Web-v1.1.eot?#iefix-acnm6v') format('embedded-opentype'), url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Web-v1.1.woff?-acnm6v&_=999999') format('woff'), url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Web-v1.1.ttf?-acnm6v&_=999999') format('truetype'), url('https://www.paypalobjects.com/webstatic/mktg/2014design/fonts/v1.1/PP-Web-v1.1.svg?-acnm6v&_=999999#ppf-web') format('svg');
}
.ppf {
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  display: none\8;
  /* Better Font Rendering ********* */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.ppf.actions,
.ppf.action {
  font-family: 'ppf-actions', Helvetica Neue, Arial, sans-serif;
}
.ppf.features,
.ppf.feature {
  font-family: 'ppf-features', Helvetica Neue, Arial, sans-serif;
}
.ppf.media {
  font-family: 'ppf-media', Helvetica Neue, Arial, sans-serif;
}
.ppf.misc {
  font-family: 'ppf-misc', Helvetica Neue, Arial, sans-serif;
}
.ppf.utility {
  font-family: 'ppf-utility', Helvetica Neue, Arial, sans-serif;
}
.ppf.web {
  font-family: 'ppf-web', Helvetica Neue, Arial, sans-serif;
}

/*

This is a less library contains PayPal common styles and variables,
you may want to import it in your less files if you need to.

*/
body .svg {
  width: 50px;
  height: 50px;
  padding: 10px;
  display: block;
}
body .svg svg {
  width: 100%;
  height: 100%;
  fill: #231f20;
}
body .svg.circled {
  border: 2px solid #231f20;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
body .svg.i-gray,
.i-gray body .svg {
  border-color: #d0d0d0;
}
body .svg.i-gray svg,
.i-gray body .svg svg {
  fill: #d0d0d0;
}
body .svg.i-blue,
.i-blue body .svg {
  border-color: #009cde;
}
body .svg.i-blue svg,
.i-blue body .svg svg {
  fill: #009cde;
}
body .svg.i-black,
.i-black body .svg {
  border-color: #1c1c1c;
}
body .svg.i-black svg,
.i-black body .svg svg {
  fill: #1c1c1c;
}
body .svg.i-white,
.i-white body .svg {
  border-color: #ffffff;
}
body .svg.i-white svg,
.i-white body .svg svg {
  fill: #ffffff;
}

html[data-device-type="mobile"] #getStarted {
    padding: 0
}
#getStarted h1 {
    color: #000;
    text-align: center;
    margin-bottom: 1.3em
}
.plan-panel {
    border: 2px solid #ddd;
    padding: 18px
}
.plan-panel h2 {
    font-size: 1.1em;
    color: #666;
    margin-bottom: .3em
}
html[data-device-type="portable"] .plan-panel h2 {
    text-align: center;
    font-size: 1.5em
}
html[data-device-type="portable"] .plan-panel .content-wrapper {
    height: 100%
}
.plan-panel p {
    margin-bottom: 0;
    margin-top: 1em
}
.plan-panel ul {
    margin-left: 1.4em;
    margin-top: 0;
    list-style-type: disc
}
.plan-panel p,
.plan-panel ul {
    font-size: 1em
}
.plan-panel .phone-number {
    color: #666
}
html[data-device-type="dedicated"] .plan-panel {
    width: 43.4%;
    display: inline-block;
    vertical-align: top;
    top: 0
}
html[data-device-type="portable"] #getStarted .content h1+.plan-panel,
html[data-device-type="mobile"] #getStarted .content h1+.plan-panel {
    margin-bottom: 1em
}
html[data-device-type="portable"] .plan-panel a.btn {
    width: 40%
}
.content-wrapper p {
    text-align: center;
}
.ui-dialog.ui-widget.ui-widget-content {
    padding: 10px;
}
.ui-dialog-titlebar.ui-widget-header {
    background: transparent url(https://www.paypalobjects.com/webstatic/i/logo/rebrand/ppcom.svg) left no-repeat;
}
html[data-device-type="dedicated"] .btn-lightgrey:hover {
    background: #808080;
}
.plan-panel p {
    margin-top: 3px;
    padding-bottom: 0;
}
html[data-device-type="mobile"] .iconImage {
    display: none;
}
html[data-device-type="dedicated"] .ui-dialog .btn,
html[data-device-type="portable"] .ui-dialog .btn,
html[data-device-type="portable"] .plan-panel a.btn {
    min-width: 150px;
    width: auto;
}
html[data-device-type="dedicated"] .sticky-nav-panel .btn,
html[data-device-type="portable"] .sticky-nav-panel .btn,
html[data-device-type="dedicated"] .row-fluid .span4,
html[data-device-type="portable"] .row-fluid .span4 {
    min-width: 205px;
}
.btn-lightgrey {
    background-color: #ddd;
    color: #000;
}
.ui-dialog .plan-panel h2 {
    text-align: center;
}

.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}.intent-strategy .split-panel{height:300px;position:relative}.intent-strategy .split-panel--dark{padding:0 15px}.dual-background{background:#f7f9fa;background:-webkit-gradient(left top,right top,color-stop(0,#f7f9fa),color-stop(49.9%,#f7f9fa),color-stop(50%,#eaeced),color-stop(100%,#eaeced));background:linear-gradient(to right,#f7f9fa 0,#f7f9fa 49.9%,#eaeced 50%,#eaeced 100%)}.dual-background .split-panel__wrapper{position:relative;top:50%;-ms-transform:translateY(-50%);transform:translateY(-50%)}.dual-background .split-panel__wrapper .other-values{color:#2c2e2f}.split-panel{min-height:300px}.intent-strategy .split-panel__wrapper{text-align:center}.intent-fees .intent-strategy__selection-wrapper{text-align:center}.intent-strategy__selection-wrapper{margin-top:0;padding:0}.intent-fees .intent-strategy__selection-wrapper h3{line-height:55px;width:auto;font-family:pp-sans-small-regular,Helvetica Neue,Arial,sans-serif}.theme-background-color-light .pypl-heading{color:#2c2e2f}.intent-strategy__selection-wrapper h3{font-size:20px;font-size:1.42857143rem;line-height:45px;padding:0}.intent-fees .intent-strategy__select-wrapper{padding-right:0}.intent-strategy__select-wrapper{padding-left:0}.intent-strategy__select-wrapper{position:relative}.intent-fees .intent-strategy__select{padding-left:0;font-size:16px;font-size:1.14285714rem}.intent-fees .intent-strategy__select{background:#fff;font-family:pp-sans-big-light,Helvetica Neue,Arial,sans-serif;font-size:20px;font-size:1.42857143rem;border:1px solid #d4d9dc;border-radius:3px;padding:15px;width:100%;height:auto;color:inherit;box-shadow:none;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;appearance:none}.intent-fees .intent-strategy__label{content:'';text-indent:-999px;display:block;width:15px;height:15px;position:absolute;top:20px;right:25px;border:1px solid #d4d9dc;border-top:0;border-left:0;-ms-transform:rotate(45deg);transform:rotate(45deg);transition:all .3s ease-out;overflow:hidden}.theme-background-color-light .pypl-heading{color:#2c2e2f}.h3.pypl-heading,h3.pypl-heading{font-size:28px;font-size:2rem;line-height:1.25}.intent-strategy h2{text-align:left;padding-bottom:10px}.pp-sans-big-light{font-family:pp-sans-big-light,Helvetica Neue,Arial,sans-serif;font-weight:400;font-variant:normal}@media (min-width:480px){.dual-background .container{max-width:576px}}@media (min-width:768px){.dual-background .container{max-width:720px}}@media (min-width:980px){.dual-background .container{max-width:940px}}@media (min-width:1200px){.dual-background .container{max-width:1140px}}.split-panel__triangle{position:absolute;top:50%;-ms-transform:translateY(-50%);transform:translateY(-50%);left:-2.5%;width:0;height:0;border-top:20px solid transparent;border-left:20px solid #f7f9fa;border-bottom:20px solid transparent}.intent-strategy__summary p{background:#fff;border-radius:5px;padding:30px 20px;margin:20px auto;font-size:20px;font-size:1.42857143rem;font-family:pp-sans-small-light,Helvetica Neue,Arial,sans-serif}.intent-strategy__summary p span{font-size:35px;font-size:2.5rem}.intent-strategy__summary .intent-pertransaction,.intent-strategy__summary .intent-pertransaction-value{font-size:20px;font-size:1.42857143rem;font-family:pp-sans-small-light,Helvetica Neue,Arial,sans-serif}@media (min-width:768px){.intent-strategy__summary{max-width:480}}html[data-device-type=dedicated] .dual-background .intent-strategy__summary,html[data-device-type=dedicated] .dual-background .intent-strategy__summary__others{margin-left:25%}@media (max-width:767px){.split-panel__triangle-wrapper{float:left;position:relative;left:50%}.theme-background-color-light{background-color:#f7f9fa}.split-panel--dark{background-color:#eaeced}.split-panel__triangle{top:-10px;left:-50%;float:left;position:relative;border-left:20px solid transparent;border-right:20px solid transparent;border-top:20px solid #f7f9fa}.intent-strategy .split-panel--dark{padding:30px 15px}.dual-background>.container{max-width:initial;padding-left:0;padding-right:0}.intent-strategy .split-panel{min-height:0;text-align:center}.intent-strategy .split-panel__wrapper{text-align:center}.split-panel{padding:30px 15px}.theme-background-color-light .pypl-heading{color:#2c2e2f}.h3.pypl-heading,h3.pypl-heading{font-size:20px;font-size:1.42857143rem;line-height:1.4}.intent-strategy h2{text-align:left;padding-bottom:30px}.intent-fees .intent-strategy__select{font-size:16px;font-size:1.14285714rem}.intent-fees .intent-strategy__selection-wrapper{text-align:center;margin-top:0;padding:0}.intent-strategy__select-wrapper{padding-left:0;max-width:none;position:relative}}@media screen\0{html[data-device-type=dedicated] .intent-fees .intent-strategy__select{width:108%;border:1px solid transparent}html[data-device-type=dedicated] .intent-fees .intent-strategy__select.fullwidth{width:100%}html[data-device-type=dedicated] .intent-strategy__select-wrapper{border:1px solid #d4d9dc;overflow:hidden}}select::-ms-expand{display:none}section.intent-strategy div.container-fluid h3.pp-sans-big-light{margin-left:2%}section.intent-strategy div.split-panel__wrapper h2.pp-sans-big-light{margin-left:2%}

