* {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-size: 125%;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    text-align: left;
    box-sizing: border-box;
    overflow-x: hidden;
    min-height: 100%;
}

h1 {
    font-size: 1.35em;
    margin-bottom: 0.7em;
}

h2 {
    font-size: 1.1em;
    margin-bottom: 0.5em;
    margin-top: 1.2em;
    padding-left: 0.2em;
    padding-top: 0.3em;
    padding-bottom: 0.3em;
    background-color: #DDDDDD;
}

h3,
p.readme {
    font-size: 1.0em;
    margin-bottom: 0.7em;
    font-weight: bold;
}

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

img.screenshot {
    max-width: 100%;
    border: 2px solid #666666;
    border-radius: 0.25em;
    margin-top: 0.2em;
    margin-bottom: 0.2em;
    text-align: center;
}

select,
option,
textarea,
form,
input,
p,
div,
li,
label {
    font-size: 1.00em;
}

p {
    margin-bottom: 1em;
    line-height: 1.3em;
}

li {
    margin-bottom: 0.5em;
    text-align: left;
}

ul,
ol {
    margin-bottom: 1.5em;
    margin-left: 2em;
}

a {
    color: #304ffe;
    text-decoration: none;
}

a:hover {
    color: #207ce5;
    text-decoration: none;
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}

.middle {
    vertical-align: middle;
}

.top {
    vertical-align: top;
}

.margintop {
    margin-top: 1.2em !important;
}

.margintop2 {
    margin-top: 2em !important;
}

.margintop4 {
    margin-top: 4em !important;
}

.marginbottom {
    margin-bottom: 1.2em !important;
}

.noborder {
    border: none !important;
}

.hidden {
    display: none;
}

/* Don't make it !important */
.bold {
    font-weight: bold !important;
}

.red {
    color: red !important;
}

.disabled {
    color: silver !important;
}

.small {
    font-size: 0.7em !important;
}

.smaller {
    font-size: 0.5em !important;
}

.normal {
    font-size: 1.0em !important;
}

.big {
    font-size: 1.2em !important;
}

.bigger {
    font-size: 1.5em !important;
}

.scale80 {
    font-size: 0.8em !important;
}

.scale90 {
    font-size: 0.9em !important;
}

.scale110 {
    font-size: 1.1em !important;
}

.inlineicon {
    height: 1.0em;
    width: 1.0em;
}

.smallicon {
    height: 0.8em;
    width: 0.8em;
}

.mediumicon {
    height: 1.8em;
    width: 1.8em;
    margin-left: 0.3em;
}

.key {
    display: none;
}

.maxwidth25 {
    max-width: 25em !important;
}

.width50p {
    width: 50% !important;
}

.width25 {
    width: 25em !important;
}

.width20 {
    width: 20em !important;
}

.width10 {
    width: 11.6em !important;
}

.width9 {
    width: 9.8em !important;
}

.width7 {
    width: 7em !important;
}

.width6 {
    width: 6em !important;
}

.width4 {
    width: 4em !important;
}

.flexbox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.flexbox-reversed {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}

.flexitem-right {
    margin-left: auto;
    max-width: 100%;
}

.flexitem-grow {
    flex-grow: 1;
}

.clearboth {
    clear: both;
}

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

.code {
    font-family: "Courier New", Courier, monospace;
    font-size: 0.75em;
    line-height: 1em;
}

.nowrap {
    white-space: nowrap;
}

.prewrap {
  white-space: pre-wrap;
}

.noresize {
    resize: none;
}

.wrapanywhere {
    overflow-wrap: anywhere;
}

.cursorhelp {
    cursor: help;
}

input[readonly],
textarea[readonly] {
    background-color: #D0D0D0;
}

#map {
    height: 20em;
    width: 100%;
    display: none;
}

#featurelist {
    font-size: 0.9em;
}

