
/* styles common for all pages */
body{
    color:#333;
    font-size:90%;
    /* padding-left: 1em; */
    /* margin-bottom:185px;*/
    overflow-y:scroll;
}

p {
    line-height: 1.6em;
}

a {
    font-weight:600;
}

.pure-g{
    font-family: 'Montserrat', sans-serif;
}

/*
 * -- PURE FORM STYLES --
 */
.pure-form label {
    /* margin: 1em 0 -0.4em; */
    font-weight: bold;
    font-size: 80%;
}

.pure-form input[type] {
    border: 1.5px solid rgb(204,204,204);
    box-shadow: none;
    font-size: 100%;
    /* width: 100%; */
    margin-bottom: 1em;
}

.pure-form input[type].has-validation-error {
    border-color: rgb(231, 76, 60);
}

/*
radio checked color is light green
Inspired by https://stackoverflow.com/questions/23167637/is-it-possible-to-change-the-color-of-selected-radio-buttons-center-circle
*/
.pure-form input[type='radio'] {
    -webkit-appearance:none;
    width:12px;
    height:12px;
    border:1px solid darkgray;
    border-radius:50%;
    outline:none;
}
.pure-form input[type='radio']:focus {
    /* box-shadow:0 0 5px 0px orange inset; */
    outline:none;
}
.pure-form input[type='radio']:before {
    content:'';
    display:block;
    width:60%;
    height:60%;
    margin:20% auto;
    border-radius:50%;
}
.pure-form input[type='radio']:checked:before {
    background:rgb(28, 184, 65);
}

.pure-form-error-message {
    margin-top: -1em;
    color: rgb(231, 76, 60);
}

/*
 * -- PURE BUTTON STYLES --
 * I want my pure-button elements to look a little different
 */
.pure-button {
    color: white;
    padding: 0.8em 1.6em;
    border-radius: 3px;
    margin-top:1.5em;
}

a.pure-button-primary {
    background: white;
    color: #1f8dd6;
    border-radius: 5px;
    font-size: 120%;
}


.small-text {
    font-size: 40%;
}

.padding-bottom-20 {
    padding-bottom: 20px;
}

.padding-bottom-40 {
    padding-bottom: 40px;
}

.pure-form input[type="text"]:focus,
.pure-form input[type="password"]:focus,
.pure-form input[type="email"]:focus,
.pure-form input[type="url"]:focus,
.pure-form input[type="date"]:focus,
.pure-form input[type="month"]:focus,
.pure-form input[type="time"]:focus,
.pure-form input[type="datetime"]:focus,
.pure-form input[type="datetime-local"]:focus,
.pure-form input[type="week"]:focus,
.pure-form input[type="number"]:focus,
.pure-form input[type="search"]:focus,
.pure-form input[type="tel"]:focus,
.pure-form input[type="color"]:focus,
.pure-form select:focus,
.pure-form textarea:focus {
    outline: 0;
    border-color: rgb(245,171,53);
}

.button-green {
    background:#1abc9c;
}

.button-blue {
    background:rgb(52,152,219);
}

.button-pink {
    background: rgb(190,144,212);
}

/* credentials */
.button-yellow {
    background: rgb(245,171,53);
    color:#FFF;
}

.is-right {
    text-align:right;
}

.is-center {
    text-align:center;
}



/*
 * -- BASE STYLES --
 * Most of these are inherited from Base, but I want to change a few.
 */

a {
    text-decoration: none;
    color: #1b98f8;
}

legend {
    font-size:1.6em;
}

h3 {
    font-weight:normal;
}

/*
 * -- HELPER STYLES --
 * Over-riding some of the .pure-button styles to make my buttons look unique
 */
.primary-button,
.secondary-button {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border-radius: 20px;
}
.primary-button {
    color: #fff;
    background: #1b98f8;
    margin: 1em 0;
}
.secondary-button {
    background: #fff;
    border: 1px solid #ddd;
    color: #666;
    padding: 0.5em 2em;
    font-size: 80%;
}

/*
 * -- LAYOUT STYLES --
 * [Deprecated] This layout consists of three main elements, `#nav` (navigation bar), `#list` (email list), and `#main` (email content). All 3 elements are within `#layout`
 */
#nav, #list, #top {
    margin: 0;
    padding: 0;
}

#layout {
    margin: 0;
    padding-left:1em;
    padding-right:1em;
}

