/**
 * Connect button
 *
 * Copyright (c) 2011-present Qualiteam software Ltd. All rights reserved.
 * See https://www.x-cart.com/license-agreement.html for license details.
 */

.btn.stripe-connect {
  display: inline-block;
  border: 0px none;
  background-image: url(images/blue.png);
  background-size: contain;
  background-position: bottom;
  outline: none;
  width: 190px;
  height: 33px;
  min-height: 33px;
  padding: 0px;
  text-indent: -5000px;
}

/* Retina support */
@media only screen and (min-device-pixel-ratio: 1.5), only screen and (min-resolution: 2dppx) {
  .btn.stripe-connect {
    background-image: url(images/blue@2x.png) !important;
    background-size: contain;
    background-position: bottom;
    outline: none !important;
    min-height: 33px !important;
  }

  .btn.stripe-connect:active {
    box-shadow: inset 0px -4px 4px 1px rgba(0,0,0,0.125);
  }
}