#loadingImage {
    position: absolute;
    width: 150px;
    height: 150px;
    left: 50%;
    top: 50%;
    margin-left: -75px;
    /*image width/2 */
    margin-top: -75px;
    /*image height/2 */
    z-index: 2;
    visibility: hidden;
}

#imgholder {
    max-width: 100%;
    border: 2px solid #666666;
    margin-top: 0.2em;
    margin-bottom: 0.4em;
    text-align: center;
    display: none;
    min-width: 100%;
    min-height: 195px;
}

div.table {
    display: table;
    width: 100%;
    background-color: #eee;
    border: 1px solid #666666;
    border-radius: 0.5em;
    border-spacing: 0.2em;
    margin-bottom: 0.5em;
}

div.table-row {
    display: table-row;
}

div.table-cell {
    display: table-cell;
    background-color: #ddd;
    padding: 0.3em;
    margin: 0.1em;
}

div.table-head {
    background-color: #bbb;
    padding: 0.3em;
}

table.table {
    width: 100%;
    background-color: #eee;
    border: 0px solid #666666;
    border-radius: 0.5em;
    border-spacing: 0.1em;
    margin-bottom: 1.5em;
    font-size: 0.7em;
}

tr.row {}

td.cell {
    background-color: #ddd;
    padding: 0.3em;
    margin: 0.1em;
}

td.head {
    background-color: #bbb;
    padding: 0.3em;
    font-weight: bold;
}

p.error,
p.success,
p.process,
p.warn {
    line-height: 1.5em;
}

p.filter-line {
    font-size: 0.8em;
    margin-bottom: 0.5em;
    line-height: 2.0em;
}

.filter-item {
    padding: 0.2em;
    background: #DDDDDD;
    border: 1px solid #AAAAAA;
    border-radius: 0.5em;
    margin-right: 0.5em;
    white-space: nowrap;
}

.content p.error,
.content p.success,
.content p.process,
.content p.warn {
    margin-left: -1.8em;
    margin-right: -1.8em;
    padding-left: 1.8em;
    padding-right: 1.8em;
}

/*.content p.error, .content p.success, .content p.process { position: absolute; left: 0; width: 100%; }*/

div.deviceEntry p.error,
div.deviceEntry p.success,
div.deviceEntry p.process,
div.deviceEntry p.warn {
    font-size: 0.8em;
    line-height: 1.2em;
    margin-left: -1.32em;
    margin-right: -1.32em;
    padding-left: 1.3em;
    padding-right: 1.3em;
}

p.error {
    color: #FFFFFF;
    background: #FF0000;
    border-top: 2px solid #880000;
    border-bottom: 2px solid #880000;
}

p.success {
    color: #FFFFFF;
    background: #00CC00;
    border-top: 2px solid #007700;
    border-bottom: 2px solid #007700;
}

p.process {
    color: #000000;
    background: #DDDDDD;
    border-top: 2px solid #AAAAAA;
    border-bottom: 2px solid #AAAAAA;
}

p.warn {
    color: #000000;
    background: #DDDD00;
    border-top: 2px solid #AAAA00;
    border-bottom: 2px solid #AAAA00;
}

p.hint {
    color: #000000;
    background: #DDDDDD;
    border: 1px solid #AAAAAA;
    margin-bottom: 1.5em;
    padding: 0.3em;
}

span.offline {
    font-size: 1.4em;
    color: #ff0000;
    font-weight: bold;
    margin-bottom: 0.5em;
}

p.offline {
    font-size: 1.4em !important;
    color: #ff0000;
    font-weight: bold;
    margin-bottom: 0.5em;
    text-align: right;
}

div.editArea {
    margin-top: 0.4em;
    margin-bottom: 0.4em;
    display: none;
}

/* Dashboard */

p.dashgreen {
    font-size: 1.1em !important;
    color: #008f00;
    font-weight: bold;
    margin-bottom: 0.5em;
    overflow: hidden;
}

