/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––

- Common
- Grid
- Base Styles
- Typography
- Links
- Buttons
- Forms
- Lists
- Code
- Tables
- Spacing
- Utilities
- Clearing
- PaymentPage
- ResponsePage
- Media Queries
*/

/*
    Making payment
*/

.processing {
    position: fixed;
    z-index: 999;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
}
/* Transparent Overlay */
.processing:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.6);
}
/* :not(:required) hides these rules from IE9 and below */
.processing:not(:required) { /* hide "loading..." text */
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.processing:not(:required):after {
    content: '';
    display: block;
    font-size: 10px;
    width: 50px;
    height: 50px;
    margin-top: -0.5em;
    border: 5px solid #25184c;
    border-radius: 100%;
    border-bottom-color: transparent;
    -webkit-animation: spinner 1s linear 0s infinite;
    animation: spinner 1s linear 0s infinite;
}
/* Animation */

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/* Common
–––––––––––––––––––––––––––––––––––––––––––––––––– */
header {
    padding: 10px;
    margin: 0 auto;
    text-align: center;
}

footer {
    padding: 10px;
    background: #212121;
    color: #fff;
    height: 40px;
    margin-top: auto;
}

footer p {
    padding-left: 1em;
}

.paypointlogo {
    width: 176px;
    float: right;
}

.validation-summary-errors {
    margin-top: -2rem;
    margin-bottom: 1rem;
    border: 1px solid #ff0000;
    background-color: #fce4e4;
    border-radius: 10px;
    color: #ff0000;
}

.validation-summary-errors ul {
    list-style: none;
    margin: 1rem 1.5rem;
    font-size: 90%;
}

.validation-summary-errors li {
    margin-bottom: 1rem;
}

.validation-summary-errors li:before {
    content: "\2717";
    padding-right: 0.5rem;
    font-weight: 600
}

.field-validation-error {
    color: #ff0000;
}

.field-validation-error:before {
    content: "\2717";
    padding-right: 0.5rem;
    font-weight: 600;
    color: #ff0000;
    color: #ff0000;
}


input[type="email"]:focus:invalid,
input[type="number"]:focus:invalid,
input[type="search"]:focus:invalid,
input[type="text"]:focus:invalid,
input[type="tel"]:focus:invalid,
input[type="url"]:focus:invalid,
input[type="password"]:focus:invalid,
textarea:focus:invalid,
select:focus:invalid {
    border: 1px solid #ff0000;
    outline: 0;
}


.disclaimer {
    float: left;
}

/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.column,
.columns {
    width: 100%;
    float: left;
    box-sizing: border-box;
}

/* For devices larger than 400px */
@media (min-width: 400px) {
    .container {
        width: 85%;
        padding: 0;
    }
}

/* For devices larger than 550px */
@media (min-width: 550px) {
    .container {
        width: 80%;
    }

    .column,
    .columns {
        margin-left: 4%;
    }

    .column:first-child,
    .columns:first-child {
        margin-left: 0;
    }

    .one.column,
    .one.columns {
        width: 4.66666666667%;
    }

    .two.columns {
        width: 13.3333333333%;
    }

    .three.columns {
        width: 22%;
    }

    .four.columns {
        width: 30.6666666667%;
    }

    .five.columns {
        width: 39.3333333333%;
    }

    .six.columns {
        width: 48%;
    }

    .seven.columns {
        width: 56.6666666667%;
    }

    .eight.columns {
        width: 65.3333333333%;
    }

    .nine.columns {
        width: 74.0%;
    }

    .ten.columns {
        width: 82.6666666667%;
    }

    .eleven.columns {
        width: 91.3333333333%;
    }

    .twelve.columns {
        width: 100%;
        margin-left: 0;
    }

    .one-third.column {
        width: 30.6666666667%;
    }

    .two-thirds.column {
        width: 65.3333333333%;
    }

    .one-half.column {
        width: 48%;
    }

    /* Offsets */
    .offset-by-one.column,
    .offset-by-one.columns {
        margin-left: 8.66666666667%;
    }

    .offset-by-two.column,
    .offset-by-two.columns {
        margin-left: 17.3333333333%;
    }

    .offset-by-three.column,
    .offset-by-three.columns {
        margin-left: 26%;
    }

    .offset-by-four.column,
    .offset-by-four.columns {
        margin-left: 34.6666666667%;
    }

    .offset-by-five.column,
    .offset-by-five.columns {
        margin-left: 43.3333333333%;
    }

    .offset-by-six.column,
    .offset-by-six.columns {
        margin-left: 52%;
    }

    .offset-by-seven.column,
    .offset-by-seven.columns {
        margin-left: 60.6666666667%;
    }

    .offset-by-eight.column,
    .offset-by-eight.columns {
        margin-left: 69.3333333333%;
    }

    .offset-by-nine.column,
    .offset-by-nine.columns {
        margin-left: 78.0%;
    }

    .offset-by-ten.column,
    .offset-by-ten.columns {
        margin-left: 86.6666666667%;
    }

    .offset-by-eleven.column,
    .offset-by-eleven.columns {
        margin-left: 95.3333333333%;
    }

    .offset-by-one-third.column,
    .offset-by-one-third.columns {
        margin-left: 34.6666666667%;
    }

    .offset-by-two-thirds.column,
    .offset-by-two-thirds.columns {
        margin-left: 69.3333333333%;
    }

    .offset-by-one-half.column,
    .offset-by-one-half.columns {
        margin-left: 52%;
    }

}


/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */
html {
    font-size: 62.5%;
    height: 100%;
}

body {
    font-size: 1.5em; /* currently ems cause chrome bug misinterpreting rems on body element */
    line-height: 1.6;
    font-weight: 400;
    font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #222;
    margin: 0 auto;
    min-width: 480px;
    height: 100%;
    display: flex;
    flex-direction: column;
}


/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 2rem;
    font-weight: 300;
}

