
*,
*::before,
*::after {
    box-sizing: border-box;
}
.checkOut iframe {
      /* This fixes a mobile Safari bug */
      height: 38px !important;
}

#payment-form {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

/*label {*/
/*  display: block;*/
/*  color: #13395e;*/
/*  font-size: 15px;*/
/*  font-weight: 500;*/
/*  margin: 15px 0 5px;*/
/*  position: relative;*/
/*}*/

.date-and-code {
  display: flex;
  margin-bottom: 8px;
}

.date-and-code > div:nth-child(1) {
  width: 55.715%;
}
.date-and-code > div:nth-child(2) {
  width: 45.719%;
}

.input-container {
  position: relative;
  display: flex;
  height: 40px;
}
.icon-container:last-child {
  right: 0;
}
.icon-container.payment-method {
  right: 0;
}

.input-container.card-number {
  margin-bottom: 8px;
}
.input-container.expiry-date {
  margin-right: 8px;
}
.card-number-frame, .expiry-date-frame, .cvv-frame {
  flex: 1 1 auto;
  padding-left: 45px;
}
div + button {
  margin-top: 8px;
}
.icon-container {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  width: 26px;
  margin: 0 7px;
}
.icon-container img{
    height: 35px;
    margin: 3px 0 0 5px;
}
.icon-container.payment-method {
  transform: translateY(-50%) rotateY(90deg);
  transition: opacity 0.15s ease-out;
  opacity: 0;
  top: 50%;
}

.icon-container.payment-method.show {
  opacity: 1;
  transition: all 0.4s ease-out;
  transform: translateY(-50%) rotateY(0deg);
}
.icon-container.payment-method.show img{
    height: 30px;
    width: 40px;
    margin: -5px 0 0 -14px;
}
.icon-container.payment-method img {
  width: 100%;
}

[id$="-error"] {
  display: none;
}

.frame {
  opacity: 0;
}

.frame--activated {
    opacity: 1;
    border: solid 1px #0b4691;
    border-radius: 3px;
}

.frame--activated.frame--focus {
  border: solid 1px #13395e;
}

.frame--activated.frame--invalid {
  border: solid 1px #d96830;
}

#icon-card-number-error, #icon-expiry-date-error, #icon-cvv-error{
    margin: 2px 0 0 0;
    width: 25px;
}
.error-message-block{
    margin: 15px 0;
    display: none;
}
.error-message {
  display: block;
  color: #c9501c;
  font-size: 0.9rem;
  margin: 0;
  text-align: center;
}

#pay-button {
    border: none;
    border-radius: 0;
    color: #fff;
    font-weight: 500;
    line-height: 20px;
    min-width: 200px;
    padding: 10px 25px 12px;
    background-color: #333333;
    font-size: 15px;
    /*text-transform: uppercase;*/
    margin: 30px auto 0;
    display: block;
    border-radius: 10px;
}

#pay-button:active {
  background-color: #0b2a49;
}

#pay-button:hover {
  background-color: #ffa814;
}

#pay-button:disabled {
  background-color: #333333;
  box-shadow: none;
  font-size: 15px;
}

#pay-button:not(:disabled) {
  cursor: pointer;
}

.success-payment-message {
  color: #13395e;
  line-height: 1.4;
  display: none;
}
.token {
  color: #b35e14;
  font-size: 0.9rem;
  font-family: monospace;
}

/**
IE11-targeted optimisations
 */
_:-ms-fullscreen,
:root .icon-container {
  display: block;
}

_:-ms-fullscreen,
:root .icon-container img {
  top: 50%;
  -ms-transform: translateY(-50%);
  position: absolute;
}

_:-ms-fullscreen,
#icon-card-number,
_:-ms-fullscreen,
#icon-expiry-date,
_:-ms-fullscreen,
#icon-cvv {
  left: 7px;
}

#checkout-frames-card-number::-ms-clear {
  display: none;
}
.tooltipp-cvv{
    position: absolute;
    right: 0;
    top: 1px;
    background: #697887;
    border-radius: 14px;
    padding: 5px;
    cursor: pointer;
}
.tooltipp-cvv img{
    width: 10px;
    position: relative;
    display: inline-block;
    float: right;
}
.tooltipp-cvv span.tooltiptext{
    visibility: hidden;
    width: 180px;
    height: 115px;
    background-color: #343434;
    color: #fff;
    text-align: center;
    padding: 5px;
    border-radius: 0;
    position: absolute;
    z-index: 1;
    right: 0;
    top: 25px;
    box-shadow: 10px 10px 10px -9px #000;
    font-size: 12px;
}
.tooltipp-cvv:hover{
    background: #343434;
}
.tooltipp-cvv:hover span.tooltiptext{
    visibility: visible;
}

.item-block .form-payment{}
.item-block .image-payment{
    margin: 50px 0 0;
    text-align: center;
}
.item-block .image-payment img{
    height: 100px;
}
/*.item-block{*/
/*    text-align: left;*/
/*    background: #ffffff;*/
/*    border: 1px solid #ededed;*/
/*    padding: 15px 15px 7px;*/
/*    margin-bottom: 7px;*/
/*}*/
.item-block .title-block{
    border-bottom: 5px solid #333333;
}
.item-block .title-block h3{
    font-size: 24px;
}
.item-block .info-block{
    padding: 20px;
}
.item-block .info-block p{
    
    margin-bottom: 10px;
}
.item-block .info-block p:last-child{
    margin: 0;
}
.payement-info{}
.payement-info .main-title{
    text-align: center;
}
.payement-info .main-title img{
    height: 148px;
    margin: 0 auto;
}
.payement-info .main-title h2{
    font-size: 18px;
    margin: 20px 0;
}
.payement-info .main-title h3{
    font-size: 22px;
    margin-bottom: 30px;
}
.payement-info .info-cmd{}
.payement-info .info-cmd h2{
    margin: 0;
    padding: 10px;
    font-size: 20px;
    text-align: center;
    background: #0b4691;
    color: #fff;
    text-transform: uppercase;
}
.payement-info .info-cmd #example1{}
.payement-info .info-cmd .btn-action{
    border: 1px solid #0b4691;
    margin-bottom: 50px;
}
.payement-info .info-cmd .btn-action a{
    text-decoration: none;
    text-align: center;
    width: 100%;
    display: block;
    text-transform: uppercase;
    color: #0b4691;
    font-weight: 600;
    font-size: 22px;
}


.check-amount .selection {
    margin-bottom: 1em;
    position: relative;
    display: inline-block;
}

.check-amount .selection label {
    display: inline-block;
    background-color: #ffffff;
    color: #000000;
    cursor: pointer;
    border-radius: 10px;
    padding: 15px;
    margin: 0;
    line-height: inherit;
    border: 1px solid #8d8d8d;
    width: 245px;
    text-align: center;
}

.check-amount .selection label:hover {
    background-color: #333333;
    color: #ffffff;
}

.check-amount .selection input[type=radio] {
    display: none;
}

.check-amount .selection input[type=radio]:checked ~ label {
    background-color: #333333;
    color: #ffffff;
}

#payment-form .message-loading{
    display: none;
    text-align: center;
    background: #333333;
    cursor: progress;
    margin: 30px auto 0;
    color: #fff;
    padding: 8px 34px 8px;
    width: fit-content;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 10px;
    font-size: 18px;
    box-shadow: none;
}

.HalfModal .modal-content {
    background: #9d9d9d;
    color: #fff;
}

@media(max-width: 735px) {
    .check-amount .selection label {
        width: 330px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .check-amount .selection label {
        width: 290px;
        text-align: center;
    }
}