p.dashred {
    font-size: 1.1em !important;
    color: #ff0000;
    font-weight: bold;
    margin-bottom: 0.5em;
    overflow: hidden;
}

p.dashblack {
    font-size: 1.1em !important;
    color: #000000;
    font-weight: bold;
    margin-bottom: 0.5em;
    overflow: hidden;
    border-top: 2px solid black;
    padding-top: 0.4em;
}

p.dashexclaim {
    font-size: 2.5em !important;
    color: #008f00;
    font-weight: bold;
    text-align: right;
    margin-bottom: 0.5em;
}

p.dashblack>a>i.material-icons,
p.dashred>a>i.material-icons,
p.dashgreen>a>i.material-icons {
    font-size: 1.6em;
    vertical-align: top;
    margin-top: -0.1em;
}

p.dashblack>span.lable,
p.dashgreen>span.lable,
p.dashred>span.lable {
    width: 13.5em;
    display: inline-block;
    float: left;
}

p.dashblack>span.value,
p.dashgreen>span.value,
p.dashred>span.value {
    width: 2.0em;
    display: inline-block;
    text-align: right;
    white-space: nowrap;
}

div.rightcorner {
    float: right;
    text-align: right;
    position: absolute;
    right: 2.4em;
}

div.rightflow {
    float: right;
    text-align: right;
    right: 2.4em;
}

div.leftflow {
    float: left;
    text-align: left;
}

.block-left {
    float: left;
}

.block-right {
    float: right;
    text-aligh: right;
}

.block-holder {
    overflow: auto;
}

input.masscheckbox {
    -ms-transform: scale(2, 2) !important;
    -webkit-transform: scale(2, 2) !important;
    transform: scale(2, 2) !important;
}

input.listcheckbox {
    -ms-transform: scale(1.5, 1.5);
    -webkit-transform: scale(1.5, 1.5);
    transform: scale(1.5, 1.5);
    margin-left: 0.5em;
    margin-right: 0.5em;
}

#featurelist {}

#featurelist ul {
    list-style-image: url("/images/arrow.png");
    font-size: 1em;
    margin-left: 1.4em;
    padding-bottom: 0.2em;
}

#featurelist ul li {
    line-height: 1.5em;
}

a.infobox {
    color: #fff;
    background: #304ffe;
    font-weight: bold;
    border: 1px solid #304ffe;
    border-radius: 50%;
    width: 2em;
    height: 2em;
    font-size: 0.9em;
    padding-left: 0.5em;
    padding-right: 0.5em;
    padding-top: 0.2em;
    padding-bottom: 0.2em;
    text-decoration: none;
    cursor: help;
    white-space: nowrap;
    margin-left: 0.5em;
    margin-right: 0.5em;
}

a.infobox:hover {
    color: #FFF;
    background: #207ce5;
    border: 1px solid #207ce5;
    cursor: help;
}

a.infosign {
    font-weight: bold;
    height: 2em;
    font-size: 0.9em;
    padding-left: 0.5em;
    padding-right: 0.5em;
    padding-top: 0.2em;
    padding-bottom: 0.2em;
    text-decoration: none;
    cursor: help;
    white-space: nowrap;
    margin-left: 0.5em;
    margin-right: 0.5em;
}

a.infosign:hover {
    cursor: help;
}

a.infobox span,
a.infosign span {
    text-indent: 0;
    visibility: hidden;
    position: absolute;
    left: -100em;
    margin-top: 1.5em;
    padding: 1em;
    text-decoration: none;
    max-width: 25em;
    white-space: normal;
    line-height: 1.2em;
    text-align: left;
}

a.infobox:hover span,
a.infobox:focus span,
a.infobox:active span,
a.infosign:hover span,
a.infosign:focus span,
a.infosign:active span {
    visibility: visible;
    left: 1em;
    border: 1px solid #304ffe;
    border-radius: 0.5em;
    color: #0A0A0A;
    background: white;
    box-shadow: 0 0 0.3em rgba(0, 0, 0, 0.25);
    z-index: 100;
}