h1 {
    font-size: 4.0rem;
    line-height: 1.2;
    letter-spacing: -.1rem;
}

h2 {
    font-size: 3.6rem;
    line-height: 1.25;
    letter-spacing: -.1rem;
}

h3 {
    font-size: 3.0rem;
    line-height: 1.3;
    letter-spacing: -.1rem;
}

h4 {
    font-size: 2.4rem;
    line-height: 1.35;
    letter-spacing: -.08rem;
}

h5 {
    font-size: 1.8rem;
    line-height: 1.5;
    letter-spacing: -.05rem;
}

h6 {
    font-size: 1.5rem;
    line-height: 1.6;
    letter-spacing: 0;
}

/* Larger than phablet */
@media (min-width: 550px) {
    h1 {
        font-size: 5.0rem;
    }

    h2 {
        font-size: 4.2rem;
    }

    h3 {
        font-size: 3.6rem;
    }

    h4 {
        font-size: 3.0rem;
    }

    h5 {
        font-size: 2.4rem;
    }

    h6 {
        font-size: 1.5rem;
    }
}

p {
    margin-top: 0;
}


/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
    color: #1EAEDB;
}

a:hover {
    color: #0FA0CE;
}


/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
    display: inline-block;
    height: 38px;
    padding: 0 40px;
    color: #555;
    text-align: center;
    font-size: 14px;
    font-weight: 800;
    line-height: 38px;
    letter-spacing: .1rem;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border-radius: 100px;
    border: 1px solid #bbb;
    cursor: pointer;
    box-sizing: border-box;
}

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
    color: #333;
    border-color: #888;
    outline: 0;
}

.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
    color: #FFF;
    background-color: #25184c;
    border-color: #25184c;
    /* background-color: #33C3F0;
     border-color: #33C3F0; */
}

.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
    color: #25184c;
    background-color: #fdc903;
    border-color: #25184c;
}

.button.button-primary:disabled,
button.button-primary:disabled,
input[type="submit"].button-primary:disabled,
input[type="reset"].button-primary:disabled,
input[type="button"].button-primary:disabled {
    opacity: 0.1;
}


/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
    height: 38px;
    padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
    background-color: #fff;
    border: 1px solid #D1D1D1;
    border-radius: 4px;
    box-shadow: none;
    box-sizing: border-box;
    font-size: 1.1em;
    font-family: Helvetica, Arial, sans-serif;
}

/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

textarea {
    min-height: 65px;
    padding-top: 6px;
    padding-bottom: 6px;
}

input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    border: 1px solid #33C3F0;
    outline: 0;
}

