* {
    /* debug css elements */
    /*
    background: #000 !important;
    color: #0f0 !important;
    outline: solid #f00 1px !important;
    */
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    color: black;
    font-size: 14px;
    font-family: 'Open Sans', 'Verdana', sans-serif;
    font-weight: 300;   
}

a {
    font: inherit;
    color: inherit;
}

html {
    min-width: 770px;
}

body {
    background-color: rgb(250,250,250);
}

h1, h2, h3, p {
    margin: 10px 0;
    color: inherit;
    font-family: inherit;
}

h1 {
    font-size: 30px;
}

h1 sup {
    font-size: 16px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 18px;
    font-weight: 400;
}

p {
    font-size: 18px;
    margin-bottom: 20px;
}

p sup {
    font-size: 10px;
}

p.small {
    font-size: 14px;
}

b, strong {
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: 400;
}

sup {
    color: inherit;
    font-family: inherit;
}

.bg-dark {
    color: white;
    border-color: white;
}

.bg-light {
    color: black;
    border-color: black;
}

.div-header {
    background-color: rgb(90, 90, 100);
    box-sizing: border-box;
    color: white;
    height: 50px;
    overflow: hidden;
    padding: 9px;
    text-align: left;
}

.div-header #debug-mode {
    background-color: gold;
    border: 1px solid black;
    border-radius: 5px;
    color: black;
    display: inline-block;
    font-size: 14px;
    margin-left: 10px;
    padding: 3px 6px;
    vertical-align: top;
}

.div-header a{
    text-decoration: none;
}

.div-header a:hover {
    color: gold;
}

.div-header h1 {
    display: inline-block;
    font-family: "Courier New",monospace;
    font-size: 26px;
    margin-left: 4px;
    margin-top: 4px;
}

.div-header h1 img.logo{
    height: 26px;
}

.div-header ul{
    font: inherit;
    color: inherit;
    list-style: none;
    float: right;
}

.div-header li {
    color: inherit;
    font-family: inherit;
    cursor: pointer;
    font-weight: 400;
    display: inline-block;
    margin-right: 25px;
}

.div-header li * {
    vertical-align: top;
}

.div-header li img { 
    max-height: 36px;
}

.div-header li span {
    display: inline-block;
    margin-top: 7px;
}

.mobile-nav {
    display: none;
}

.connect {
    height: 32px;
    background-color: rgba(25,85,125,1);
    border-top: 1px solid darkslategray;
    border-bottom: 1px solid darkslategray;
    text-align: right;
    padding-right: 5px;
}

.connect * {
    vertical-align: top;
}

.connect img {
    height: 100%;
}

.connect img:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.connect span {
    color: white;
    display: inline-block;
    font-size: 13px;
    margin-right: 6px;
    margin-top: 7px;
}

.container{
    text-align: center; 
    position: relative;
}

#background {
    /* fallback */
    background-color: rgb(242, 242, 250);
    background-image: url("/img/globe-pixel-2000.png");
    
    /* W3C */
    background: url("/img/globe-pixel-2000.png"), linear-gradient(to bottom, rgba(242,242,250,1) 0%,rgba(243,243,243,1) 50%,rgba(237,237,237,1) 51%,rgba(255,255,255,1) 100%); 
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

div.bg-content {
    margin: 60px 0;
}

span.side-by-side {
    display: inline-block;
    width: 49%;
    padding: 0 2%;
    box-sizing: border-box;
    vertical-align: top;
}

span.side-by-side img {
    max-width: 80%;
}

span.overlay-light {
    background-color: rgba(250, 250, 250, 0.9);
    border: 10px solid white;
    box-sizing: border-box;
    display: inline-block;
    max-width: 80%;
    padding: 40px 50px;
}

span.overlay-dark {
    max-width: 80%;
    display: inline-block;
    background-color: rgba(20,20,20,0.8);
    box-sizing: border-box;
    padding: 40px 50px;
}

span.button-go {
    display: inline-block;
    border: 1px solid;
    margin: 20px 0;
    white-space: nowrap;
    padding: 5px 15px;
}

span.button-go:hover { 
    background-color: rgba(255,255,255,0.5);
}

.error-dialog {
    padding: 10px;
    border-left: 1px solid gainsboro;
}

.content {
    background-color: white;
    padding: 10px 30px 50px 30px;
    position: relative;
    border-left: 1px solid gainsboro;
}