a.infobox:hover span.right,
a.infobox:focus span.right,
a.infobox:active span.right,
a.infosign:hover span.right,
a.infosign:focus span.right,
a.infosign:active span.right {
    left: 50%;
}

a.collapsible {
    color: #304ffe;
    text-decoration: none;
}

a.collapsible:hover {
    color: #207ce5;
    text-decoration: none;
}

a.collapsible:visited {
    color: #304ffe;
    text-decoration: none;
}

a.collapsible>i.material-icons {
    font-size: 1.8em;
    vertical-align: top;
    margin-top: -0.3em;
}

div.greybox,
div.deviceEntry {
    background: #fff;
    border: 1px solid #fff;
    border-radius: 0.5em;
    padding-left: 1em;
    padding-right: 1em;
    padding-top: 1em;
    margin-top: 1em;
    margin-bottom: 1em;
    box-shadow: 0 0 0.6em rgba(0, 0, 0, 0.25);
}

div.greybox h2,
div.deviceEntry h2 {
    margin-top: 0;
    padding-top: 0;
    background-color: #fff;
    padding-left: 0em;
}

div.greybox p.info {
    margin-top: 0;
    font-size: 0.8em;
}

p.info>a>i.material-icons {
    font-size: 1.6em;
    vertical-align: top;
    margin-top: -0.1em;
}

p.propline {
    font-size: 0.8em;
    margin-bottom: 0.4em;
    line-height: 1.3em;
    padding-left: 8em;
    text-indent: -8em;
}

p i.material-icons {
    font-size: 1.6em;
    vertical-align: top;
    margin-top: 0em;
    margin-left: 0.2em;
}

p.propline i.material-icons {
    font-size: 1.6em;
    vertical-align: top;
    margin-top: 0em;
    margin-left: 0.2em;
}

p.filter-line i.material-icons {
    font-size: 1.4em;
    vertical-align: top;
    margin-top: 0.22em;
    margin-left: 0.2em;
}

td.cell i.material-icons {
    font-size: 1.4em;
    vertical-align: middle;
    margin-top: 0em;
    margin-left: 0.2em;
}

td.cell>a>i.material-icons {
    font-size: 2.0em;
    vertical-align: middle;
    margin-top: 0em;
    margin-left: 0.2em;
}

a>i.material-icons {
    text-indent: 0;
}

p.propline span.lable {
    width: 7.8em;
    display: inline-block;
    text-indent: 0;
}


p.showmoreline {
    font-size: 0.8em;
    margin-top: 0.6em;
    margin-bottom: 0.7em;
    line-height: 1.0em;
}

p.big {
    font-size: 1.0em;
    margin-bottom: 1.0em;
    line-height: 1.5em;
}

div.deviceEntry p.formline {
    font-size: 0.9em;
}

div.deviceEntry p.buttonline {
    line-height: 1.8em;
    font-size: 0.8em;
}

div.deviceEntry div.screenshot {
    margin-top: 0.2em;
    margin-bottom: 0.2em;
    text-align: right;
}

div.deviceEntry div.screenshot img {
    max-width: 15em;
    max-height: 15em;
    border-radius: 0.25em;
    box-shadow: 0.25em 0.25em 0.25em rgba(0, 0, 0, 0.5);
    border: 1px solid #aaaaaa;
}

/* Button related CSS */

.button {
    color: #ffffff;
    background: #304ffe !important;
    font-size: 1.00em;
    font-weight: bold;
    border: 1px solid #304ffe !important;
    border-radius: 0.5em !important;
    height: 2em;
    padding-left: 0.8em !important;
    padding-right: 0.8em !important;
    cursor: pointer;
    white-space: nowrap;
    text-align: center;
}

.button:hover {
    color: #ffffff !important;
    background: #207ce5 !important;
    border: 1px solid #207ce5 !important;
}