input[type="email"]:focus:invalid,
input[type="number"]:focus:invalid,
input[type="search"]:focus:invalid,
input[type="text"]:focus:invalid,
input[type="tel"]:focus:invalid,
input[type="url"]:focus:invalid,
input[type="password"]:focus:invalid,
textarea:focus:invalid,
select:focus:invalid {
    border: 1px solid #ff0000;
    outline: 0;
}

label,
legend {
    display: block;
    margin-bottom: .5rem;
    font-weight: 600;
}

fieldset {
    padding: 0;
    border-width: 0;
}

input[type="checkbox"],
input[type="radio"] {
    display: inline;
}

label > .label-body {
    display: inline-block;
    margin-left: .5rem;
    font-weight: normal;
}

input[type="text"]:disabled {
    border: none;
    display: inline;
    height: 38px;
    padding: 0px;
    background-color: #fff;
    width: 100%;
}

#label {
    display: block;
    margin-bottom: .8rem;
    font-weight: 600;
}

select:disabled {
    border: none;
    outline: 0;
    padding: 0;
    -webkit-appearance: none;
    -webkit-writing-mode: none;
}

/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
    list-style: circle inside;
}

ol {
    list-style: decimal inside;
}

ol, ul {
    padding-left: 0;
    margin-top: 0;
}

ul ul,
ul ol,
ol ol,
ol ul {
    margin: 1.5rem 0 1.5rem 3rem;
    font-size: 90%;
}

li {
    margin-bottom: 1rem;
}


/* Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
    padding: .2rem .5rem;
    margin: 0 .2rem;
    font-size: 90%;
    white-space: nowrap;
    background: #F1F1F1;
    border: 1px solid #E1E1E1;
    border-radius: 4px;
}

pre > code {
    display: block;
    padding: 1rem 1.5rem;
    white-space: pre;
}


/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
th,
td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #E1E1E1;
}

th:first-child,
td:first-child {
    padding-left: 0;
}

th:last-child,
td:last-child {
    padding-right: 0;
}


/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
    margin-bottom: 1rem;
}

input,
textarea,
select,
fieldset {
    margin-bottom: 1.5rem;
}

pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
    margin-bottom: 2.5rem;
}


/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
    width: 100%;
    box-sizing: border-box;
}

.u-max-full-width {
    max-width: 100%;
    box-sizing: border-box;
}

.u-pull-right {
    float: right;
}

.u-pull-left {
    float: left;
}


/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
    margin-top: 2rem;
    margin-bottom: 2rem;
    border-width: 0;
    border-top: 1px solid #E1E1E1;
}


/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf {
    content: "";
    display: table;
    clear: both;
}


/* Payment page
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#barcode {
    text-align: left;
    width: 50%;
    height: 50%;
}

#carddetails fieldset legend {
    display: none;
}

.full {
    text-align: center;
    margin: auto;
}

.tooltip {
    position: relative;
    color: #fff;
    background-color: #888888;
    width: 20px;
    height: 20px;
    display: inline-block;
    border-radius: 100%;
    font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    -webkit-box-shadow: inset -1px -1px 1px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: inset -1px -1px 1px 0px rgba(0, 0, 0, 0.25);
    box-shadow: inset -1px -1px 1px 0px rgba(0, 0, 0, 0.25);
}

.tooltip .tooltiptext {
    color: #222;
    visibility: hidden;
    width: 250px;
    text-align: center;
    border: 2px solid #888888;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 5px 10px 8px #888888;
    padding: 5px;
    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

.tooltip:active .tooltiptext {
    visibility: visible;
}

.digitsOnly {
    width: 50px;
}

.cardholdername {
    width: 60%;
}

.hostedfield {
    padding: 0px;
    margin: -8px;
    height: 60px;
    background: url('/img/PayByLink/cardsmobile.png') no-repeat;
    background-position: left 210px bottom 0px;
}

.MC_DEBIT {
    padding: 0px;
    margin: -8px;
    height: 60px;
    background: url('/img/PayByLink/mastercard_debit.png') no-repeat;
    background-position: left 210px bottom 10px;
}

.MC_CREDIT {
    padding: 0px;
    margin: -8px;
    height: 60px;
    background: url('/img/PayByLink/mastercard_debit.png') no-repeat;
    background-position: left 210px bottom 10px;
}

.VISA_DEBIT {
    padding: 0px;
    margin: -8px;
    height: 60px;
    background: url('/img/PayByLink/visa_credit.png') no-repeat;
    background-position: left 210px bottom 10px;
}

.VISA_CREDIT {
    padding: 0px;
    margin: -8px;
    height: 60px;
    background: url('/img/PayByLink/visa_debit.png') no-repeat;
    background-position: left 210px bottom 10px;
}

.MAESTRO {
    padding: 0px;
    margin: -8px;
    height: 60px;
    background: url('/img/PayByLink/maestro.png') no-repeat;
    background-position: left 210px bottom 10px;
}

.ELECTRON {
    padding: 0px;
    margin: -8px;
    height: 60px;
    background: url('/img/PayByLink/electron.png') no-repeat;
    background-position: left 210px bottom 10px;
}

.validation-summary-errors {
    margin-top: -2rem;
    margin-bottom: 1rem;
    border: 1px solid #ff0000;
    background-color: #fce4e4;
    border-radius: 10px;
    color: #ff0000;
}

.validation-summary-errors ul {
    list-style: none;
    margin: 1rem 1.5rem;
    font-size: 90%;
}

.validation-summary-errors li {
    margin-bottom: 1rem;
}

.validation-summary-errors li:before {
    content: "\2717";
    padding-right: 0.5rem;
    font-weight: 600
}

.field-validation-error {
    color: #ff0000;
}

.field-validation-error:before {
    content: "\2717";
    padding-right: 0.5rem;
    font-weight: 600;
    color: #ff0000;
    color: #ff0000;
}

#paypointlogo {
    text-align: center;
}

#disclaimer {
    text-align: center
}

img {
    max-width: 70%;
    height: auto;
}

/* footer nav
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul.footer {
    padding-left: 0;
    margin-top: 0;
}

ul.footer li {
    display: inline
}

li.footer {
    margin-bottom: 1rem;
}

ul.footer li:after {
    content: "|";
}

ul.footer li:last-child:after {
    content: "";
}

/* tabs
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#tabs a {
    color: #dd1d21;
}

#tabs > ul {
    margin: 0;
    padding: 0;
    display: flex;
    border-radius: 0;
    overflow: hidden;
    width: 100%
}

#tabs > ul > li {
    list-style: none;
    flex: 1;
    width: 50%

}

#tabs > ul > li > a {
    display: block;
    padding: 0 1em;
    text-align: center;
    font-size: 1.2em;
    font-weight: 800;
    line-height: 38px;
    letter-spacing: .1rem;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    color: #dd1d21;
    background-color: #fff;
    border: 2px solid #dd1d21;
}


#tabs > ul > li > a:hover {
    filter: brightness(85%);
}

#tabs > ul > li > a:focus {
    outline: none;
}

#tabs > ul > li.ui-tabs-active > a {
    color: #FFF !Important;
    background-color: #dd1d21 !Important;
}

#tabs > .step-content {
    border: 0px solid #e5e5e5;
    padding: 1em;
    border-top: 0;
}

#tabs > .step-content > .step-tab-panel {
    /*display: none;*/
}

#tabsp > .step-content > .step-tab-panel.active {
    display: block;
}

/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="date"],
input[type="password"],
textarea,
select {
    height: 38px;
    padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
    background-color: #fff;
    border: 1px solid #D1D1D1;
    border-radius: 4px;
    box-shadow: none;
    box-sizing: border-box;
    font-size:1.1em;
    font-family: Helvetica, Arial, sans-serif;
}
/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="date"],
input[type="password"],
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; }
textarea {
    min-height: 65px;
    padding-top: 6px;
    padding-bottom: 6px; }
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="date"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    border: 1px solid #33C3F0;
    outline: 0; }
input[type="email"]:focus:invalid,
input[type="number"]:focus:invalid,
input[type="search"]:focus:invalid,
input[type="text"]:focus:invalid,
input[type="tel"]:focus:invalid,
input[type="url"]:focus:invalid,
input[type="date"]:focus:invalid,
input[type="password"]:focus:invalid,
textarea:focus:invalid,
select:focus:invalid {
    border: 1px solid #ff0000;
    outline: 0; }
label,
legend {
    display: block;
    margin-bottom: .5rem;
    font-weight: 600; }
fieldset {
    padding: 0;
    border-width: 0; }