/*
 * -- NAV BAR STYLES --
 * Styling the default .pure-menu to look a little more unique.
 */
#nav-container {
    background-color: #edf6f7;
    /*position:fixed;*/
    width: 250px;
}

#nav-container {
    border-right:solid 1px #EBEBEB;
}

/* The "pointer" at the end of the selected menu */
#nav-container .pure-menu-item.pure-menu-selected::after {
    content: "\203A";
    color:#d2527f;
    position:absolute;
    right:1em;
    top:0.3em;
}

/* Inherits from the one above */
#nav-container .pure-menu-item.pure-menu-selected.pure-menu-item-faq::after {
    color:rgb(26, 188, 156);
}

/* #nav-container .pure-menu { */
.side-menu.pure-menu {
    background: transparent;
    /*
    border: none;
    text-align: left;
    margin-bottom:1em;
    */
}
.pure-menu-link {
    color:#444;
    padding-left: 7px;
    padding-right: 7px;
    /*letter-spacing: -0.0625em;*/
}

/* #nav-container .pure-menu-link { */
.side-menu .pure-menu-link {
    /*color: #000000;*/
    line-height: 1.4em;
    font-size: 80%;
}
/* #nav-container .pure-menu-item.level-2 { */
.side-menu .pure-menu-item.level-2 {
    padding-left:1.5em;
}
.side-menu .pure-menu-item.level-3 {
    padding-left:3em;
}
/* #nav-container .pure-menu-item .pure-menu-link { */
.side-menu .pure-menu-item .pure-menu-link {
    font-weight:bold;
}
/* #nav-container .pure-menu-item.level-2 .pure-menu-link { */
.side-menu .pure-menu-item.level-2 .pure-menu-link {
    font-weight:normal;
}
.side-menu .pure-menu-item.level-3 .pure-menu-link {
    font-weight:normal;
}
/* #nav-container .pure-menu-item.pure-menu-selected .pure-menu-link { */
.side-menu .pure-menu-item.pure-menu-selected .pure-menu-link {
    color:#d2527f;
}
/* #nav-container .pure-menu-item.pure-menu-selected.pure-menu-item-faq .pure-menu-link { */
.side-menu .pure-menu-item.pure-menu-selected.pure-menu-item-faq .pure-menu-link {
    color:rgb(26, 188, 156);
}

/*
 * -- PURE FORM STYLES --
 * Style the form inputs and labels
 */
.pure-form label {
    /* margin-bottom: 0em; */
}

.pure-form legend {
    border-bottom:none;
}

/*
 * -- EMAIL STYLES --
 * Styles relevant to the email messages, labels, counts, and more.
 */

.email-label-personal,
.email-label-work,
.email-label-travel {
    width: 15px;
    height: 15px;
    display: inline-block;
    margin-right: 0.5em;
    border-radius: 3px;
}
.email-label-personal {
    background: #ffc94c;
}
.email-label-work {
    background: #41ccb4;
}
.email-label-travel {
    background: #40c365;
}


/* Email Item Styles */
.email-item {
    padding: 0.9em 1em;
    border-bottom: 1px solid #ddd;
    border-left: 6px solid transparent;
}
    .email-avatar {
        border-radius: 3px;
        margin-right: 0.5em;
    }
    .email-name,
    .email-subject {
        margin: 0;
    }
    .email-name {
        text-transform: uppercase;
        color: #999;
    }
    .email-desc {
        font-size: 80%;
        margin: 0.4em 0;
    }

.email-item-selected {
    background: #eee;
}
.email-item-unread {
    border-left: 6px solid #1b98f8;
}

/* Email Content Styles */
.email-content-header, .email-content-body, .email-content-footer {
    padding: 1em 0em;
}


    .email-content-header {
        /* border-bottom: 1px solid #ddd; */
    }

        .email-content-title {
            margin: 0.5em 0 0;
        }
        .email-content-subtitle {
            font-size: 1em;
            margin: 0;
            font-weight: normal;
        }
            .email-content-subtitle span {
                color: #999;
            }
    .email-content-controls {
        margin-top: 2em;
        text-align: right;
    }
        .email-content-controls .secondary-button {
            margin-bottom: 0.3em;
        }

    .email-avatar {
        width: 40px;
        height: 40px;
    }

/* credentials */
.menu-icon {
    display:inline-block;
    width:24px;
    height:24px;
    margin-bottom: -6px;
}

.pure-menu-link .menu-icon {
    margin-right:10px;
}