.button:disabled {
    color: #ffffff !important;
    background: #9a9a9a !important;
    border: 1px solid #bababa !important;
}

input.button {
    margin-bottom: 0em;
    margin-right: 0em;
}

/*
input.button~a, a.button~a, a.backlink~a.backlink {
	margin-right: 1.2em;
}
*/

a.button,
label.button {
    font-size: 0.9em;
    padding-left: 0.5em;
    padding-right: 0.5em;
    padding-top: 0.4em;
    padding-bottom: 0.4em;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    margin-bottom: 0.5em;
    margin-right: 0em;
    display: inline-block;
    height: inherit;
    line-height: 1em;
    text-indent: 0em;
}

p.buttonline {
    margin-top: 0.4em;
    margin-bottom: 1.4em;
    line-height: 1.8em;
    font-size: 1.0em;
}

p.buttonline a,
p.buttonline input,
p.buttonline label {
    margin-right: 1.2em;
}

p.buttonline input.masscheckbox {
    margin-right: 0.5em;
}

/* Form related CSS */

span.formlable {
    width: 15em;
    display: inline-block;
    float: left;
}

span.formlable5 {
    width: 5em;
    display: inline-block;
    float: left;
}

span.formvalue {
    max-width: 20em;
    display: inline-block;
    margin-left: 0em;
}

span.formunit {
    display: inline-block;
    margin-left: 0.2em;
}

span.formtool {
    font-size: 0.8em;
    display: inline-block;
    margin-left: 0.5em;
}

span.formlable>a>i.material-icons {
    font-size: 1.6em;
    vertical-align: middle;
    margin-top: -0.2em;
}

p.formline {
    margin-top: 0em;
    margin-bottom: 0.7em;
    line-height: 2em;
    font-size: 1em;
    border: 0;
    vertical-align: middle;
}

.propline input,
.formline input,
.formline select {
    border: 1px solid #000;
    border-radius: 0.2em;
    height: 2em;
    padding-left: 0.2em;
    font-size: 0.9em;
    box-sizing: border-box;
    vertical-align: middle;
    max-width: 100%;
}

.formline label,
.formline span {
    min-height: 2em;
    box-sizing: border-box;
    vertical-align: middle;
}

.formline textarea {
    border: 1px solid #000;
    border-radius: 0.2em;
    min-height: 2em;
    padding-left: 0.2em;
    font-size: 1.1em;
    width: 34.8em;
    box-sizing: border-box;
}

.formline textarea.narrow {
    font-size: 1.1em;
    width: 20em;
}

input.inline_number {
    width: 2em !important;
}

textarea.nowrap {
    white-space: pre;
    overflow: auto;
    word-wrap: normal;
}

.formline input[type=text],
.formline input[type=password] {
    width: 20em;
}

.formline input[type=file],
.formline_s input[type=file] {
    border: 0px;
    padding-top: 0.2em;
}

.formline input[type=checkbox] {
    -ms-transform: scale(1.5, 1.5);
    -webkit-transform: scale(1.5, 1.5);
    transform: scale(1.5, 1.5);
    margin-left: 0.4em;
    margin-right: 0.4em;
    margin-top: -0.2em;
}

.formline input[type=radio] {
    -ms-transform: scale(1.5, 1.5);
    -webkit-transform: scale(1.5, 1.5);
    transform: scale(1.5, 1.5);
    margin-left: 0.4em;
    margin-right: 0.4em;
    margin-top: -0.2em;
}

.formline label.switch-label {
    margin-top: -0.2em;
}

/* Don't show number spinner in input box */

input[type='number'] {
    -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

/* Navigation related CSS */

.content {
    width: 100%;
    min-height: 100%;
    max-width: 44em;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 5.5em 1.7em 1.7em;
    background: #f5f5f5;
    box-shadow: 0 0 1em rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 0;
    left: 0;
}

@media (min-width:55em) {
    .banner {
        margin: 0 auto;
        padding: 5.5em 0.8em 0.8em;
        background: #ffffff;
        position: absolute;
        top: 0;
        left: 44em;
    }
}

@media (max-width:55em) {
    .banner {
        display: none;
    }

}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

#hamburger-checkbox {
    display: none;
}

