/* 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;
}

#mainHead{background-image:url("https://www.paypalobjects.com/webstatic/en_AU/mktg/hero-images/au-activation-hub-hero_1x.jpg");height:100%;background-repeat:no-repeat;background-size:cover}.hero-bg .hero-bg.parallax .parallax-bg{background-image:url("https://www.paypalobjects.com/webstatic/mktg/wright/au_prospect/au-landingpage-hero_n1_1x.jpg")}#paypalWorks{background-image:url("https://www.paypalobjects.com/webstatic/en_AU/mktg/hero-images/au-activation-hub-n1_1x.jpg");height:100%;background-repeat:no-repeat;background-size:cover;padding:100px 0 100px}#more-three-panels{margin-top:30px}#more-three-panels-container{padding:60px 0}.row-fluid .merchant-panel{background:none repeat scroll 0 0 #FFFFFF;border-image:none;box-sizing:border-box;min-height:320px;padding:30px 40px}.row-fluid .merchant-panel p{line-height:21px;margin-top:4%}.panel-img{display:block;margin:0 auto;margin-bottom:20px;width:70px}ul.organizedList li{border-bottom:1px solid #E5E5E5}.play{position:absolute;margin-top:0}.play>span:after{content:'';position:absolute;width:0;height:0;top:50%;left:50%;margin-top:-12px;margin-left:-10px;overflow:hidden;border:24px solid transparent;border-width:12px 24px;border-left-color:#0C8DC4}.play>span{content:'';position:absolute;left:50%;top:56%;width:45px;height:45px;margin-left:-30px;margin-top:-30px;text-indent:-999em;overflow:hidden;border:2px solid #0C8DC4;border-radius:36px}.row-fluid .merchant-panel{background:transparent;border-left:1px solid #d8d8d8}.row-fluid .merchant-panel:first-child{border-left:none}#shops2 .panel-img{width:100%}#shops2 .center-text{text-align:left;font-size:1.857rem}#shops2 h2,.x-large{font-size:1.857rem}#mainHead .play{position:absolute;margin-top:32px;bottom:60px;left:50%}.row-fluid .span4.steps{width:32%;background:#444;padding:25px 15px;color:#FFF}.row-fluid.white .span4.step1{margin:0}.white{padding:45px 0}.white .pulloutHeadline{margin:0 0 45px}.panel{padding:90px 0 120px}#get-started{padding:80px 0 55px}#get-started .pulloutHeadline{text-align:left;margin:0 0 25px}.sideKickHeadline{width:103%}.shop-head .pulloutHeadline{text-align:left;margin:45px 0 0}.shop-head p.pulloutPara{text-align:left;font-size:20px;padding-top:0}#shops2{padding:10px 0 0}.shop-head .pulloutPara{position:relative}.shop-head .pulloutPara a{font-size:18px;margin-left:30px}html[data-device-type="mobile"] .shop-head .pulloutPara a{display:block}.shop-head .play{top:0;left:0;position:absolute}.shop-head .play>span:after{content:'';position:absolute;width:0;height:0;top:50%;left:50%;margin-top:-4px;margin-left:-2px;overflow:hidden;border:18px solid transparent;border-width:4px 5px;border-left-color:#0079ad}.shop-head .play>span{content:'';position:absolute;left:50%;top:56%;width:15px;height:15px;margin-left:-24px;margin-top:5px;text-indent:-999em;overflow:hidden;border:2px solid #0079ad;border-radius:50%}.note .pulloutPara{font-size:11px;margin:20px 0 0;padding:0;text-align:left}sup{font-size:13px;top:-1px}#sticky-nav .merchant-links{font-weight:normal;margin:2% 2%;float:right}#sticky-nav .span6 p{margin:12px 0 0}.panel.light{padding:60px 0 32px}#sticky-nav .span6 .btn{float:left;margin:6px 22px 0 0}@media all and (min-width:767px) and (max-width:1024px){html[data-device-type="portable"] #shops2 .row-fluid .container4d2p1m [class*="span"]{width:22.5%}#mainHead{background-size:inherit;background-position:49% 25%}.row-fluid .merchant-panel p{min-height:85px}}html[data-device-type="portable"] .howPaypalWorks #paypalWorks .container4d2p1m .span3{width:48.5%}@media (min-width:767px) and (max-width:1024px){.howPaypalWorks #paypalWorks .container4d2p1m .span3{width:48.5%;margin-left:10px}}@media (max-width:768px) and (orientation:portrait){html[data-device-type="portable"] .row-fluid .span3{width:22%}html[data-device-type="portable"] .row-fluid .container4d2p1m .span3{width:22%}html[data-device-type="portable"] .row-fluid .container4d2p1m .span3 .panel-img{margin-bottom:20px}.row-fluid .merchant-panel p{min-height:60px}.sideKickHeadline{min-height:109px}html[data-device-type="portable"] .row-fluid .merchant-panel{padding:30px 10px}}@media (max-width:568px){#get-started .pulloutHeadline{text-align:center}.shop-head .pulloutHeadline{text-align:center}.shop-head p{text-align:center}.white .pulloutHeadline{text-align:center}#mainHead{background-position:38%}select.wide-select{width:263px}}html p.step-text{display:table-cell;vertical-align:middle;height:30px;padding:0;color:#FFFAE5}html p.circle{border:1px solid #c0c0c0;padding:4px 11px;border-radius:50%;width:8px;float:left;margin-right:20px;color:#FFFAFA}#mainHead .pageHeadline{font-size:28px;font-size:2.5rem;line-height:1.25em;font-weight:bold;padding-bottom:14px}#shops3 .center-text{text-align:left;font-size:1.857rem}#mainHead .pulloutPara{font-size:1.28571429rem;color:#777;font-weight:normal;padding-top:0;margin-left:auto;margin-right:auto;width:53%}#mainHead .heroBtn{margin-top:0}.ui-front{z-index:5002}html{overflow-x:hidden}#sticky-nav{background-color:#F5F5F5}#get-started{padding-bottom:0}#get-started-carousel{border-top:1px solid #d8d8d8}#paypalWorks h2{text-align:left}#paypalWorks header{padding-bottom:15px}#paypalWorks footer{padding-top:0}a.play-video.plyvdohide{display:none}.floating-bar.on a.play-video.plyvdohide{display:block}html[data-device-type="mobile"] .span6.vbhidden{display:none}.merchant-links-panel form{margin-top:7px}.floating-bar-spacer.on{display:none}@media (max-width:1023px) and (orientation:landscape){html[data-device-type="portable"] #get-started #get-started-carousel .span3{width:22.5%}}