.misc-icon {
    margin-right:10px;
}

.credentials-form input[type] {
    width: 100%;
}

.right-box-legend {
    font-size:1rem;
    margin-bottom:1em;
}

.right-hand-boxes {
    background-color:rgb(246,248,248);
    padding:0.1em 1.2em;
    margin-bottom:1em;
}

.right-hand-boxes p {
    font-size: 80%;
    color: rgb(51,51,51);
}

/* start : overview */
.statistic-chart {
    margin-top:1em;
}
.statistic-chart .statistic-svg {
    float:left;
}
.statistic-chart .statistic-data {
    float:left;
    margin-top:2em;
    margin-left:1em;
}
.statistic-chart .statistic-data .statistic-value {
    font-size:1.5em;
    font-weight:bold;
    clear:right;
}
.statistic-chart .statistic-data .statistic-key {
    font-size:0.7em;
}
.account-statistics-month, .account-statistics-month-selected,
.connection-duration, .connection-duration-selected {
    display:inline-block;
    font-size:0.8em;
    padding:1em;
    border-bottom:solid 2px rgb(234,234,234);
}
.account-statistics-month-selected, .connection-duration-selected {
    border-bottom:solid 2px rgb(245, 171, 53);
    color:rgb(245, 171, 53);
}
.month-selection, .account-history-balance, .connection-history-selection {
    float:right;
}
.account-history-balance {
    padding-bottom:0.5em;
}
.text-darkblue {
    color:#338;
}
.text-red {
    color:#d2527f;
}
.text-green {
    color:rgb(26, 188, 156);
}
.text-silver {
    color:rgb(120,130,150);
}
.text-integrator-green {
    color:#93cc4a;
}
.text-blue {
    color:rgb(52,152,219);
}
.text-yellow {
    color:rgb(245, 171, 53);
}
.text-maroon {
    /* color:rgb(200, 145, 230); */
    color:#d987e7;
}
.text-gray {
    /* color:rgb(153, 153, 153); */
    color:#74848f;
}
.text-darkgray {
    color:#3a4248;
}
.text-center {
    text-align:center;
}
.text-right {
    text-align:right;
}
.text-small {
    font-size:90%;
}
.text-strong {
    font-weight:bold;
}
.update-date {
    color:rgb(153, 153, 153);
    text-align:right;
    font-size:70%;
    padding-top:2em;
}
.account-info-badge {
    margin-top:1em;
    margin-bottom:1em;
    overflow:hidden;
    clear:both;
}
.account-info-badge .account-info-left {
    float:left;
    margin-right:1em;
}
.account-info-badge .account-info-right {
    float:left;
    clear:right;
}
.account-info-badge .account-info-right .account-type {
    font-weight:bold;
    font-size: 0.9em;
}
.account-info-badge .account-info-right .account-date-created {
    font-size: 0.6em;
    color:rgb(153,153,153);
}
.account-info-badge .account-info-right .account-status {
    margin-top:5px;
    font-size: 0.8em;
}
table.account-history-table {
    font-size: 80%;
    width:95%;
    margin-top:1em;
    border-right:none;
    border-left:none;
}
table.account-history-table tr.remove-bottom-border td {
    border-bottom:none;
}
/* Apply only to the first td in the next child i.e. don't cascade */
table.account-history-table tr.has-right-border > td:first-child {
    border-left:solid 4px rgb(245, 171, 53);
}
/* Apply only to the last td in the next child i.e. don't cascade */
table.account-history-table tr.has-right-border > td:last-child {
    border-right:solid 1px #CBCBCB;
}
table.account-history-detail-table, table.account-history-detail-table td {
    border:none;
}
table.account-history-detail-table td i.has-right-margin {
    margin-right:1em;
}
table td.mute-cell {
    color:rgb(153,153,153);
}
table td.has-top-border {
    border-top: 1px solid rgb(153,153,153);
}
.tooltip-html, .modal-html {
    display:none;
}
/* Must specify a style for every HTML tooltip for tippy */
.tippy-tooltip[data-template-id="#suspend-account-tooltip-content"],
.tippy-tooltip[data-template-id="#delete-account-tooltip-content"],
.tippy-tooltip[data-template-id="#launch-next-plan-tooltip-content"] {
  text-align:left;
  font-size: 70%;
}
/* end : overview */