.content.triangle {
    border-top: 1px solid rgb(180, 180, 180);
}

.triangle:after,
.triangle:before {
    position: absolute;
    content: " ";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 40px 40px 0 40px;
    border-color: white transparent transparent transparent;
    left: 46.5%;
}

.triangle:before {
    border-color: rgb(180, 180, 180) transparent transparent transparent;
    top: 0px;
}

.triangle:after {
    top: -1px;
}

/* jQuery zero-indexed (first element is zero-th) */

.content.odd {
    background-color: rgb(240,240,240);
}

.content.odd.triangle:after {
    border-color: white transparent transparent transparent;
}

.content.even {
    background-color: white;
}

.content.even.triangle:after {
    border-color: rgb(240,240,240) transparent transparent transparent;
}

.triangle > h1,
.triangle > h2,
.triangle > h3,
.triangle > p {
    margin-top: 60px;
}

.content em {
    font-size: inherit;
    font-style: inherit;
    font-family: 'Courier New', monospace;
}

.content p {
    margin: 15px 0;
    overflow: auto;
}

.content p.footnote {
    font-size: 12px;
    margin: 15px 0;
}

.content a {
    font-size: inherit;
    text-decoration: inherit;
    color: steelblue;
    border-color: steelblue;
}

.content a:hover{
    color: black;
    border-color: black;
}

.content ol, .content ul {
    list-style: initial;
    margin-left: 25px;
}

.content li {
    font-size: 18px;
    margin-bottom: 15px;
}

.content ul.on-this-page {
    list-style-type: none;
}

.content ul.on-this-page li {
    margin-bottom: 5px;
}

.content video {
    max-width: 80%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.div-footer {
    background-color: #f7f7f7;
    overflow: hidden;
    padding-left: 20px;
    padding-top: 10px;
    box-sizing: border-box;
}

.div-footer *{
    font-size: 12px;
}

.div-footer p {
    margin: 10px 0;
}

.div-footer ul {
    margin: 10px 0;
    list-style: none;
}

.div-footer a:hover{
    color: dodgerblue;
}

.div-footer sup {
    color: inherit;
    font-size: 8px;
}

.left-justified{
    text-align: left;
}

.content form {
    background-color: #f7f7f7;
    padding: 5px 25px 20px;
    border: 1px solid #d7d7d7;
}

.content form > h2 {
    font-weight: 400;
}

.content form > * {
    margin: 15px 0 0;
    font-size: 14px;
}

.content form .required {
    color: red;
    font-size: 11px;
}

.content form .info {
    font-size: 11px;
    margin: 0;
}

.content form textarea{
    width: 80%;
}

.content form input, 
.content form textarea, 
.content form select,
.modal-dialog input,
div#password {
    padding: 5px;    
    margin-top: 5px;
    min-width: 240px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;    
    box-sizing: border-box;  
}

.content form input, 
.content form textarea, 
.content form select,
.modal-dialog input{
    border: 1px solid lightseagreen;
    display: block;  
}

.content form input[type="button"], 
.modal-dialog input[type="button"] {
    cursor: pointer;
}

.validation-error {
    color: red;
}

#contact-validation,
#form-validation, 
#login-validation,
#promo-wait,
#processing-wait {
    display: none;
}

.side-by-side-2-img-left {
    text-align: center;
}

div.side-by-side-2-img-left:first-of-type {
    margin-top: 30px;
}

.side-by-side-2-img-left h2 {
    margin: 0;
}

.side-by-side-2-img-left > div {
    display: inline-block;
    vertical-align: middle;
}

.side-by-side-2-img-left div img, 
.side-by-side-2-img-left div img ~ * {
    vertical-align: middle;
}

img.full-width{
    width: 100%;
    margin: 0;
}

img.inline-right{
    margin: 0 0 0 20px;
}

.side-by-side-2-img-left div:first-child{
    padding-right: 5%;
    width: 25%;
    text-align: right;
}

.side-by-side-2-img-left div:last-child{
    padding-left: 5%;
    border-left: 1px solid gainsboro;
    width: 60%;
    text-align: left;
}

.nav-second-level {
    display: inline-block;
    position: absolute;
    left: 0;
    color: white;
}

.nav-second-level a{
    text-decoration: none;
}

.nav-second-level ul{
    list-style: none;
    font: inherit;
    color: inherit;
}

.nav-second-level li {
    border-top: 1px solid black;
    font: inherit;
    color: inherit;
}

