﻿* {
    box-sizing: border-box;
}

#wrapper {
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: auto;
    margin-right: auto;
    width: 98%;
    max-width: 1200px;
}

#logo {
    padding: 15px;
    background-color: #4a0000;
    border-radius: 15px 15px 0px 0px;
}

#quote {
    font-style: italic;
    color: #512424;
    padding: 100px 15px 15px 15px;
    background: #CAB090 no-repeat;
    background-image: url('/images/slide.png');
}

#line {
    font-size: 6pt;
    background-image: url('/images/slide2.png');
}

.overlay {
    background-color: #EFEFEF;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1000;
    top: 0px;
    left: 0px;
    opacity: .5; /* in FireFox */
    filter: alpha(opacity=50); /* in IE */
}

img {
    border-style: none;
}

.mybody {
    font-family: Georgia, sans-serif;
    font-size: 10pt;
    margin: 0px;
    padding: 0px;
    background-color: #DECDBA;
}

.myform {
    padding: 1%;
    background: white;
    border-radius: 0px 0px 15px 15px;
}

.mydiv {
    padding: 10px;
    background: white;
    border-radius: 0px 0px 15px 15px;
}

.mytable td {
    padding: 5px;
}

.tablecell {
    border: 0px solid transparent;
    background-color: rgba(0,0,0,0);
}

.nowrap {
    white-space: nowrap;
}

.wrap {
    word-break: break-all;
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearfix {
    display: inline-block;
}

* html .clearfix {
    height: 1%;
}

.clearfix {
    display: block;
}

.payment-options label {
    display: inline-flex;
    align-items: center;
    padding: 10px 10px 10px 60px; /* leave space for icon */
    cursor: pointer;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: 5px center;
    background-size: 50px;
    border-radius: 10px
}

.payment-options label[for$="_0"] {
    background-image: url('/images/enets_logo.gif'); /* Credit card */
}

.payment-options label[for$="_1"] {
    background-image: url('/images/enets_logo.gif'); /* Direct debit */
}

.payment-options label[for$="_2"] {
    background-image: url('/images/stripe_logo.gif'); /* Stripe */
}

/* Optional highlight */
.payment-options input[type="radio"]:checked + label {
    border-color: #0078d4;
    background-color: #e8f0fe;
}