/* start : billing-plans */
.plan-box {
    margin-bottom:1em;
    padding:1em;
    border:solid 1px rgb(240,240,240);
    border-radius:4px;
}
.plan-box .plan-details {
    float:left;
    padding-right:3em;
}
.plan-box .plan-base {
    clear:right;
    font-size:1.5em;
}
.plan-box .plan-base-prints {
    color:rgb(245,171,53);
}
.plan-box .plan-base-connections {
    color:rgb(210,82,127);
}
.plan-box .plan-extra {
    font-size:0.8em;
}
.plan-box .plan-price {
    float:right;
    font-size:1.5em;
    font-weight:bold;
    margin-top:0.3em;
}
.plan-box .plan-check {
    float:left;
    /*
    font-size:1.8em;
    color:rgb(200,200,200);
    */
    width:18px;
    height:18px;
    margin-top:5px;
    margin-right:8px;
    cursor:pointer;
    background-image: url("../images/unchecked.png");
}
/* means if 'plan-box' has 'selected' class as well */
.plan-box.selected {
    border-color:rgb(26, 188, 156);
}
.plan-box.selected .plan-check {
     background-image: url("../images/checked.png");
}
.plan-box.current-plan {
    border:none;
    background-color:rgb(240,240,240);
}
.plan-box.current-plan .plan-check {
     background-image: url("../images/check-mark.png");
}
.currency-selection {
    float:right;
}
.currency-selection .currency, .currency-selection .currency-selected {
    display:inline-block;
    font-size:0.8em;
    padding:1em;
    border-bottom:solid 2px rgb(234,234,234);
}
.currency-selection .currency-selected {
    border-bottom:solid 2px rgb(245, 171, 53);
    color:rgb(245, 171, 53);
}
.prints-column-header {
    color:rgb(245,171,53);
    font-weight:normal;
}
.connections-column-header {
    color:rgb(210,82,127);
    font-weight:normal;
}

.plan-inner-container {

}

.plans-header {
    display: block;
    height: 2em;
}

/* end : billing-plans */

/* start : home */
.blue-body {
    overflow-x: hidden;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#edf6f7+0,edf6f7+44,c3d8db+100 */
    background: #edf6f7; /* Old browsers */
    background: -moz-linear-gradient(45deg, #edf6f7 0%, #edf6f7 44%, #c3d8db 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg, #edf6f7 0%,#edf6f7 44%,#c3d8db 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(45deg, #edf6f7 0%,#edf6f7 44%,#c3d8db 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#edf6f7', endColorstr='#c3d8db',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
.home-page-top {
    background-image:url('../images/home-page.png');
    background-repeat:no-repeat;
}
.home-button {
    position: relative;
    text-align:left;
    font-weight:bold;
    -webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.4), 0 1px 0 rgba(255,255,255,0.2) inset;
	-moz-box-shadow: 0 2px 4px rgba(0,0,0,0.4), 0 1px 0 rgba(255,255,255,0.2) inset;
	box-shadow: 0 2px 4px rgba(0,0,0,0.4), 0 1px 0 rgba(255,255,255,0.2) inset;
    width: 240px;
}
.home-button-top-highlight {
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    top: 1px;
    background-color:#FFFFFF;
    opacity: 0.5;
}
.home-button-big-text {
    font-size:1.2em;
    margin-bottom:0.4em;
}
.home-button-small-text {
    font-size:0.75em;
}
#home-page-title {
    font-size:2.5em;
}
.has-bottom-border {
    border-bottom: solid 3px #EBEBEB;
}
.margin-top-10em {
    margin-top:10em;
}
.margin-right-1em {
    margin-right:1em;
}
.mute-title {
    color:#7ba0ab;
}
#slant {
    position:relative;
}

#slant-background {
    background-color:#FFFFFF;
    width: 1000%;
    height: 55em;
    position: absolute;
    left: -85em;
    top: 32em;
    transform: rotate(-11deg);
    transform-origin: bottom left;
    z-index:-99;
}