label.hamburger {
    position: fixed;
    width: 3.8em;
    height: 3.8em;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 700;
    z-index: 999;
}

label.hamburger span {
    display: block;
    top: 8px;
    width: 1.5em;
    height: 0.3em;
    background-color: #fff;
    position: relative;
    /*position: absolute;*/
    top: 1.6em;
    left: 1.1em;
    -webkit-transition-duration: 0;
    -moz-transition-duration: 0;
    -ms-transition-duration: 0;
    -o-transition-duration: 0;
    transition-duration: 0;
    -webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    -ms-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

label.hamburger span::after,
label.hamburger span::before {
    display: block;
    content: '';
    position: absolute;
    width: 1.5em;
    height: 0.3em;
    background-color: #fff;
    -webkit-transition-property: margin, -webkit-transform;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -ms-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-delay: 0.2s, 0;
    -moz-transition-delay: 0.2s, 0;
    -ms-transition-delay: 0.2s, 0;
    -o-transition-delay: 0.2s, 0;
    transition-delay: 0.2s, 0;
}

label.hamburger span::before {
    margin-top: -0.5em;
}

label.hamburger span::after {
    margin-top: 0.5em;
}

#hamburger-checkbox:checked~label.hamburger span {
    background-color: transparent;
}

#hamburger-checkbox:checked~label.hamburger span::before,
#hamburger-checkbox:checked~label.hamburger span::after {
    margin-top: 0px;
    -webkit-transition-delay: 0, 0.2s;
    -moz-transition-delay: 0, 0.2s;
    -ms-transition-delay: 0, 0.2s;
    -o-transition-delay: 0, 0.2s;
    transition-delay: 0, 0.2s;
}

#hamburger-checkbox:checked~label.hamburger span::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#hamburger-checkbox:checked~label.hamburger span::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#hamburger-checkbox:checked~nav.off-canvas-menu {
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
    transition: 0.5s;
}

#hamburger-checkbox:checked~.content {
    -ms-transform: translateX(11em);
    -webkit-transform: translateX(11em);
    transform: translateX(11em);
    transition: 0.5s;
}

#hamburger-checkbox:checked~.overlay {
    height: 100%;
    opacity: 1;
}

nav li,
label.hamburger {
    transition: all 500ms ease;
}

nav li:hover {
    background: #304ffe !important;
}

label.hamburger:hover,
#hamburger-checkbox:checked~label.hamburger {
    background: #207ce5 !important;
}

.main-menu header {
    font-size: 1.35em;
    font-weight: bold;
    margin-left: 4em;
    margin-top: 0.75em;
    white-space: nowrap;
}

.main-menu header a {
    text-decoration: none;
    color: #fff;
}

.main-menu header a i.material-icons {
    font-size: 1.2em;
    vertical-align: bottom;
    margin-top: 0.0em;
}

.main-menu header a:visited {
    color: #fff;
}

.main-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3.8em;
    background: #304ffe;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
    z-index: 3;
}

.main-menu h1 {
    font-size: 1.35em;
    color: #fff;
    margin-left: 4em;
    margin-top: 0.7em;
    white-space: nowrap;
}

.main-menu ul.nav-icons {
    float: right;
}

.main-menu li {
    float: left;
    line-height: 3.8em;
    list-style: none;
    transition: 0.3s;
}

.main-menu li a {
    display: inline-block;
}

.main-menu li i {
    width: 3.8em;
    font-size: 1em;
    color: #304ffe;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
}

.off-canvas-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 11em;
    min-height: 100%;
    background: #fff;
    font-size: 1em;
    -ms-transform: translateX(-11em);
    -webkit-transform: translateX(-11em);
    transform: translateX(-11em);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
    /* transition: 0.5s; */
    z-index: 2;
}

