/* 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;
}

.hero-bg {
    background-image: url("https://www.paypalobjects.com/webstatic/en_GB/mktg/business/here-page/323833-PayPal-Here.jpg");
}
.n1 {
    background-image: url("https://www.paypalobjects.com/webstatic/en_GB/mktg/business/here-page/top-down.jpg");
}
.n2 #rotating-ipad {
    float: left;
    margin-top: 120px;
}
html[data-device-type="portable"] .n2 #rotating-ipad {
    max-width: 50%;
    margin-top: 80px;
}
html[data-device-type="mobile"] .n2 #rotating-ipad {
    display: none;
}
html[data-device-type="mobile"] .n2 {
    background-image: url("https://www.paypalobjects.com/webstatic/en_GB/mktg/business/here-page/bounce-pad.jpg");
}
.pphere-apps {
    padding-bottom: 20px;
}
html[data-device-type="mobile"] .hero-bg .hatch a {
    color: #009cde;
}
html[data-device-type="mobile"] .hero-bg {
    background-position: 85% top;
}
html[data-device-type="portable"] a[href^=tel] {
    color: #fff;
}
.row-fluid .span4 {
    width: 31%;
}
/* CSS for videos */
.excite-bg {
    height: 530px;
    overflow: hidden;
}
#reader-explosion {
    margin-top: -143px;
}
.bouncePad {
    margin-top: -24px;
}
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
    #reader-explosion {
        margin-top: 0;
    }
}
html[data-device-type="mobile"] #reader-explosion {
    display: none;
}
html[data-device-type="portable"] .excite-bg .editorial-container {
    margin-top: 50px;
}
.excite-bg-two {
    background: transparent url("https://www.paypalobjects.com/webstatic/en_GB/mktg/business/here-page/case-study-green-tomato-cars.jpg") center top no-repeat;
    background-size: 100% 100%;
    height: 350px;
}
.excite-bg-three {
    background: transparent url("https://www.paypalobjects.com/webstatic/en_GB/mktg/business/here-page/case-study-greedy-goat.jpg") center top no-repeat;
    background-size: 100% 100%;
    height: 350px;
}
html[data-device-type="dedicated"] .excite-bg-two .editorial-container,
html[data-device-type="dedicated"] .excite-bg-three .editorial-container {
    height: 350px;
}
html[data-device-type="dedicated"] .excite-bg-two .editorial-cell,
html[data-device-type="dedicated"] .excite-bg-three .editorial-cell {
    vertical-align: inherit;
}
.play, .play-two, .play-three {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.play > span, .play-two > span, .play-three > span {
    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;
    -webkit-transform: translate3d(0,0,0); /* Fix for rendering error */
}
.play > span:after, .play-two > span:after, .play-three > 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: #fff;
}
/* video for explore app */
 .video-player {
    background: #fff;
}
.menu-video, .check-video, .list-video {
    display: none;
}
.video-player .video-fullscreen {
    display: none;
}
.appImg .video-controls {
    display: none;
}
.video-player:after {
    display: none;
}
/* CSS for videos end here */
 .four-panel {
    padding-bottom: 30px;
}
.fees {
    padding: 90px 0;
}
.seventh {
    padding: 15px 0;
}
.seventh h4 {
    color: #666;
}
.know-panel {
    padding: 30px 0;
}
.text {
    font-size: 16px;
}
html[data-device-type="mobile"] .hero-bg h1 {
    display: none;
}
html[data-device-type="mobile"] .hero-bg a {
    display: none;
}
html[data-device-type="mobile"] .hero-bg p {
    display: none;
}
.heroCTA {
    background-color: #F5F5F5;
    padding: 5%;
}
html[data-device-type="mobile"] .heroCTA p {
    font-size: 17px;
}
.heroCTA-btn {
    margin: 0 auto 0 10%;
}
html[data-device-type="mobile"] .heroCTA a {
    display: block;
    margin: -10px 0 10px;
}
html[data-device-type="portable"] .heroCTA {
    display: none;
}
html[data-device-type="mobile"] .heroHead {
    display: block;
    color: #0285d2;
}
html[data-device-type="mobile"] .heroPararaph {
    display: block !important;
    font-size: 20px;
}
html[data-device-type="portable"] .heroHead {
    display: none;
}
html[data-device-type="portable"] .heroPararaph {
    display: none;
}
html[data-device-type="mobile"] .excite-bg {
    height: 324px;
    background-image: none;
    background-color: #009cde;
}
html[data-device-type="mobile"] .video-text {
    bottom: 60px;
    padding: 0 10px;
}
.video-text-two, .video-text-three {
    position: absolute;
    left: 0;
    top: 120px;
    margin-left: 16%;
}
html[data-device-type="mobile"] .play-two, html[data-device-type="mobile"] .play-three {
    margin-top: 80px;
}
html[data-device-type="mobile"] .excite-bg-three {
    background-size: auto 100%;
}
.explore {
    left: 30px;
    position: relative;
    top: 40px;
}
.left-panel {
    margin-left: 47%;
}
.menu-explore {
    position: absolute;
    top: 112px;
    width: 148px;
}
.number {
    bottom: 30px;
    position: absolute;
    width: 140px;
}
.right-panel {
    margin-right: 47%;
}
.check-in {
    position: absolute;
    top: 102px;
    width: 153px;
}
.list-view {
    position: absolute;
    bottom: 30px;
    width: 140px;
}
html[data-device-type="portable"] .border {
    margin-left: -35px;
}
.link-circle {
    border: 2px solid #009cde;
    border-radius: 12px;
    padding: 1px 1px;
}
.link-circle:hover {
    border: 2px solid #0c8dc4;
}
.appImg {
    margin: 28px 0 0 24px;
}
.appImg img {
    display: block;
}
html[data-device-type="portable"] .row-fluid > .dark {
    webkit-transform: translate3d(0, 0, -1);
    transform: translate(0, 0);
}
.numberPad {
    overflow: hidden;
    margin-bottom: 30px;
}
.numberPad img {
    float: left;
    padding-right: 10px
}
.line {
    background-color: #777777;
    float: left;
    height: 1px;
    width: 100%;
}
.point {
    background-color: #777777;
    border-radius: 100%;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    float: right;
    height: 8px;
    position: relative;
    top: -5px;
    width: 8px;
}
.headborder {
    height: 5px;
    width: 140%;
}
.point-pos {
    float: left
}
.line-pos {
    float: right;
}
.right-bullet {
    margin-left: -60px;
    margin-top: 10px;
}
html[data-device-type="portable"] .right-bullet {
    margin-left: -28px;
    margin-top: 0;
}
.mobPara {
    margin-top: -20px;
}
html[data-device-type="mobile"] .ntkContent {
    margin-bottom: -18px
}
html[data-device-type="mobile"] .ntkContent {
    margin-bottom: -18px
}
html[data-device-type="mobile"] .ntkPara {
    margin-top: -10px
}
html[data-device-type="portable"] .video-text {
    top: 235px;
    left: 10px;
}
html[data-device-type="mobile"] .ntpHead {
    margin-top: 15px
}
html[data-device-type="mobile"] .ordrBTN {
    display: block;
    padding-top: 20px;
    text-align: center;
}
.span4.leftSection {    
    padding-top: 8%;
    width: 34%;    
}
.span4.bouncePadSection {
    padding-left: 2%;
}
.bottomLine {
    min-height: 67px;
}
.large.leftSectionText {
    text-align: center;
}
.contentPara.leftSectionText {
    text-align: center;
}
.legal-notes.additional {    
    padding-top: 32%;
}
html[data-device-type="portable"] .bouncePad {
    margin-top: -4px;
}
html[data-device-type="portable"] .legal-notes.additional {
    padding-top: 47%;
}
html[data-device-type="portable"] img.bouncePad {
    margin-bottom: 5%;
}
html[data-device-type="portable"] .span3.Logo {
    margin-left: -22.6%;
}
@media (orientation: portrait) {
    html[data-device-type="portable"] img.bouncePad {
        margin-bottom: 15%;
    }
    html[data-device-type="portable"] .legal-notes.additional {
        padding-top: 27%;
    }
     html[data-device-type="portable"] .span3.Logo {
        margin-left: -30.6%;
    }
}
.span3 > img {
    margin-left: -8px;
    padding-bottom: 12px;
}
.monthelyFees {
    padding-bottom: 0;
}
html[data-device-type="dedicated"] .contentLink.add {
    margin-top: 4px;
}