.nav-second-level li:first-child {
    border-top: none;
}

.nav-second-level a {
    background-color: rgba(50, 100, 130, 1);
    cursor: pointer;
    display: block;
    padding: 10px 50px 10px 20px;
    text-align: left;
}

.nav-second-level a:hover {
    background-color: steelblue;
}

.nav-second-level a.active {
    background-color: steelblue;
    color: white;
}

.nav-second-level a.buy-now {
    background-color: rgb(245, 120, 0);
}

.centre-justified{
    text-align: center;
}

.content .image-big{
    margin: 30px;
}

.button-block{
    margin: 15px 0;
}

.button {
    background-color: #f7f7f7;
    border: 1px solid #003366;
    color: #003366;
    cursor: pointer;
    display: inline-block;
    margin: 40px 10px 10px;
    padding: 20px;
    width: 40%;
    font-weight: 400;
    font-size: 16px;
}

.button:hover{
    background-color: lightslategrey;
    border-color: lightslategray;
    color: white;
}

.button a {
    color: inherit;
    font: inherit;
    padding: 10px 0;
}

.button a:hover {
    color: inherit;
}

span.faq-p{
    font-family: 'Courier New', monospace;
    font-size: 20px;
}

span.faq-m{
    font-family: 'Courier New', monospace;
    font-size: 20px;
    display: none;
}

p.faq-q {
    background-color: white;
    border-top: 1px dashed gainsboro;
    padding: 5px;
    margin: 0;
    cursor: pointer;
}

p.faq-a {
    display: none;
    margin: 0;
    padding: 15px;
}

p.em {
    border-left: 5px solid lightslategray;
    color: lightslategray;
    font-size: 16px;
    padding-left: 15px;
}

div.spec {
    text-align: left;
}

div.spec td {
    vertical-align: top;
    padding-top: 10px;
}

div.spec td:first-child {
    padding-right: 10px;
}

/* pricing items */

span.plan-size-button {
    border: 1px solid gainsboro;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    margin-right: 3%;
    overflow: hidden;
    padding: 5px 20px;
    text-align: center;
    width: 22%;
    
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,e5e5e5+100;White+3D */
    background: rgb(250,250,250); /* Old browsers */
    /*background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(229,229,229,1) 100%); /* FF3.6-15 */
    /*background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e5e5e5',GradientType=0 ); /* IE6-9 */
}

/* nth of type support, adjust margins */

span.plan-size-button:nth-of-type(1) {
    margin-right: 4%;
}

span.plan-size-button:nth-of-type(2) {
    margin-right: 4%;
}

span.plan-size-button:nth-of-type(3) {
    margin-right: 4%;
}

span.plan-size-button:nth-of-type(4) {
    margin-right: 0;
}

span.plan-size-button:hover {
    border: 1px solid cornflowerblue;
}

span.plan-size-button.selected {
    color: white;
    border: 1px solid navy;
        
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#52b6e5+0,066dab+100 */
    background: rgb(82,182,229); /* Old browsers */
    /*background: -moz-linear-gradient(top,  rgba(82,182,229,1) 0%, rgba(6,109,171,1) 100%); /* FF3.6-15 */
    /*background: -webkit-linear-gradient(top,  rgba(82,182,229,1) 0%,rgba(6,109,171,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(82,182,229,1) 0%,rgba(6,109,171,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#52b6e5', endColorstr='#066dab',GradientType=0 ); /* IE6-9 */
}

.plan-size-button h1 {
    font-size: 20px;
}

.plan-size-button p {
    font-size: 14px;
}

form.price-form {
    padding: 0;
    background: none;
    border: 0;
}

form.price-form .select-currency {
    border: 1px solid gainsboro;
    margin: 10px 0;
    padding: 10px;
}

form.price-form .select-currency * {
    font-size: 18px;
}

form.price-form .select-currency select {
    border: 1px solid gainsboro;
    font-weight: 400;
    padding: 5px 10px;
    display: inline-block;
    margin: 0 0 0 10px;
    min-width: 0;
    
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,e5e5e5+100;White+3D */
    background: rgb(250,250,250); /* Old browsers */
    /*background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(229,229,229,1) 100%); /* FF3.6-15 */
    /*background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e5e5e5',GradientType=0 ); /* IE6-9 */
}

div.price-table {
    width: 100%;
    cursor: default;
}

