/**
 * Copyright since 2007 PrestaShop SA and Contributors
 * PrestaShop is an International Registered Trademark & Property of PrestaShop SA
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License version 3.0
 * that is bundled with this package in the file LICENSE.md.
 * It is also available through the world-wide-web at this URL:
 * https://opensource.org/licenses/AFL-3.0
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@prestashop.com so we can send you a copy immediately.
 *
 * @author    PrestaShop SA and Contributors <contact@prestashop.com>
 * @copyright Since 2020 PrestaShop SA and Contributors
 * @license   https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0
 */
:root {
  --summerSky: #2fb5d2;
  --cyanBlue: #3498db;
  --white: #fff;
  --whiteSmoke: #f1f1f1;
  --black: #000;
  --grey: #7a7a7a;
  --darkGrey: #a6a6a6;
  --red: #ff0000;
}
.addressColor{
  background-color: var(--whitesmoke);
  border: 2px solid var(--black);
}
.margBtm {
  margin-bottom: 30px;
}
.pad10 {
  padding: 10px;
}
.padrightleft10 {
  padding-right: 10px;
  padding-left: 10px;
}
.marg0 {
  margin: 0px;
}
.margTop {
  margin-top: 50px;
}
.pad0 {
  padding: 0px;
}
.pad5 {
  padding: 5%;
}
@media only screen and (min-width: 750px) {
  .pad5 {
    padding: 0px;
  }
}
@media only screen and (max-width: 550px) {
  .pad5 {
    padding: 0px;
  }
}
@media only screen and (min-width: 1000px) {
  .pad5 {
    padding: 5%;
  }
}
.padTopBtmLft {
  padding: 10px 0 10px 10px;
}
.padLftRgt {
  padding: 0 8px;
}
.padTopBtm {
  padding: 10px 0;
}
.mrgTop4 {
  margin-top: 4px;
}
.mrgTop14 {
  margin-top: 14px;
}
.bgColor {
  background-color: var(--white);
}
.txtWhite {
  color: var(--white);
}
.txtBlck {
  color: var(--black);
}
.outerCont {
  padding: 0.9375rem;
}
.innerCont {
  min-width: 100%;
  margin-bottom: 10px;
  box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.2);
}
.card-link {
  background-color: Transparent;
  border: none;
}
.card-link:focus{
  outline: 0px !important;
}
.txtRgt {
  text-align: right;
}
.txtCntr {
  text-align: center;
}
.btnPad {
  padding: 10px 30px;
}
.btnWidth {
  padding: 10px 30px 10px 30px;
}
.maxWidth {
  max-width: 330px;
}
.rowStyle {
  padding: 0px 20px;
}
input:focus {
  outline: none;
}
.fullWidth {
  background-color: var(--white);
  border: solid;
  border-width: 0.6px;
  border-color: var(--grey);
  border-radius: 2px;
  padding-left: 12px;
  width: 100%;
  height: 30px;
}
.errDispNon {
  padding: 2px 0px 7px 3px;
  display: none;
}
.errDispCard {
  padding: 2px 0px 7px 23px;
  display: none;
}
.lblSize {
  font-size: 16px;
}
.padCard {
  padding: 15px 0px;
}
.cardBlock {
  background-color: var(--whiteSmoke);
  padding: 2px 10px;
  border-radius: 5px;
  margin-bottom: 10px;
}
.margRgt {
  margin-right: 4px;
}
.iframe {
  width: 100px;
  height: 100px;
  border: 0;
  position: absolute;
  top: -5000px;
}
.errFont {
  font-style: italic;
  font-size: 14px;
  color: var(--red);
}
.flexInp {
  height: 30px;
  background-color: var(--white);
  border: solid;
  border-width: 0.6px;
  border-color: var(--grey);
  border-radius: 2px;
  padding-left: 12px;
}
.padBtnRadio {
  padding: 10px 0 0 40px;
}
.txtBlock {
  display: none;
}
.txtInput {
  width: 57px;
  height: 35px;
  padding-left: 10px;
}
.loadTxt {
  font-size: 17px;
  margin-top: 5px;
}
.divBorder {
  min-width: 100%;
  border: 2px solid var(--black);
  padding: 19px;
}
.cards {
  min-width: 100%;
  padding: 19px;
}
.dateMonth {
  font-style: oblique;
  font-family: monospace;
  color: var(--darkGrey);
}
.updateBtn {
  float: right;
  margin: 90px 15px 0px 0px;
  cursor: pointer;
}
.padImp {
  padding: 0px !important;
}
.myCardBtn {
  float: right;
  margin: 40px 35px 20px 0;
}
.textNone {
  text-decoration: none;
}
.noBorder {
  border: 0px;
}
.padLft {
  padding-left: 45px;
}
#progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 9999;
  background-color: #00000138;
  opacity: 1;
  display: none;
}
#loader-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
#loader {
  display: inline-block;
  border: 16px solid var(--whiteSmoke);
  border-radius: 50%;
  border-top: 16px solid var(--cyanBlue);
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media only screen and (max-width: 800px) {
  #loader {
    left: 25%;
    top: 25%;
  }
}
@media only screen and (max-width: 800px) {
  .loadTxt {
    font-size: 17px;
    margin-top: 5px;
  }
}
.ulStyle {
  list-style-type: disc;
  margin-left: 40px;
  color: var(--gery1);
}
.margBtmBtn {
  margin-bottom: 15px;
}
.addressHeight {
  min-height: 9rem;
}
.wordWrap {
  word-wrap: break-word;
}
img#visaCheckout {
  width: 10rem;
}
button.gpay-button.black.long {
  width: 10rem;
}
.digitalPaymentError {
  font-size: 18px;
  padding: 10px 14px;
  color: #2fb5d2;
}
.digitalPaymentButton {
  font-weight: bold;
  padding: 10px 0 20px 29px;
}
.cancelBtn {
  margin-right: 10px;
}
.margLft{
  margin-left: 15px;
}
.tableRow{
  display:table-row;
}
.cardDisplay {
  box-shadow: 0px !important;
  border: 0px !important;
}
.padRight {
  padding-right: 10px;
}
.fontPlaceholder ::placeholder{
  color: black;
  line-height: 18px;

}
.modalDisplay {
  position: fixed;
  float: left;
  left: 53%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 400px;
  min-width: 280px;
  height: 400px;
  min-height: 530px;
}
.frameDisplay {
  max-width:100%;
  border: 3px solid #c2c2c2;
}
[data-tooltip] {
  cursor: pointer;
}