.off-canvas-menu input[type=checkbox] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    display: block;
    cursor: pointer;
}

.off-canvas-menu ul {
    margin: 0;
    padding: 0;
}

.off-canvas-menu>ul {
    margin-top: 3.8em;
}

.off-canvas-menu a {
    display: inline-block;
    padding: 0.75em 0.6em 0.75em 1.2em;
    color: #000;
    text-decoration: none;
}

.off-canvas-menu a:hover {
    display: inline-block;
    padding: 0.75em 0.6em 0.75em 1.2em;
    color: #fff;
    text-decoration: none;
}

.off-canvas-menu li {
    margin: 0;
    position: relative;
    float: left;
    width: 100%;
    list-style: none;
    color: #304ffe;
    transition: all 500ms ease;
    border-left: 4px solid #304ffe;
    box-sizing: border-box;
}

.off-canvas-menu i.material-icons {
    font-size: 1.4em;
    vertical-align: middle;
    margin-top: 0.0em;
}


/*
.off-canvas-menu > ul > li:last-child {
  border-bottom: 1px solid #304ffe;
}

.off-canvas-menu ul li:first-child {
  border-top: none;
}
*/

.off-canvas-menu ul>li.sub>a:after {
    position: relative;
    float: right;
    content: '+';
    font-size: 1.5em;
    font-weight: 700;
    color: #304ffe;
    vertical-align: middle;
    transition: all 500ms ease;
}

.off-canvas-menu .submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    border-top: none;
}

.off-canvas-menu input[type=checkbox]:checked~.submenu {
    border-top: 1px solid #304ffe;
    max-height: 999px;
}

.off-canvas-menu input[type=checkbox]:checked~a:after {
    transform: rotate(45deg);
}

.off-canvas-menu .submenu li {
    background: #333;
}

.off-canvas-menu .submenu li a {
    padding-left: 30px;
}

.off-canvas-menu .submenu li li a {
    padding-left: 35px;
}

.off-canvas-menu .submenu li li li a {
    padding-left: 40px;
}

.off-canvas-menu .submenu li.sub {
    list-style: none;
}

.discount2 {
    background: #ff0045;
    border-radius: 1em 0 0 1em;
    color: #fff;
    text-align: center;
    padding: 0.5em 1em;
    position: relative;
    display: inline-block;
    margin-right: -1.2em;
    height: 1em;
    font-size: 0.6em;
    white-space: nowrap;
    vertical-align: top;
}

.discount {
    background: #ff0045;
    border-radius: 1em 0 0 1em;
    color: #fff;
    width: 4em;
    text-align: center;
    padding: 0.5em 1em;
    position: relative;
    border-right: 1px dashed #fff;
    display: inline-block;
    margin-right: 1.5em;
    height: 1em;
    font-size: 0.6em;
    white-space: nowrap;
    vertical-align: top;
}

.discount:after {
    width: 0;
    height: 0;
    border: 1em solid transparent;
    position: absolute;
    content: "";
    border-top-color: #ff0045;
    right: -2em;
    top: 0px;
    border-left-color: #ff0045;
}

.discount:before {
    width: 0;
    height: 0;
    border: 1em solid transparent;
    position: absolute;
    content: "";
    border-bottom-color: #ff0045;
    right: -2em;
    top: 0px;
}

.readmore-hidden {
    display: none;
}

.readmore-box {
    position: relative;
    /*overflow: hidden;*/
}

.readmore-box .readmore {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 10em 0 1em 0;

    background-image: linear-gradient(to bottom, transparent, white);
}

@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}

.spin {
  animation-name: spin;
  animation-duration: 2000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@media print {

    label.hamburger {
        display: none;
    }

    .main-menu {
        display: none;
    }

    .off-canvas-menu {
        display: none;
    }

    .content {
        padding-top: 1.7em;

    }
}