.why-use-Printer-Setup {
    color:#7ba0ab;
    margin-top:4em;
}
.why-use-Printer-Setup-item-title {
    text-align:center;
}
.why-use-Printer-Setup-item {
    padding-bottom:2em;
}
.why-use-Printer-Setup-item > div > img {
    padding-top:1.2em;
    margin: 0 auto;
    display: block;
}
#news-and-developments {
    position:relative;
}
#news-and-developments-container {
    background-color:#FFFFFF;
    padding:1em;
    position:relative;
    -webkit-box-shadow:0px 0px 10px 5px #ececec;
    -moz-box-shadow:0px 0px 10px 5px #ececec;
    box-shadow:0px 0px 10px 5px #ececec;
}
#news-and-developments-container h1 {
    color:#7ba0ab;
    font-size:1.4em;
}
#news-and-developments-container h2 {
    margin-top:1.8em;
    margin-bottom:0.3em;
}
#news-and-developments-container h3 {
    margin-top:0;
    margin-bottom:1.5em;
    color:#aaaaaa;
    font-size:0.9em;
}
#print-to-any-printer {
    background-image:url('../images/printers.png');
    background-repeat:no-repeat;
    background-position: center;
    /*width:550px;*/
    height:350px;
    background-size:contain;

}
h1.has-top-margin {
    margin-top:5em;
}
.with-top-border {
    border-top:solid 1px #DEDEDE;
}
#your-own-branding {
    background-image:url('../images/branding.png');
    background-repeat:no-repeat;
    background-position:center;
    /*width:500px;*/
    height:350px;
    background-size:contain;
}
#connect-scales-to-your-website {
    background-image:url('../images/scales.png');
    background-repeat:no-repeat;
    background-position: center;
    /*width:500px;*/
    height:450px;
    background-size:contain;
}
#raw-printing {
    background-image:url('../images/raw.png');
    background-repeat:no-repeat;
    background-position: center;
    /*width:500px;*/
    height:350px;
    background-size:contain;
}
#testimonials {
    text-align:center;
    padding-top:4em;
    padding-bottom:2em;
    position:relative;
}

.has-override-background {
    position:relative;
}
.override-background {
    background-color:#FFFFFF;
    position:absolute;
    left:-500%;
    top:0;
    width:1000%;
    height: 100%;
    z-index:-11;
}
#testimonials h2 {
    letter-spacing:1em;
    font-size:80%;
}
#testimonials h3 {
    font-weight:bold;
    margin-bottom:0.5em;
}
#testimonials h4 {
    color:#74848f;
    font-size:80%;
    font-weight:normal;
    margin-top:0.5em;
}
#Printer-Setup-works-on-almost {
    position:relative;
    padding-bottom:3em;
}
#Printer-Setup-works-on-almost h1 {
    margin-top:2em;
    margin-bottom:2em;
    font-size:1.3em;
    font-weight:bold;
    color:rgb(52,152,219);
    text-align:center;
}
#Printer-Setup-works-on-almost img {
    display:block;
    margin:5px auto;
}
#create-your-account {
    margin-top:2em;
    margin-bottom:2em;
}
#create-your-account h1 {
    font-size:1.8em;
    font-weight:bold;
    color:rgb(52,152,219);
}
#create-your-account p {
    font-size:1.2em;
}
/* end : home */

/* start : pricing */
.large-page-title {
    font-size:2.4em;
    margin-top:2em;
}
.page-description {
    max-width: 680px;
    margin:0 auto 4em;
}

.modal-title img {
    /* Much thanks to https://www.w3schools.com/cssref/pr_pos_vertical-align.asp */
    vertical-align: middle;
    margin-right:1.5em;
}
.modal-title h1, .modal-title img {
    display:inline-block;
}
.pricing-button {
    margin-top: 0;
    font-size: 85%;
}

/* end : pricing */

/* start : download */
.button-maroon {
    background-color:rgb(200, 145, 230);
}
.download-box {
    font-size:90%;
    margin-bottom:1.5em;
    padding:1em;
    border-radius:4px;
    border:solid 1px rgb(200,200,200);
}

.download-box .details {
    display:inline-block;
    position:relative;
    padding-right:1em;
}
.download-box .details .download-name {
    font-weight:bold;
    margin-bottom:0.3em;
    margin-top:1em;
}
.download-box .details .publish-date, .sha1, .supported-os, .download-box .download-size {
    font-size:1em;
    color:rgb(153, 153, 153);
    margin-bottom:0.5em;
}

.download-box .download-size {
    padding-top:0.8em;
    font-size:1.1em;
    color:#3498db;
}
.download-box .os {
    padding-top:1em;
}
/*
.download-box .download button {
    margin-top:1em;
}
*/
div.download-type {
    width : 64px;
    height: 64px;
    padding: 5px;
    display:inline-block;
    background-repeat:no-repeat;
    background-position: center center;
    cursor:pointer;
}
div.download-type[os^='windows'] {
    background-image:url('../images/windows.png');
}
div.download-type[os^='osx'] {
    background-image:url('../images/osx.png');
}
div.download-type[os^='ubuntu'] {
    background-image:url('../images/ubuntu.png');
}
div.download-type[os^='centos'] {
    background-image:url('../images/centos.png');
}
div.download-type[os^='debian'] {
    background-image:url('../images/debian.png');
}
div.download-type[os^='pi'] {
    background-image:url('../images/pi.png');
}

