* {
    margin: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
}

img {
    max-width: 100%;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: rgb(238,238,238);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: rgb(200,200,200);
}

div#topbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: rgb(68,153,204);
    z-index: -100;
}

div.center {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

div#logolinks {
    display: table;
    width: 100%;
    height: 50px;
    margin-top: 50px;
    margin-bottom: 50px;
    background: url('https://www.aplifant.com/images/logos/logo_white-on-blue.png') no-repeat left top;
}

div#logolinks ul {
    display: table-cell;
    vertical-align: middle;
    list-style-type: none;
    padding: 0 0 0 200px;
    font-weight: 600;
}

div#logolinks ul > li {
    float: left;
    padding: 5px 10px 5px 10px;
    margin: 0 10px 0 10px;
}

div#logolinks ul > li.selected {
    background: white;
    border-radius: 5px;
}

div#logolinks ul > li a {
    color: white;
    text-decoration: none;
}

div#logolinks ul > li.selected a {
    color: rgb(68,153,204);
}

div#page_wrapper {
    padding-top: 50px;
    padding-bottom: 50px;
    min-height: calc(100vh - 350px);
}

p {
    line-height: 20px;
}

p.paragraph {
    margin: 20px 0 20px 0;
}

a:link, a:visited {
    color: rgb(68,153,204);
}

a:hover {
    color: rgb(51,102,170);
}

div#title {
    font-size: 30px;
    font-weight: 600;
    padding-bottom: 25px;
}

div.lede {
    margin-bottom: 25px;
    text-align: justify;
    color: grey;
}


div.column {
    width: 100%;
    float: none;
    margin: 0;
}


/* FLOAT BOX */


div.floatbox {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid rgb(238,238,238);
    border-radius: 5px;
    box-shadow: 0 0 10px grey;
    float: left;
    margin-top: 10px;
    margin-bottom: 10px;
}

div.floatbox > p.title {
    height: 30px;
    font-size: 20px;
}

div.floatbox > p.image {
    text-align: center;
    box-shadow: 0 0 5px rgb(170,170,170);
}

div.floatbox > p.text {
    padding-top: 10px;
    text-align: justify;
}


div.break {
    clear: both;
}

/* Product box */

table.product {
    width: 100%;
    table-layout: fixed;
}

table.product td {
    display: block;}

table.product td.text {
    width: 100%;
    vertical-align: middle;
}

table.product td.text ul {
    font-size: 16px;
    list-style-image: url('../images/icons/check.png');
    margin-bottom: 50px;
    text-align: left;
}

table.product td.text ul li {
    margin-bottom: 10px;
}

table.product td.text p.title {
    font-size: 20px;
    font-weight: bold;
    color: rgb(68,153,204);
    margin-bottom: 20px;
}

table.product td.text p {
    margin: 20px 0 20px 0;
    font-size: 18px;
    text-align: justify;
    line-height: 30px;
}

table.product td.text a.button {
    border: 1px solid rgb(68,153,204);
    background: none;
    border-radius: 5px;
    margin-left: 50px;
    margin-right: 50px;
    line-height: 50px;
    padding: 10px 20px 10px 20px;
    font-size: 14px;
    font-weight: bold;
    color: rgb(68,153,204);
    text-decoration: none;
}

table.product td.text a.button:hover {
    background: rgb(68,153,204);
    color: white;
}

table.product td.image {
    width: 100%;
}

table.product td.image img {
    max-width: 100%;
    max-height: 500px;
}

div#bottombar {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: white;
    z-index: -100;
}

div#bottombar div.bottom-outer {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
    display: table;
    height: 100%;
}

div#bottombar div.bottom-inner {
    display: table-cell;
    vertical-align: middle;
    font-weight: bold;
    color: rgb(170,170,170);
}

span#email:before {
    content: attr(data-website) "\0040" attr(data-user);
    unicode-bidi: bidi-override;
    direction: rtl;
}

/* FORMS */


form {
    text-align: center;
}



label {
    display: block;
    text-align: center;
    margin-bottom: 5px;
}


input {
    font-size: 16px;
    width: 200px;
    padding: 10px;
    border: 1px solid rgb(170,170,170);
    border-radius: 5px;
    box-shadow: 0px 0px 5px rgb(170,170,170);
}

input.error {
    background: rgb(238,128,102);
}

input[type=text]:hover, input[type=password]:hover {
    box-shadow: 0px 0px 5px rgb(68,153,204);
}

input[type=submit], input[type=button] {
    color: white;
    background: rgb(68,153,204);
}

input[type=submit]:hover, input[type=button]:hover {
    background: rgb(51,102,170);
}

input[type=submit]:disabled, input[type=button]:disabled {
    background: rgb(170,170,170);
}

label.error {
    width: 100%;
    margin-top: 5px;
    text-align: center;
    font-style: italic;
    color: rgb(170,170,170);
}