
.PTPaymentForm
{  
  display: block;
  border: 1px solid #d6d4d4;
  padding: 20px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
.PTPaymentForm h4
{
    margin-top: 16px;
}

@media screen and (max-width: 639px)
{
    .PTPaymentGroup,
    .PTPaymentIconGroup
    {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
    }
}
@media screen and (min-width: 700px) and (max-width: 999px)
{
    .PTPaymentGroup
    {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      -webkit-column-gap: 2em;
      column-gap: 2em;
      row-gap: 1.5em;
    }
    .PTPaymentIconGroup
    {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      -webkit-column-gap: 2em;
      column-gap: 2em;
      row-gap: 0.5em;
    }
}
@media screen and (min-width: 1000px) and (max-width: 1099px)
{
    .PTPaymentGroup
    {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      -webkit-column-gap: 2em;
      column-gap: 2em;
      row-gap: 1.5em;
    }
    .PTPaymentIconGroup
    {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      -webkit-column-gap: 2em;
      column-gap: 2em;
      row-gap: 0.5em;
    }
}
@media screen and (min-width: 1100px) and (max-width: 1359px)
{
    .PTPaymentGroup
    {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      -webkit-column-gap: 2em;
      column-gap: 2em;
      row-gap: 1.5em;
    }
    .PTPaymentIconGroup
    {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      -webkit-column-gap: 2em;
      column-gap: 2em;
      row-gap: 0.5em;
    }
}
@media screen and (min-width: 1360px)
{
    .PTPaymentGroup
    {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      -webkit-column-gap: 2em;
      column-gap: 2em;
      row-gap: 1.5em;
    }
    .PTPaymentIconGroup
    {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      -webkit-column-gap: 2em;
      column-gap: 2em;
      row-gap: 0.5em;
    }
}
.PTPaymentIcon
{
    border: 1px solid white;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 0.75em;
    box-shadow: 0px 1px 4px -1px rgba(0, 0, 0, 0.12), 0px 1px 2px -1px rgba(0, 0, 0, 0.12);
    vertical-align: middle;
    top: 0;
    width: 100%;
    overflow: hidden;

    width: 120px;
    height: auto;
    display:block;
}
.PTPaymentButton
{
    border: 1px solid white;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 0.75em;
    cursor: pointer;
    box-shadow: 0px 1px 4px -1px rgba(0, 0, 0, 0.12), 0px 1px 2px -1px rgba(0, 0, 0, 0.12);
    vertical-align: middle;
    top: 0;
    width: 100%;
    overflow: hidden;

    width: 160px;
    height: auto;
    min-height: 72px;
}
.PTPaymentButton:hover
{
    border: 1px solid black;
}
/*.PTPaymentIcon
{
    width: 22px;
    height: auto;
}*/
.PTTermsContainer
{
  background-color: #5192f3;
  border-color: #4b80c3;
  color: #fff;
  padding: 8px 16px;
  border-radius: 5px;
  margin-bottom: 20px;
}
.PTTermsContainer a 
{
  color: #e6e6e6; 
}