#download-table thead > tr > th i.fa {
    color:rgb(154,154,154);
}
#download-table {
    font-size: 0.9em;
    width: 100%;
    margin-top:1em;
    border-right:none;
    border-left:none;
    border-top:none;
}
#download-table thead {
    background:none;
}
#download-table thead > tr > th, #download-table tr > td {
    border-bottom:solid 1px rgb(230,230,230);
}
#download-table tr > td {
    padding-top:1.4em;
    padding-bottom:1.4em;
}

span.sort {
    width : 10px;
    height: 10px;
    /* padding: 5px; */
    display:inline-block;
    background-repeat:no-repeat;
    background-position: center center;
    cursor:pointer;
}
span.sort.down {
    background-image:url('../images/sort-down.png');
}
span.sort.up {
    background-image:url('../images/sort-up.png');
}
/* end : download */

/* START : docs */
#first-h1 {
    margin-top: 1em;
}
.docs-page-title {
    border-bottom:solid 2px #EBEBEB;
}
.docs h2 {
    color:#72828d;
    margin-top: 2em;
}
section {
    border-top:solid 1px #EBEBEB;
    padding-bottom:1.5em;
    padding-top:1.5em;
}
.round-bullet {
    /* Next 2 lines are the magic */
    border-radius:50%;
    line-height: 2em;
    width:2em;
    height:2em;
    display:inline-block;
    background-color:orange;
    color:white;
    text-align:center;
    margin-right:1em;
}
.step {
    font-size:1.2em;
    font-weight:bold;
    margin-bottom:1em;
}
.step p {
    font-weight:normal;
    font-size:90%;
}
.step ul > li {
    font-weight:normal;
    font-size:0.9em;
}
.step .caption {
    font-weight:normal;
    font-size:0.75em;
    margin-top:0.5em;
    margin-bottom:2em;
}
.os-selection {
    margin-bottom:2em;
    margin-top:2em;
}
.os-selection .pure-button {
    margin-bottom: 1em;
    margin-top:0;
}
pre, .code {
    color:#74848f;
    background-color:#f8f8f8;
    border-radius:0.5em;
    border: solid 2px #e2e5e8;
    padding:1em;
    font-size: 1em;
    font-weight:normal;
}
.code {
    line-height:2em;
    white-space:pre;
    max-height: 750px;
    overflow-y: auto;
}
span.highlight-black-on-gray {
    font-family:mono;
    color:#686868;
    background-color:#eee;
    padding:0.15em 0.35em;
    border:1px solid #ccc;
    border-radius:0.5em;
    white-space:nowrap;
}
h2.feature {
    margin-top:1em;
}
/* END : docs */

/* START : docs/branding-guidelines */

#guidelines-examples .carousel-viewport ul {
    height: 600px;
}

#guidelines-examples .carousel .carousel-previous,
#guidelines-examples .carousel .carousel-next {
  top: 42%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  /* border-radius: 50%; */
  position: absolute;
  /* transform: translateY(-50%); */
  background-repeat:no-repeat;
  background-position: center center;
}

/* END : docs/branding-guidelines */

/* START : docs/remote-printing-with-raspberry-pi */

.status-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 1em;
}

/* END : docs/remote-printing-with-raspberry-pi */

/* START : docs/supported-printers */

.list-of-printers {
    column-count: 3;
}

/* END : docs/supported-printers */

/* START : docs/supported-scales */

.list-of-scales {
    column-count: 1;
}

/* END : docs/supported-scales */


