 /*classes to get the app store*/
 .app {
     display: block;
     margin-left: 10px;
     height: 40px;
     width: 135px;
     float: left;

     background: url("https://www.paypalobjects.com/webstatic/mktg/wright/icons/appbadges_2x_sprite.png") no-repeat 0 0;
     background-image: url("https://www.paypalobjects.com/webstatic/en_GB/mktg/wright/icons/appbadges_1x_sprite.png")\9;
     background-size: 135px 480px;
 }
 .apple {
     margin-left: 0;
 }
 .apple:hover,
 .apple:focus {
     background-position: 0 -40px;
 }
 .android {
     background-position: 0 -80px;
     float: left;
 }
 .android:hover,
 .android:focus {
     background-position: 0 -120px;

 }
 .windows {
     background-position: 0 -160px;
     float: left;
 }
 .windows:hover,
 .windows:focus {
     background-position: 0 -200px;
 }

 html[data-device-type="mobile"] .app {
     margin-left: 0;
     width: 100%;
     margin-bottom: 20px;
 }

.device-row {
    clear: both;
    padding-bottom: 16px;
}
.device-row .app {
    margin-top: 16px;
}