[data-tooltip]:before {
  content: attr(data-tooltip);
  display: none;
  position: absolute;
  background: var(--white);
  color: var(--black);
  padding: 4px 8px;
  font-size: 14px;
  line-height: 1.4;
  min-width: 100px;
  text-align: center;
  border: 1px solid var(--black);
}

[data-tooltip-position="right"]:before {
  top: 50%;
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

[data-tooltip-position="right"]:before {
  left: 100%;
  margin-left: 6px;
}

[data-tooltip-position="right"]:after {
  top: 50%;
  margin-top: -6px;
}

[data-tooltip-position="right"]:after {
  left: 100%;
  border-width: 6px 6px 6px 0;
  border-right-color: var(--black);
}

[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
  display: inline;
  z-index: 50;
}

.popUp {
  display:none;
  z-index: 99999999999;
  position: fixed;
  width: 100%;
  background: rgba(0,0,0,0.4);
  top: 0;
  left: 0;
  height: 100%;
}
.popupContent {
  background: white;
  position: absolute;
  top: 50%;
  left: 25%;
  width: 50vw;
  padding: 20px;
  border: 2px solid black;
}
.addressCancelRgt {
  float: right;
}

@supports (-webkit-appearance: -apple-pay-button) {
  .apple-pay-button-with-text {
      width: 25% !important;
      display: inline-block;
      -webkit-appearance: -apple-pay-button;
      -apple-pay-button-type: buy;
  }
  .apple-pay-button-with-text > * {
      display: none;
  }
  .apple-pay-button-black-with-text {
      -apple-pay-button-style: black;
  }
}

@supports not (-webkit-appearance: -apple-pay-button) {
  .apple-pay-button-with-text {
      --apple-pay-scale: 1; /* (height / 32) */
      display: inline-flex;
      justify-content: center;
      font-size: 12px;
      border-radius: 5px;
      padding: 0px;
      box-sizing: border-box;
      min-width: 200px;
      min-height: 32px;
      max-height: 64px;
  }
  .apple-pay-button-black-with-text {
      background-color: black;
      color: white;
  }
  .apple-pay-button-with-text.apple-pay-button-black-with-text > .logo {
      background-image: -webkit-named-image(apple-pay-logo-white);
      background-color: black;
  }
  .apple-pay-button-with-text > .text {
      font-family: -apple-system;
      font-size: calc(1em * var(--apple-pay-scale));
      font-weight: 300;
      align-self: center;
      margin-right: calc(2px * var(--apple-pay-scale));
  }
  .apple-pay-button-with-text > .logo {
      width: calc(35px * var(--scale));
      height: 100%;
      background-size: 100% 60%;
      background-repeat: no-repeat;
      background-position: 0 50%;
      margin-left: calc(2px * var(--apple-pay-scale));
      border: none;
  }
}

.hideBlock {
  display: none;
}