/* START : contact */
.section-title {
    margin-bottom:1.5em;
    /* margin-top:1.3em; */
}
.section-title img {
    vertical-align: middle;
    margin-right:0.8em;
}
#contact-form label {
    color:#000000;
    font-weight:bold;
    font-size:1em;
    margin-bottom:1em;
}
#contact-form input, #contact-form textarea {
    margin-bottom:2em;
}
#contact-form button {
    font-weight:bold;
}
#drag-and-drop-box {
    border: 4px dashed #acbac3;
    text-align:center;
    width: 95%;
    position:relative;
    margin-bottom:2em;
}
#example-pdf {
    position:absolute;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    outline: none;
    opacity: 0;
}
.optional-label {
    color:#acbac3;
    font-size:90%;
    font-style:italic;
    font-weight:normal;
}
#contact-information {
    font-weight:bold;
}
#contact-information dt {
    display:inline-block;
    width:8em;
}
#contact-information dd {
    display:inline-block;
    margin-left:0;
}
.button-xsmall {
   font-size: 70%;
   margin:0 1em 0.5em 0;
   padding:0.5em 1em;
}
/* END : contact */

/* START : case-studies */

.case-studies {
    column-count: 1;
}

/* END : case-studies */

/* START : features */
.feature-box {
    text-align:center;
    padding-bottom:5em;
}
.feature-box img {
    padding-bottom:0.8em;
}
.feature-box h2 {
    font-size:1.3em;
}
.feature-box .feature-brief {
    max-width:21em;
    margin:0 auto;
}
.with-generous-padding {
    padding-top:3em;
    padding-bottom:3em;
}
#secure-and-private-printing {
    background-image:url('../images/secure-and-private-printing.png');
    background-repeat:no-repeat;
    background-position: center;
    /*width:408px;*/
    height:567px;
    background-size: contain;
}
#flexible-authentication {
    background-image:url('../images/flexible-authentication.png');
    background-repeat:no-repeat;
    background-position: center;
    /*width:504px;*/
    height:549px;
    background-size: contain;
}
#usb-weighing-scales {
    background-image:url('../images/usb-weighing-scales.png');
    background-repeat:no-repeat;
    background-position: center;
    /*width:485px;*/
    height:655px;
    background-size: contain;
}
#great-support {
    background-image:url('../images/great-support.png');
    background-repeat:no-repeat;
    background-position: center;
    /*width:450px;*/
    height:310px;
    background-size: contain;
}
#Printer-Setup-vs-google-description {
    max-width: 840px;
    margin:0 auto 4em;
}
#Printer-Setup-vs-google-table {
    border-collapse:separate;
    border:solid #d3d6d9 2px;
    border-radius:9px;
    -moz-border-radius:9px;
    margin:2em 0;
    border-collapse: separate;
    /*max-width:1100px;*/
}
#Printer-Setup-vs-google-table td,
#Printer-Setup-vs-google-table th {
    border-left:solid #d3d6d9 1px;
    border-top:solid #d3d6d9 1px;
    padding-top:2em;
    padding-bottom:2em
}
#Printer-Setup-vs-google-table th {
    border-top: none;
    /* center the img */
    text-align:center;
}
#Printer-Setup-vs-google-table td:first-child,
#Printer-Setup-vs-google-table th:first-child {
     border-left: none;
     text-align:left;
}
#Printer-Setup-vs-google-table th:first-child {
    border-top-left-radius:9px;
    background-color:#FFFFFF;
}
#Printer-Setup-vs-google-table th:last-child {
    border-top-right-radius:9px;
}
/* make the last td have a round bottom right border */
#Printer-Setup-vs-google-table tr:last-child td + td + td {
    border-bottom-right-radius:9px;
}
/* The Printer-Setup column is blue */
#Printer-Setup-vs-google-table th:nth-child(2),
#Printer-Setup-vs-google-table td:nth-child(2) {
    background-color: #f4f8fb;
    width:40%;
}
/* The Google column is gray */
#Printer-Setup-vs-google-table th:last-child,
#Printer-Setup-vs-google-table td:last-child {
    background-color: #f7f7f7;
    width:35%;
}
/* First column text is bold */
#Printer-Setup-vs-google-table td:first-child {
    font-weight:bold;
}
/* END : features */

#side-toggle {
    display:none;
    position: fixed;
    top: 0;
    left: 0;
}

/*
 * -- PHONE MEDIA QUERIES --
*/
@media (max-width: 47.999em) {

    /* start : download */
    .download-box .details {
        border-right:none;
    }
    .download-box .download-size {
        margin-bottom:0;
    }
    /* end : download */

    #slant-background {
        background-color:#FFFFFF;
        width: 200%;
        height: 75em;
        position: absolute;
        left: -3em;
        top: 7em;
        transform: rotate(-11deg);
        transform-origin: bottom left
        z-index:-99;
    }

