/**
 * Copyright since 2011 BEST FOR NET s.r.o.
 *
 * COPYRIGHT NOTICE / UPOZORNĚNÍ NA AUTORSKÁ PRÁVA
 *
 * This code is protected by copyright and may not be distributed without prior written consent of the author.
 * Under the license terms, you may use and modify this code only for your own needs.
 * For any questions or further information, please contact us.
 *
 * Tento software je chráněn autorským právem a jeho šíření bez předchozího písemného souhlasu autora není povoleno.
 * Tento kód smíte v souladu s licencí používat a upravovat jen pro své vlastní účely.
 * V případě dotazů nebo zájmu o další informace nás neváhejte kontaktovat.
 *
 * @author    BEST FOR NET s.r.o. <info@bestfornet.cz>
 * @copyright Since 2011 BEST FOR NET s.r.o.
 * @license   Komerční licence – použití, šíření a úpravy tohoto software jsou možné pouze na základě individuální smlouvy s autorem. Pro více informací kontaktujte info@bestfornet.cz
 */

.b4n-bankwire-qr-image {
  border: 1px solid #fff;
  max-width: 100%;
  width: 220px;
  height: auto;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
  padding: 15px;
  margin: 20px 0 0 0;
  border-radius: 5px;
  background-color: white;
}
.definition-list dl {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
.definition-list dl dt,
.definition-list dl dd {
  flex: 0 0 45%;
  padding: 0.625rem;
  margin: 0.125rem;
  background: #f6f6f6;
  color: #000;
}
.payment-detail__wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}
.payment-detail__details {
  flex-basis: 70%;
}
.payment-detail__qrcode {
  flex-basis: 30%;
  text-align: center;
}
@media (max-width:1200px) {
  .payment-detail__details {
    flex-basis: 100%;
  }
  .payment-detail__qrcode {
    flex-basis: 100%;
    text-align: center;
  }
}