div.price-table-column {
    text-align: center;
    width: 33.3%;
    border: 1px solid gainsboro;
    margin: 20px 0;
    display: inline-block;
    vertical-align: top;
    box-sizing: border-box;
    position: relative;
}

div.price-table-column.popular {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,f3f3f3+14,ededed+15,ffffff+40&1+0,0.75+25,0+40 */
    /*background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(243,243,243,0.86) 14%, rgba(237,237,237,0.85) 15%, rgba(244,244,244,0.75) 25%, rgba(255,255,255,0) 40%); /* FF3.6-15 */
    /*background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(243,243,243,0.86) 14%,rgba(237,237,237,0.85) 15%,rgba(244,244,244,0.75) 25%,rgba(255,255,255,0) 40%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(243,243,243,0.86) 14%,rgba(237,237,237,0.85) 15%,rgba(244,244,244,0.75) 25%,rgba(255,255,255,0) 40%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 ); /* IE6-9 */
}

div.price-table-column-overlay {
    background: rgba(255,255,255,0.95);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    display: none; /* to be jquery.show()n by plan selector script */
}

div.price-table-column-overlay div.dash-box{
    border: 2px dashed black;
    padding: 10px;
    margin: 10px;
}

div.price-table-cell {
    border-top: 1px solid gainsboro;
    padding: 15px 5px;
    position: relative;
    vertical-align: top;
}

div.price-table-cell.head {
    font-size: 18px;
    padding: 10px 5px;
    border-top: 0;
}

div.price-table-cell.empty {
    background: rgb(250,250,250);
}

div.price-table-cell.empty * {
    opacity: 0;
    color: transparent;
}

div.price-table div.info-strip {
    background: black;
    color: white;
    font-size: 14px;
    font-weight: 400;
    padding: 4px 0;
}

div.price-table div.tooltip {
    background: rgb(250,250,250);
    border: 1px solid cornflowerblue;
    border-radius: 5px;
    bottom: 112%;
    box-sizing: border-box;
    font-size: 12px;
    margin: 0 5%;
    padding: 10px;
    position: absolute;
    width: 90%;
    display: none;
}

div.price-table-cell:hover div.tooltip {
    display: block;
}

div.price-table div.tooltip::before {
    border-color: cornflowerblue transparent transparent;
    border-style: solid;
    border-width: 15px 15px 0;
    content: " ";
    left: 45%;
    position: absolute;
    top: 100%;
}

div.price-table div.tooltip::after {
    border-color: rgb(250,250,250) transparent transparent;
    border-style: solid;
    border-width: 15px 15px 0;
    content: " ";
    left: 45%;
    position: absolute;
    top: 98%;
}

div.price-table-cell.updating#price-cell {
    color: lightsteelblue;
    font-style: italic;
}

div.price-table div.num-licenses {
    background: rgb(250, 250, 250);
    border: 1px solid gainsboro;
    margin: 10px 5px 0;
    padding: 5px 10px 10px 5px;
    text-align: center;
    display: none;
}

div.price-table div.num-licenses input {
    border: 1px solid cornflowerblue;
    background: white;
    display: inline-block;
    margin-top: 5px;
    min-width: 50px;
    padding: 5px;
    text-align: center;
    width: 30%;
    box-sizing: border-box;
}

div.price-table div.num-licenses.error label {
    color: red;
}

div.price-table div.num-licenses.error input {
    border-color: red;
    background: lavenderblush;
}

button {
    border: 1px solid gainsboro;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    padding: 5px 10px;
    
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,e5e5e5+100;White+3D */
    background: rgb(250,250,250); /* Old browsers */
    /*background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(229,229,229,1) 100%); /* FF3.6-15 */
    /*background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e5e5e5',GradientType=0 ); /* IE6-9 */
}

button:hover {
    border: 1px solid cornflowerblue;
}

form.table {
    margin: 20px 0;
    padding: 0;
}

.table div.dark {
    background-color: rgb(60, 60, 60);
    color: white;
}

.table div.light:nth-child(even){
    background-color: #f7f7f7;
}

.table div.light:nth-child(odd){
    background-color: #fbfbfb;
}

.table .row:first-of-type {
    border-top: 0 none;
}

.table .row {
    border-bottom: 2px solid white;
    border-top: 2px solid white;
    margin: 0;
    text-align: center;
    position: relative;
}

.table .row:last-of-type {
    border-bottom: 0 none;
}

