.price-table{
  margin-top: 10px;
  margin-bottom: 10px;
}

.price {
  list-style-type: none;
  border: 1px solid #2b2b2b;
  margin: 0;
  padding: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.price:hover {
  box-shadow: 0 8px 12px 0 rgba(0,0,0,0.2)
}

.price .header {
  background-color: #111;
  color: white;
  font-size: 25px;
}

.price li {
  border-bottom: 1px solid #232323;
  padding: 20px;
  text-align: center;
  color: #868686;
}

.price .grey {
  background-color: #232323;
  font-size: 20px;
  color: #868686;
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: var(--primary-color);
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #fff;
    border-radius: 100%;
    background: #232323;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
  font-family: 'fontawesome';
    content: '\f00c';
    width: 12px;
    height: 12px;
    position: absolute;
    top: -1px;
    left: 2px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

@media only screen and (max-width: 600px) {
  .columns {
    width: 100%;
  }
}

.paypal-buy-now-button[disabled] {
    cursor: not-allowed;
    opacity: .4;
}
.paypal-buy-now-button {
    display: inline-flex;
    position: relative;
    background: #FFC439;
    border-radius: 5px;
    border: 1px solid #DC911D;
    box-shadow: inset 0 1px 0 0 #FFD699;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 12px;
    padding: 0 23px;
    height: 42px;
    justify-content: center;
    align-items: center;
    color: black;
    text-decoration: none;
    cursor: pointer;
    &:before {
        content: "";
        position: absolute;
        top: -1px;
        bottom: -1px;
        left: -1px;
        right: -1px;
        border-radius: 5px;
        background: linear-gradient(to bottom, #FFAF00 0%, #DC911D 100%);
        z-index: 1;
    }
    &:after {
        content: "";
        border-radius: 4px;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: #FFC439;
        box-shadow: inset 0 1px 0 0 #FFD699;
        z-index: 1;
    }
    span {
        padding-top: 3px;
        padding-right: 7px;
        text-shadow: 0 1px 0 #FFD699;
        z-index: 2;
    }
    svg {
        filter: drop-shadow(0 1px 0 #FFFFFF);
        z-index: 2;
    }
}

.btn-stripe {
    padding: 0 23px;
    height: 42px;
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 10px;
}

.btn-back {
    padding: 9px 23px;
    height: 42px;
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 10px;
}