/*
    .override-background {
        background-color:#FFFFFF;
        position:absolute;
        left: -20em;
        top:0;
        width:180%;
        height: 100%;
        z-index:-11;
    }
*/

    #nav-container {
        background-color: #edf6f7;
    }

    .footer-menu-2 {
        text-align: left;
    }

    #footer-container {
        display:none;
    }

    #all-rights-reserved {
        margin:20px 0 10px 10px;
    }

    .home-page-top {
        background-image: none;
        background-position-x:right;
        background-position-y: 13%;
        background-size: 300px;
        margin-top:0;
    }

    h1.has-top-margin {
        margin-top:1em;
    }

    .plan-column {
        margin-left:10px;
        margin-right:10px;
    }

    #layout {
        /* padding-left: 200px; "left col (nav + list)" width */
        max-width:1200px;
        margin:0 auto;
    }

    #print-to-any-printer,
    #connect-scales-to-your-website,
    #raw-printing,
    #secure-and-private-printing,
    #your-own-branding,
    #flexible-authentication,
    #usb-weighing-scales,
    #great-support {
        background-image: none;
        display: none;
    }
}

/*
 * -- TABLET (AND UP) MEDIA QUERIES --
 * On tablets and other medium-sized devices, we want to customize some
 * of the mobile styles.
 */
@media (min-width: 48em) {

    #list {
        margin-left: -350px;
        width: 100%;
        height: 33%;
        border-bottom: 1px solid #ddd;
    }

    .download-box .download-size {
        margin-bottom:0;
    }

    .home-page-top {
        background-position-x:90%;
        background-position-y:10%;
        background-size: 512px;
        margin-top:0;
    }

    #slant-background {
        background-color:#FFFFFF;
        width: 1000%;
        height: 55em;
        position: absolute;
        left: -100em;
        top: 26em;
        transform: rotate(-11deg);
        transform-origin: bottom left
        z-index:-99;
    }

    h1.has-top-margin {
        margin-top:1em;
    }

    .why-use-Printer-Setup-item-title {
        text-align:left;
    }
}


/*
 * -- DESKTOP (AND UP) MEDIA QUERIES --
 * On desktops and other large-sized devices, we want to customize some
 * of the mobile styles.
 */
/* @media (min-width: 60em) { */
@media (min-width: 64em) {

    body {
        margin-bottom:185px;
    }

    #footer-parent {
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 185px;
        left: 0;
    }

    /* Move the layout over so we can fit the nav + list in on the left */
    #layout {
        /* padding-left: 200px; "left col (nav + list)" width */
        max-width:1200px;
        margin:0 auto;
    }

    /* When the side menu does not have to hide itself,
    make its background as white as the page  */
    #nav-container {
        background-color: #FFFFFF;
    }

    /* This will take up the entire height, and be a little thinner */
    #list {
        margin-left: -350px;
        width:350px;
        height: 100%;
        border-right: 1px solid #ddd;
    }

    /* This will now take up it's own column, so don't need position: fixed; */
    #top {
        width:100%;
        position: static;
        margin: 0;
        padding: 0;
    }

    .home-page-top {
        background-position-x:90%;
        background-position-y:10%;
        background-size:auto;
        background-size: 768px;
    }

    #slant-background {
        background-color:#FFFFFF;
        width: 1000%;
        height: 55em;
        position: absolute;
        left: -85em;
        top: 32em;
        transform: rotate(-11deg);
        transform-origin: bottom left;
        z-index:-99;
    }

    .why-use-Printer-Setup {
        margin-top:10em;
    }

    .why-use-Printer-Setup-item-title {
        text-align:left;
    }

    h1.has-top-margin {
        margin-top: 3.8em;
    }

    #news-and-developments-container {
        padding:2em 2em 2.5em 2em;
        position:absolute;
        bottom:200px;
    }
}

/* START : privacy */

.topic {
    border-top:solid 1px #EBEBEB;
    font-size:1.5em;
    font-weight:bold;
    padding-top:1.5em;
}
.blurb {
    padding-bottom: 2em;
    padding-top:1em;
}
/* END : privacy */

/* START : footer at bottom */
#footer-parent {
/*    position:absolute;
    bottom:0;
    width:100%;
    height:185px;
    left:0;
*/}

html {
    position:relative;
    min-height:100%;
}
/* END : footer at bottom */


#nav-container .api-menu li li a {
    font-weight:normal;
}

#nav-container .api-menu ul ul {
    padding-left:1.5em;
}