.table .cell,
.table .cell-full-width {
    background-color: inherit;
    box-sizing: border-box;
    color: inherit;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
}

.table .cell {
    padding: 0 20px;
    width: 49%;
}

.table .cell-full-width{
    width: 95%;
}

.table .cell *,
.table .cell-full-width *{
    color: inherit;
}

.table .cell img {
    vertical-align: middle;
}

.table .cell .info {
    font-size: 12px;
    margin-bottom: 8px;
}

.table .cell input,
input.num-users-select {
    box-sizing: border-box;
    display: inline-block;
    height: 30px;
    min-width: 60px;
    text-align: center;
    width: 60px;
    border-left: 0 none;
    border-right: 0 none;
    margin: 0;
}

div.button-dec, 
div.button-inc {
    background: white none repeat scroll 0 0;
    border: 1px solid lightseagreen;
    box-sizing: border-box;
    color: lightseagreen;
    display: inline-block;
    font-family: "Source Code Pro","Courier New",monospace;
    font-size: 22px;
    font-weight: 300;
    height: 30px;
    text-align: center;
    vertical-align: top;
    width: 30px;
    cursor: pointer;
}

div.button-dec{
    border-right: 0 none;
    border-radius: 15px 0 0 15px;
    -moz-border-radius: 15px 0 0 15px;
    -webkit-border-radius: 15px 0 0 15px;
}

div.button-inc {
    border-left: 0 none;
    border-radius: 0 15px 15px 0;
    -moz-border-radius: 0 15px 15px 0;
    -webkit-border-radius: 0 15px 15px 0;
}

.table .cell .box{
    text-align: center;
    display: inline-block;
}

.table .cell div.radio-text, 
.table .cell div.checkbox-text {
    background-color: white;
    border: 1px solid lightseagreen;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    margin: 10px 0;
    padding: 5px 9px;
    text-align: left;
    cursor: pointer;
}

.table .cell .radio-text *,
.table .cell .checkbox-text * {
    vertical-align: top;
    cursor: pointer;
}

.table .cell .radio-text input,
.table .cell .checkbox-text input{
    min-width: 0;
    width: auto;
    height: auto;
    margin-top: 4px;
}

.table .cell .radio-text label,
.table .cell .checkbox-text label{
    padding-left: 10px;
}

input[type="tel"]{
    -webkit-appearance: none;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
}

.table .cell div.disabled {
    background-color: transparent;
    border-color: silver;
    color: silver;
    cursor: default;
}

.table .cell div.disabled * {
    cursor: default;
}

.table #cell-total.cell {
    height: 105px;
    margin-right: 30%;
    width: 69%;
    white-space: nowrap;
}

.table #cell-proceed.cell {
    height: 105px;
    padding: 0;
    position: absolute;
    right: 0;
    width: 30%;
}

#button-proceed {
    background-color: rgb(0, 180, 90);
    box-sizing: border-box;
    cursor: pointer;
    font-size: 20px;
    height: 100%;
    padding: 38px 25px 15px;
    white-space: nowrap;
}

#button-proceed img {
    padding-left: 10px;
}

#button-proceed:hover {
    background-color: steelblue;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Chrome/Safari/Opera */
  -khtml-user-select: none;    /* Konqueror */
  -moz-user-select: none;      /* Firefox */
  -ms-user-select: none;       /* IE/Edge */
}

.table .price {
    font-size: 24px;
    margin-bottom: 15px;
}

span {
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}

#base-price-1,
#base-price-10{
    display: none;
}

.img-float{
    margin: 40px 0;
}

.img-float .img,
.img-float .text{
    display: inline-block;
    vertical-align: top;
    box-sizing: border-box;
}

.img-float .img{
    max-width: 30%;
    overflow: hidden;
}

.img-float .img img{
    max-width: 100%;
}

.img-float .text{
    max-width: 69%;
}

.img-float .text li{
    margin: 0;
    list-style-type: none;
}

.section {
    margin: 30px 0;
    padding: 15px 30px;
}

.light {
    background: #f7f7f7;
}

div#password {
    border: 2px dashed black;
    display: inline-block;
    font-family: "Courier New",monospace;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 2px;
    text-align: center;
    background-color: white;
}

.purchase-order {
    background: white none repeat scroll 0 0;
    border: 1px solid #d7d7d7;
    box-shadow: 0 3px 5px -3px black;
    padding: 10px 20px;
    overflow: hidden;
}