input[type="checkbox"],
input[type="radio"] {
    display: inline; }
label > .label-body {
    display: inline-block;
    margin-left: .5rem;
    font-weight: normal; }

input[type="text"]:disabled {
    border: none;
    display: inline;
    height: 38px;
    padding: 0px;
    background-color: #fff;
    width: 100%;
}



input[type="date"]:disabled {
    border: none;
    display: inline;
    height: 38px;
    padding: 0px;
    background-color: #fff;
}
#label {
    display: block;
    margin-bottom: .8rem;
    font-weight: 600; }

select:disabled {
    border: none;
    outline: 0;
    padding: 0;
    -webkit-appearance: none;
    -webkit-writing-mode: none }



.paymentcard select {
    width: 100% !important;
    overflow: hidden;
    text-overflow: ellipsis;
}



/* Response page
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1 {
    text-align: center
}

.error {
    text-align: center;
    margin: auto
}

.paid {
    text-align: center;
    margin: auto
}

.wait {
    text-align: center;
    margin: auto
}

.declined {
    text-align: center;
    margin: auto
}

.successful {
    text-align: center;
    margin: auto;
}

.successful .row {
    text-align: left;
}

.authorised {
    text-align: left;
    padding: 20px;
    background: #eee;
    border-radius: 20px;
}

#paypointlogo {
    text-align: center;
}

#disclaimer {
    text-align: center
}

img {
    max-width: 70%;
    height: auto;
}

/* Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*
Note: The best way to structure the use of media queries is to create the queries
near the relevant code. For example, if you wanted to change the styles for buttons
on small devices, paste the mobile query code up in the buttons section and style it
there.
*/


/* Larger than mobile */
@media (min-width: 400px) {

    .tooltip .tooltiptext {
        color: #222;
        visibility: hidden;
        width: 250px;
        text-align: center;
        border: 2px solid #888888;
        background-color: #fff;
        border-radius: 5px;
        box-shadow: 5px 10px 8px #888888;
        padding: 5px;
        /* Position the tooltip */
        position: absolute;
        z-index: 1;
        top: -80px;
        left: 30px
    }

    #disclaimer {
        text-align: left
    }

    #paypointlogo {
        float: left;
        padding-right: 10px
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .hostedfield {
        padding: 0px;
        margin: -8px;
        height: 60px;
        background: url('/img/PayByLink/cards.png') no-repeat;
        background-position: left 210px bottom 0px;
    }
}


/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 550px) {
}

/* Larger than tablet */
@media (min-width: 750px) {
    .vt .quarter {
        width: 25%;
        float: left
    }

    .vt .half {
        width: 50%;
        float: left
    }
}

/* Larger than desktop */
@media (min-width: 1000px) {
}

/* Larger than Desktop HD */
@media (min-width: 1200px) {
}

/* callback
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.callback {
    width: 75%;
    margin: 0 auto;
    text-align: center;
    border: 1px solid #868686;
    background-color: #eee;
    border-radius: 10px;
    margin-bottom: 20px;
}

.callbackform {
    margin: 0 auto;
    border: 1px solid #868686;
    background-color: #eee;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 20px
}

.callback h4 {
    font-size: 2rem;
    line-height: 1.25;
    letter-spacing: -.1rem;
    font-weight: bold;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem
}

.callback p {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem
}

    .callback p.success {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        color: #6ec05d;
        font-weight: bold;
    }

    .callback .one-half{
        width:40%;
    }

.callback .button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
    display: inline-block;
    margin: 0 5px;
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding: 0 40px;
    text-align: center;
    font-size: 14px;
    font-weight: 800;
    line-height: 38px;
    letter-spacing: .1rem;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border-radius: 5px;
    border: 1px solid #868686;
    cursor: pointer;
    box-sizing: border-box;
}

    .callback .button:hover,
    button:hover,
    input[type="submit"]:hover,
    input[type="reset"]:hover,
    input[type="button"]:hover,
    .callback .button:focus,
    button:focus,
    input[type="submit"]:focus,
    input[type="reset"]:focus,
    input[type="button"]:focus {
        border-color: #868686;
        background-color: #fff;
        outline: 0;
    }


textarea {
    min-height: 65px;
    min-width: 90%;
    padding-top: 6px;
    padding-bottom: 6px;
}
  