.purchase-order .title {
    float: right;
    text-align: right;
}

.purchase-order .company-block {
    display: inline-block;
    float: left;
    margin-bottom: 20px;
}

.purchase-order .business-block, 
.purchase-order .contact-block {
    display: inline-block;
    float: left;
    margin: 20px 60px 20px 0;
}

.purchase-order .separator {
    border-top: 1px solid #d7d7d7;
    clear: both;
}

.purchase-order h2 {
    font-size: 14px;
    font-weight: 400;
    margin: 2px 0;
}

.purchase-order p {
    font-size: 14px;
    margin: 2px 0;
}

.purchase-order p.info,
.purchase-order span.info {
    font-size: 11px;
    margin: 0;
}

.purchase-order .notes-block {
    margin: 10px 0 2px 5px;
}

.order-table {
    clear: both;
    border: 1px solid #d7d7d7;
}

.order-table * {
    box-sizing: border-box;
}

.order-table .row {
    padding: 5px;
}

.order-table .row:first-child {
    border-bottom: 1px solid #d7d7d7;
}

.order-table .row:nth-child(odd) {
    background-color: #f7f7f7;
}

.order-table .row:nth-child(even) {
    
}

.order-table .row div{
    display: inline-block;
    font-weight: 400;
}

.order-table .row div.indent {
    padding-left: 30px;
    font-weight: 300;
}

.order-table .cell-wide {
    width: 58%;
}

.order-table .cell-narrow {
    width: 10%;
    text-align: center;
}

.order-table .cell {
    width: 14%;
    text-align: right;
}

.order-table .right {
    text-align: right;
}

.order-table .total,
.order-table .total * {
    font-weight: 400;
}

.order-table .row.total {
    border-top: 1px solid #d7d7d7;
}

.order-table input.order-check,
.order-table input.order-radio {
    display: inline-block;
    min-width: 0;
    padding: 0;
    margin: 0;
    vertical-align: middle;
    height: 18px;
}

.order-table label{
    font: inherit;
    vertical-align: middle;
}

.order-table .deselected,
.order-table .deselected *{
    color: #a7a7a7;
}

.order-table input#order-qty {
    border: 1px solid dodgerblue;
    display: inline-block;
    font: inherit;
    line-height: inherit;
    margin-bottom: 2px;
    margin-top: 0;
    min-width: 0;
    padding: 0;
    text-align: center;
    width: 80%;
}

.order-table #period-y-discount,
.order-table #period-y-discount *,
.order-table #promo-row,
.order-table #promo-row *{
    color: red;
}

.content form div.eula {
    background: white none repeat scroll 0 0;
    border: 1px solid #d7d7d7;
    max-height: 100px;
    overflow-x: auto;
    overflow-y: scroll;
    padding: 15px 20px;
    margin: 15px 0;
}

.eula h1{
    font-size: 14px;
}

.eula h2, .eula p{
    font-size: 12px;
}

.eula b {
    font-weight: 400;
}

.content form .inline-check {
    display: inline-block;
    line-height: 24px;
    margin: 0 5px 0 0;
    min-width: 0;
    padding: 0;
    vertical-align: text-bottom;
}
label.inline-check input {
    height: 20px;
}

.content form .inline {
    display: inline-block;
    vertical-align: bottom;
}

.content form .stripe {
    margin-left: 10px;
}

.modal-container {
    /* modal container must appear before body content markup */
    position: fixed;
    display: none;
    background: rgba(0,0,0,0.5);
    text-align: center;
    z-index: 10;
}

.modal-overlay {
    display: inline-block;
    text-align: center;
}

.modal-dialog {
    display: inline-block;
    background: white;
    border: 1px solid #a7a7a7;
    max-width: 400px;
    box-shadow: 0 4px 15px -5px black;
    padding: 15px;
}

.modal-dialog h2 {
    font-weight: 400;
    margin-bottom: 10px;
}

.modal-dialog p {
    margin: 10px 0;
}

.modal-dialog input#modal-continue,
.modal-dialog input#modal-cancel {
    display: inline-block;
}

#confirm-button {
    background: dodgerblue none repeat scroll 0 0;
    border: 1px solid black;
    border-radius: 5px;
    box-shadow: 0 0 15px -5px slategray inset;
    color: white;
    cursor: pointer;
    font-weight: 400;
}