@font-face {
    font-family: "Material Icons";
    font-style: normal;
    font-weight: 400;
    src: local("Material Icons"), local("MaterialIcons-Regular"),
        url(../fonts/MaterialIcons-Regular.woff2) format("woff2"),
        url(../fonts/MaterialIcons-Regular.woff) format("woff"),
        url(../fonts/MaterialIcons-Regular.ttf) format("truetype");
}
@font-face {
    font-family: "Foco";
    src: url("../fonts/Foco-Regular.ttf") format("truetype"),
        url("../fonts/Foco-Regular.woff2") format("woff2"),
        url("../fonts/Foco-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "Foco";
    src: url("../fonts/Foco_Bd.ttf") format("truetype"),
        url("../fonts/Foco_Bd.woff2") format("woff2"),
        url("../fonts/Foco_Bd.woff") format("woff");
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "Open Sans";
    src: url("../fonts/OpenSans-Regular.eot");
    src: url("../fonts/OpenSans-Regular.eot?#iefix") format("embedded-opentype"),
        url("../fonts/OpenSans-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
* {
    -webkit-tap-highlight-color: rgba(
        0,
        0,
        0,
        0
        ); /* make transparent link selection, adjust last value opacity 0 to 1.0 */
}
a {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
b,
strong {
    font-weight: 700;
}
body {
    -webkit-touch-callout: none; /* prevent callout to copy image, etc when tap to hold */
    -webkit-text-size-adjust: none; /* prevent webkit from resizing text to fit */
    -webkit-user-select: none; /* prevent copy paste, to allow, change 'none' to 'text' */
    background-attachment: fixed;
    font-family: "Foco", Helvetica, Arial, sans-serif;
    font-size: 8px;
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
    color: #000;
}
.alt-font {
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
/*------------------------------------------------------------------
1. UTILITY
-------------------------------------------------------------------*/
.container {
    position: relative;
    padding: 16px;
    background-color: #ffffff;
}
.valign-wrapper {
    display: table !important;
}
.valign-wrapper .valign {
    display: table-cell !important;
    vertical-align: middle !important;
}
.clr {
    clear: both;
}
.left {
    float: left;
}
.right {
    float: right;
}
.back {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 10;
}
.down {
    position: absolute;
    width: 100%;
    bottom: 16px;
    text-align: center;
    z-index: 10;
}
.up {
    position: absolute;
    width: 100%;
    top: 16px;
    text-align: center;
    z-index: 10;
}
.transparent {
    background-color: transparent;
}
.transparent-header {
    background-color: transparent;
    position: absolute;
    box-shadow: none;
}
.mdl-shadow--1dp {
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
}
.fullscreen {
    width: 100vw;
    height: 100vh;
}
.full {
    width: 100%;
}
.no-margin {
    margin: 0 !important;
}
.no-padding {
    padding: 0;
}
.padding-bottom-0 {
    padding-bottom: 0 !important;
}
.padding-top-0 {
    padding-top: 0 !important;
}
.padding-bottom-32 {
    padding-bottom: 32px !important;
}
.padding-top-32 {
    padding-top: 32px !important;
}
.padding-bottom-64 {
    padding-bottom: 64px !important;
}
.padding-top-64 {
    padding-top: 64px !important;
}
.margin-bottom-0 {
    margin-bottom: 0px !important;
}
.margin-top-0 {
    margin-top: 0px !important;
}
.margin-bottom-16 {
    margin-bottom: 16px !important;
}
.margin-top-16 {
    margin-top: 16px !important;
}
.margin-top-32 {
    margin-top: 32px !important;
}
.margin-bottom-32 {
    margin-bottom: 32px !important;
}
.margin-top-2 {
    margin-top: 2px !important;
}
.center {
    text-align: center;
}
.dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 8px;
    border-radius: 50%;
}
.border {
    border: 1px solid rgb(64, 196, 255);
}
.no-border {
    border: none !important;
}
.pointer {
    cursor: pointer;
}
.blog-header {
    padding: 48px 16px;
    margin: 0;
    text-align: center;
}
.gradient-container {
    position: relative;
}
.overlay-opacity {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.3);
}
.overlay-gradient {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0) -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(48%, rgba(255, 255, 255, 0)),
        color-stop(90%, rgba(255, 255, 255, 0.85)),
        to(#fff)
        ) repeat scroll 0 0;
    background: rgba(0, 0, 0, 0) -webkit-linear-gradient(
        top,
        rgba(255, 255, 255, 0) 48%,
        rgba(255, 255, 255, 0.85) 90%,
        #fff 100%
        ) repeat scroll 0 0;
    background: rgba(0, 0, 0, 0) -o-linear-gradient(
        top,
        rgba(255, 255, 255, 0) 48%,
        rgba(255, 255, 255, 0.85) 90%,
        #fff 100%
        ) repeat scroll 0 0;
    background: rgba(0, 0, 0, 0)
        linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 48%,
        rgba(255, 255, 255, 0.85) 90%,
        #fff 100%
        )
        repeat scroll 0 0;
    z-index: 2;
}

/*------------------------------------------------------------------
2. COLORS
-------------------------------------------------------------------*/
body,
html {
    background-color: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #1a171b;
    margin: 0;
}
h1,
h3,
h4 {
    color: #003358;
}
header i,
.mdl-layout__drawer-button i {
    color: #000;
}
header .home-link {
    padding: 0;
    display: block;
    width: 125px;
    height: auto;
    display: block;
}
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9;
}
.copyright {
    line-height: 24px;
    padding: 0 16px;
}
.mdl-button--accent.mdl-button--accent.mdl-button--raised,
.mdl-button--accent.mdl-button--accent.mdl-button--fab {
    color: #ffffff;
}
.mdl-button--primary.mdl-button--primary.mdl-button--raised,
.mdl-button--primary.mdl-button--primary.mdl-button--fab {
    color: #ffffff;
}
.mdl-menu__item,
.mdl-layout__drawer .mdl-navigation a {
    color: #484a4f;
    font-weight: 300;
}
.title {
    color: #37474f;
}
.color-white {
    color: #ffffff;
}
.light-text {
    color: #a3afb7;
}
.bg-white {
    background-color: #ffffff;
}
.bg-gray {
    background-color: #8a8c8e;
}
.bg-green {
    background-color: #70993f;
}
.bg-lightgray {
    background-color: #e6e7e8;
}
.bg-orange {
    background-color: #f58220;
}

/*------------------------------------------------------------------
3. TYPOGRAPHY
-------------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
    line-height: 1.05em;
}
a {
    text-decoration: none;
}
i {
    color: #727478;
}
h1 {
    font-size: 48px;
}
h2 {
    font-size: 36px;
    line-height: 1.2em;
}
h3 {
    font-weight: 700;
    font-size: 52px;
}
h4 {
    font-weight: 700;
    font-size: 42px;
}
h5 {
    color: #3d3d3f;
    font-size: 31px;
}
p {
    font-size: 15px;
    margin: 0 0 12px;
    line-height: 1.5em;
}
.highlight {
    padding: 16px;
    margin: 16px 0;
    border-left: 3px solid #62a8ea;
}
.highlight p {
    font-size: 19px;
    line-height: 1.5;
}
h1.page-title {
    margin: 30px 0 24px;
}
.title {
    display: block;
    font-weight: bold;
}
.title i {
    font-size: 14px;
}
.title-counter {
    display: inline-block;
    margin-right: 8px;
}
.mdl-layout-title {
    font-weight: 300;
}
.mdl-menu__item {
    font-weight: 300;
}
.mdl-navigation__link {
    font-weight: 300;
}
.mdl-tabs__tab {
    font-weight: 300;
    text-transform: none;
}
.mdl-tabs.is-upgraded .mdl-tabs__tab.is-active:after {
    -webkit-animation: none;
    animation: none;
}

/*------------------------------------------------------------------
4. BASE ELEMENTS
-------------------------------------------------------------------*/
html,
body {
    width: 100vw;
    overflow-x: hidden;
}
img {
    max-width: 100%;
}
ul {
    margin: 0;
    padding: 0;
    list-style-position: inside;
}
header {
    z-index: 9999;
}
table {
    border-collapse: collapse;
    width: 100%;
}
table td {
    padding: 2px;
}
.mdl-mini-footer {
    padding: 16px;
}
.mdl-textfield--expandable {
    max-width: 150px;
}
/*#container.home .mdl-layout__container {
    width: 100% !important;
    padding: 0;
}*/
.mdl-layout__content {
    width: 100%;
}
.mdl-textfield {
    width: auto;
    padding: 22px 0;
}
header .mdl-textfield {
    margin-right: 8px;
}
.page-header {
    padding: 32px 20px 22px;
    margin: 0;
}
.page-header .breadcrumb {
    padding: 0;
    margin: 0;
}
.page-header .breadcrumb a {
    font-weight: 300;
}
.page-header .breadcrumb span {
    margin: 0 7px;
    font-size: 14px;
    font-weight: bold;
}
hr {
    border-top: 1px solid #4d4d4f;
    margin: 8px 0;
}

/* 4.1. Form
-------------------------------------------------------------------*/
label.normal {
    display: block;
    font-size: 16px;
    padding-bottom: 4px;
}
input.normal {
    display: block;
    width: calc(100% - 22px);
    font-family: inherit;
    line-height: 1.5;
    outline: 0;
    padding: 10px;
    border: 1px solid #e7e7e7;
    border-radius: 0;
    box-shadow: none;
}
select.normal {
    display: block;
    width: 100%;
    height: 38px;
    line-height: 1.5;
    padding: 10px;
    background-color: #ffffff;
    border: 1px solid #e7e7e7;
    border-radius: 0;
    box-shadow: none;
}
textarea.normal {
    display: block;
    width: calc(100% - 22px);
    height: 72px;
    line-height: 1.5;
    padding: 10px;
    background-color: #ffffff;
    border: 1px solid #e7e7e7;
    border-radius: 0;
    box-shadow: none;
}

/*------------------------------------------------------------------
5. PAGE TRANSITION
-------------------------------------------------------------------*/
#container {
    position: static;
    min-height: 100vh;
}

/*------------------------------------------------------------------
6. LAYOUT
-------------------------------------------------------------------*/
/* 6.1. Grid
-------------------------------------------------------------------*/
.mdl-grid {
    padding: 0;
}
.mdl-cell {
    margin: 0 8px;
    position: relative;
}
.mdl-cell--1-col {
    width: 9%;
    margin: 0;
}
.mdl-cell--1-5-col {
    width: 12.33333%;
    margin: 0;
}
/*.mdl-cell--2-col {
    width: calc(19% - 16px);
}*/
.mdl-cell--2-5-col {
    width: calc(13.666% - 16px);
}
.mdl-cell--3-col {
    width: calc(25% - 16px);
}
.mdl-cell--3-5-col {
    width: calc(26% - 16px);
}
.mdl-cell--4-col {
    width: calc(33.33333% - 16px);
}
.mdl-cell--5-col {
    width: calc(41.66666% - 8px);
    margin: 16px 16px 0 0;
}
.mdl-cell--6-col {
    width: calc(50% - 8px);
}
.mdl-cell--6-col:nth-child(odd) {
    margin: 16px 16px 0 0;
}
.mdl-cell--6-col:nth-child(even) {
    margin: 16px 0 0 0;
}
.mdl-cell--7-col {
    width: calc(58.33333% - 8px);
    margin: 0 0 16px 0;
}
.mdl-cell--8-col {
    width: calc(66.66666% - 16px);
}
.mdl-cell--8-5-col {
    width: calc(74% - 16px);
}
.mdl-cell--10-col {
    width: calc(81% - 2px);
    margin: 0 0 0 2px;
}
.mdl-cell--10-5-col {
    width: 87.66666%;
    margin: 0;
}
.mdl-cell--11-col {
    width: 91%;
    margin: 0;
}
.mdl-cell--12-col {
    width: calc(100% - 16px);
}

/* 6.2. Drawer
-------------------------------------------------------------------*/
#user-menu {
    position: absolute;
    right: 16px;
    bottom: 9px;
    display: inline-block;
}
.user img {
    border-radius: 100%;
    width: 64px;
    margin-bottom: 16px;
}
.sub-user {
    float: right;
    width: 40px;
    border-radius: 100%;
}
.user-name {
    margin-bottom: 2px;
    font-size: 14px;
    font-weight: 400;
    display: block;
}
.user-mail {
    font-size: 14px;
    font-weight: 100;
    display: table;
}
.drawer-separator {
    height: 1px;
    background-color: #dcdcdc;
    margin: 8px 0px;
}
.mdl-layout__drawer .mdl-navigation .mdl-navigation__link {
    padding: 12px 40px 12px 50px;
    font-size: 19px;
    line-height: 2em;
    font-weight: 400;
}
.mdl-layout__drawer .mdl-navigation .mdl-navigation__link,
.mdl-layout__drawer .mdl-navigation .mdl-navigation__link a {
    color: #000;
}
.mdl-layout__drawer .mdl-navigation .mdl-navigation__link:hover {
    background-color: transparent;
}
.mdl-layout__drawer .mdl-navigation .mdl-navigation__link img {
    float: left;
}
.mdl-layout__drawer .mdl-navigation .mdl-navigation__link span {
    margin-left: 20px;
}
.mdl-collapse .mdl-collapse__icon {
    font-size: 50px;
    margin-top: -5px !important;
}
.mdl-layout__drawer {
    border-right: none;
    background-color: #eceded;
    -webkit-transform: translateX(-460px);
    transform: translateX(-460px);
    width: 450px;
    z-index: 999;
}
.drawer-profile {
    box-shadow: none;
    width: 100%;
    border-radius: 0;
}
.drawer-profile i {
    color: #fff;
}
.mdl-layout__drawer .mdl-navigation span.sub-txt {
    display: block;
    line-height: 19px;
    font-size: 13px;
}
.mdl-layout__drawer .mdl-navigation i {
    float: left;
    margin-right: 10px;
}
.mdl-layout__drawer
.mdl-collapse.first
.mdl-navigation__link.mdl-collapse__button
i {
    color: #ffffff;
}
.mdl-layout__drawer-button {
    margin: 17px 15px 0 35px;
    height: 40px;
}
.mdl-layout__drawer-button i {
    height: 40px;
    line-height: 40px;
    font-size: 53px;
}
.mdl-layout__header-row {
    padding: 30px 15px 0 45px;
}
.mdl-layout__header {
    min-height: 40px;
    background: transparent;
    box-shadow: none;
    position: fixed;
}

.drawer-header {
    padding: 37px 43px;
}
.mdl-collapse.first .mdl-collapse__content .mdl-navigation__link {
    padding: 16px !important;
    background-color: #f1f4f5;
}
.mdl-collapse.first .mdl-collapse__content .mdl-navigation__link:last-child {
    border-bottom: 1px solid #dcdcdc;
}
.mdl-collapse.first .mdl-navigation__link.mdl-collapse__button {
    color: #ffffff;
    font-weight: 300;
}
.mdl-collapse.first .mdl-navigation__link.mdl-collapse__button:hover {
    background-color: transparent;
}

/* 6.3. Right Panel
-------------------------------------------------------------------*/
.s-right {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1000;
    visibility: hidden;
    -webkit-transition: visibility 0s 0.6s;
    -moz-transition: visibility 0s 0.6s;
    transition: visibility 0s 0.6s;
}
.s-right.is-visible {
    top: 56px;
    background-color: rgba(0, 0, 0, 0.5);
    visibility: visible;
    -webkit-transition: visibility 0s 0s;
    -moz-transition: visibility 0s 0s;
    transition: visibility 0s 0s;
}
.s-right.is-visible::after {
    -webkit-transition: background 0.4s 0s;
    -moz-transition: background 0.4s 0s;
    transition: background 0.4s 0s;
}
.s-right.is-visible .s-right-close {
    display: block;
    z-index: 999;
}
.s-right .s-right-close {
    display: none;
}
.s-right-close {
    position: absolute;
    top: 16px;
    left: -56px;
    z-index: 6;
    color: #ffffff;
}
.s-right-container {
    position: fixed;
    width: calc(100% - 72px);
    min-height: calc(100% - 56px);
    top: 56px;
    background-color: #ffffff;
    z-index: 5;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    transition-duration: 0.4s;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    transition-delay: 0s;
}
.from-right .s-right-container {
    right: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    -moz-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    -o-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
}
.is-visible .s-right-container {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    transition-delay: 0s;
}
.s-right-content {
    position: fixed;
    top: 0;
    left: 0;
    width: calc(100% - 32px);
    height: 100%;
    padding: 8px 16px 16px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
.s-right-content .mdl-tabs__tab {
    width: 100%;
}
.s-right-content .mdl-tabs__tab.is-active i {
    color: rgba(0, 0, 0, 0.87);
}
.s-right-content .mdl-tabs__tab i {
    position: relative;
    top: 6px;
    margin-right: 6px;
}

.tab-container {
    position: relative;
    padding: 16px;
}
.tab-container .card-header {
    padding: 16px 16px 16px 65px;
}
.tab-container .card-header img {
    left: 0;
}
.tab-container .contact-user {
    left: 0;
}
.sidebar-settings {
    padding: 16px 0 0;
}
.sidebar-settings p {
    margin: 0;
}
.sidebar-settings span {
    float: left;
    line-height: 26px;
}
.sidebar-settings label {
    float: right;
}
.sidebar-settings .mdl-switch {
    width: auto;
}

/* 6.4. Inbox Message 
-------------------------------------------------------------------*/
.isvisible {
    background-color: rgba(0, 0, 0, 0.5);
    visibility: visible;
}
#slideout {
    display: none;
    background: #ffffff;
    position: absolute;
    visibility: hidden;
    top: 0;
    left: -100vw;
    width: 100vw;
    min-height: 100vh;
    width-width: 100vw;
    z-index: 99999;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2),
        0 1px 5px 0 rgba(0, 0, 0, 0.12);
    -webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    transition-duration: 0.4s;
}
#slideout.show {
    display: block;
    left: 0;
    visibility: visible;
}
.inbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
}
.inbox-icons {
    margin-top: 8px;
}
#slideout .inbox-icons i {
    font-size: 20px;
}
#slideout .card-header {
    padding-left: 64px;
}
#slideout .card-header img {
    left: 0;
}

/*------------------------------------------------------------------
7. ELEMENTS
-------------------------------------------------------------------*/
/* 7.1. Accordion
-------------------------------------------------------------------*/
.mdl-navigation__link.mdl-collapse__button {
    cursor: pointer;
}
.mdl-collapse.mdl-collapse--opened {
    margin-top: 0;
}
.mdl-navigation__link.mdl-collapse__button {
    min-height: 24px;
}
.mdl-collapse.mdl-collapse--opened + .mdl-collapse.mdl-collapse--opened {
    border-top: none;
    margin-top: 0;
}

.mdl-collapse .mdl-collapse__content-wrapper {
    overflow: hidden;
}

.mdl-collapse .mdl-collapse__content {
    background-color: #d9dadb;
    transition-property: margin-top;
    transition-duration: 0.4s;
}
.mdl-collapse .mdl-collapse__content .mdl-collapse__content {
    background-color: #c6c7c8;
}

.mdl-collapse .mdl-collapse__icon {
    transition-property: transform;
    transition-duration: 0.4s;
    color: rgba(0, 0, 0, 0.3);
    position: absolute;
    right: 0;
    margin-top: 0;
    margin-right: 20px !important;
}

.mdl-collapse.mdl-collapse--opened
> .mdl-navigation__link
> .mdl-collapse__icon {
    transform: rotate(-180deg);
}

.mdl-collapse.mdl-collapse--opened .mdl-collapse__content {
    margin-top: 0 !important;
}

/* 7.2. Table
-------------------------------------------------------------------*/
.mdl-data-table {
    width: 100%;
    table-layout: fixed;
    margin-bottom: 12px;
}
thead,
tbody,
.mdl-data-table__cell--non-numeric {
    width: 100%;
}
.mdl-data-table th {
    line-height: 18px;
}
.mdl-data-table td,
.mdl-data-table th {
    padding: 8px 5px 8px !important;
    text-align: center;
    vertical-align: top;
}
.mdl-data-table td,
.mdl-data-table th,
.mdl-data-table td p {
    font-size: 13px;
    word-wrap: break-word;
    white-space: normal;
}
.mdl-data-table td p.notes {
    font-size: 11px;
}

/* 7.3. Badge
-------------------------------------------------------------------*/
.mdl-menu .mdl-badge[data-badge]:after {
    top: 5px;
    right: 10px;
    position: absolute;
}
.mdl-menu .mdl-badge {
    margin-right: 0;
}

/* 7.4. Card
-------------------------------------------------------------------*/
.card {
    margin: 0 16px 16px;
    overflow: hidden;
    position: relative;
    border-radius: 2px;
    box-sizing: border-box;
}
.fullscreen-card {
    margin: 0;
    height: 200px;
    overflow: hidden;
    border-radius: 0;
}
.fullscreen-card h3 {
    position: absolute;
    top: 19px;
    left: 16px;
    font-size: 20px;
    margin: 0;
}
.fullscreen .card-header {
    position: relative;
}
.scale {
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
}
.fullscreen-card:hover .scale {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
}
.fullscreen-card .card-header {
    position: absolute;
    bottom: 0;
}
.card-menu {
    position: absolute;
    right: 16px;
    top: 16px;
}
.card-close i {
    position: absolute;
    right: 8px;
    top: 8px;
    font-size: 16px;
}
.card-header {
    position: relative;
    padding: 16px 16px 16px 75px;
}
.card-info {
    padding: 16px 16px 0;
    text-align: right;
}
.card-info p,
.card-info i {
    font-size: 13px;
}
.card-header img {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
}
.card-autor p {
    margin-bottom: 0;
}
.card-content {
    padding: 16px;
}
.card-content span {
    margin-bottom: 16px;
    display: block;
}
.card-content .mdl-button {
    margin-top: 24px;
}
.card-content-overlay {
    width: 100%;
    padding: 16px;
    bottom: 0;
    position: absolute;
    color: #ffffff;
    background-color: transparent;
    box-sizing: border-box;
}
.card-content-overlay h3 {
    margin-top: 0;
    color: #ffffff;
}
.card-content-overlay p {
    font-weight: 100;
}
.card-content-overlay.gradient {
    z-index: 100;
    background: -moz-linear-gradient(
        top,
        rgba(255, 255, 255, 0) 0%,
        rgba(0, 0, 0, 1) 100%
        ); /* FF3.6+ */
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0%, rgba(255, 255, 255, 0)),
        color-stop(100%, rgba(0, 0, 0, 1))
        ); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(
        top,
        rgba(255, 255, 255, 0) 0%,
        rgba(0, 0, 0, 1) 100%
        ); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(
        top,
        rgba(255, 255, 255, 0) 0%,
        rgba(0, 0, 0, 1) 100%
        ); /* Opera 11.10+ */
    background: -ms-linear-gradient(
        top,
        rgba(255, 255, 255, 0) 0%,
        rgba(0, 0, 0, 1) 100%
        ); /* IE10+ */
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(0, 0, 0, 1) 100%
        ); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
}
.card-autor p i {
    font-size: 14px;
}
.card-footer {
    padding: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* 7.5. Contact
-------------------------------------------------------------------*/
.contact.swipeable {
    position: relative;
    padding: 12px 36px 16px 58px;
    min-height: 44px;
    max-height: 50px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}
.contact.swipeable:last-child {
    border-bottom: none;
}
.contact.swipeable > p,
.contact.swipeable > span,
.contact.swipeable > img {
    cursor: pointer;
}
.swipe-left {
    left: -80px;
    background-color: rgba(64, 196, 255, 0.05);
}
.swipe-left .swipe-actions {
    right: -80px;
    display: block;
}
.swipe-actions {
    position: absolute;
    height: 76px;
    right: 0;
    top: 0;
    width: 80px;
    display: none;
    text-align: center;
    background-color: #f7f7f7;
}
.swipe-actions i {
    margin-top: 29px;
    font-size: 20px;
    color: rgb(33, 150, 243);
    cursor: pointer;
}
.contact img {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
}
.contact-user {
    position: absolute;
    top: 12px;
    left: 2px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
}
.contact-user span {
    display: block;
    padding: 13px 6px;
    font-size: 18px;
    color: #ffffff;
    text-align: center;
}
.contact p {
    margin-bottom: 0;
    font-size: 15px;
}
.contact span.light-text {
    font-size: 13px;
    line-height: 1.25em;
    display: block;
}
.contact .scheduled-time {
    position: absolute;
    right: 0px;
    top: 17px;
}
.mdl-button.full {
    padding: 0;
}
/*------------------------------------------------------------------
8. PAGE SPECIFIC
-------------------------------------------------------------------*/
/* 8.1. Gallery
-------------------------------------------------------------------*/
.mdl-layout__content.gallery-container {
    margin-bottom: 4px;
}
.mdl-grid.gallery {
    padding: 0 2px;
}
.gallery .mdl-cell {
    margin: 4px 2px 0;
}
.gallery img {
    vertical-align: middle;
}
.gallery .mdl-cell--4-col {
    width: calc(33.33333% - 4px);
}
.gallery .mdl-cell--6-col {
    width: calc(50% - 4px);
}
.gallery .mdl-cell--8-col {
    width: calc(66.66666% - 4px);
}
.gallery .mdl-cell--12-col {
    width: calc(100% - 4px);
}
.gallery h2 {
    margin-bottom: 0;
}
/* 8.1a. Tables
-------------------------------------------------------------------*/
.specs-tables-grid .mdl-cell {
    margin: 0 10px 10px 0;
}
.specs-tables-grid .mdl-cell--3-col {
    width: calc(25% - 10px);
}
.specs-tables-grid .mdl-cell--4-col {
    width: calc(33.33333% - 10px);
}
.specs-tables-grid .mdl-cell--6-col {
    width: calc(50% - 10px);
}
.specs-tables-grid.padding-sides {
    padding: 0 5%;
}
.specs-tables-grid.padding-side-left {
    padding: 0 0 0 5%;
}

/* 8.2. Login
-------------------------------------------------------------------*/
.login-bg {
    background: url(../img/10_blur.jpg) center / cover;
    height: 100vh;
    overflow: hidden;
    padding: 0 16px;
    width: calc(100% - 32px);
}
.login {
    background: #ffffff;
    border-radius: 2px;
    margin-top: 16px;
}
.account-navigation i {
    color: #ffffff;
}
.account-navigation span {
    margin-left: 32px;
}
.account-info {
    padding: 16px;
    color: #ffffff;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
}
.card span {
    display: block;
}
.minilogo-account {
    width: 56px;
    height: 56px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 56px;
    border-radius: 100%;
    background-color: #f5f5f5;
    margin: 8px 16px 32px 32px;
}
.account-data {
    padding: 16px 48px 32px;
}
.account-data form {
    margin-bottom: 32px;
}
.account-data .mdl-textfield {
    width: 100%;
}

/* 8.3. Blog
-------------------------------------------------------------------*/
.v-category {
    width: calc(50% - 32px);
    padding: 16px;
}
.v-category.right {
    margin-left: 50%;
    float: none;
}
.v-category h3 {
    font-size: 24px;
}
.v-category .mdl-button {
    margin-bottom: 22px;
}

/* 8.5. Article
-------------------------------------------------------------------*/
.article-header {
    position: relative;
}
.article-header .card-header {
    position: absolute;
    bottom: -21px;
    z-index: 3;
}
.article-header .card-header p,
.article-header .card-header span {
    font-weight: 400;
}
.article-header .contact-user {
    top: 16px;
    left: 16px;
    width: 48px;
    height: 48px;
}
.article-header .card-header .contact-user span {
    font-size: 16px;
    padding: 14px 0px;
}
.article .article-header .card-header {
    color: #37474f;
}
.article .page-header {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 16px;
}
.article p {
    text-align: justify;
}
.article td p {
    text-align: left;
}
.fullscreen-title {
    width: 100%;
    text-align: center;
    position: absolute;
    left: 0;
    bottom: 50px;
}
.fullscreen-title h1 {
    font-size: 42px;
    margin-bottom: 0;
}
.fullscreen-title p {
    font-size: 20px;
}

/* 8.9. Settings
-------------------------------------------------------------------*/
.settings .title {
    padding: 32px 16px 16px;
    margin: 0;
    border-bottom: 1px solid #dddddd;
}
.settings i {
    float: left;
    margin-right: 32px;
}
.settings span {
    float: left;
    line-height: 26px;
}
.settings li {
    width: calc(100% - 32px);
    list-style-type: none;
    padding: 16px;
    border-bottom: 1px solid #dddddd;
}
.settings label {
    float: right;
    margin-right: 16px;
}
.settings .mdl-slider__container {
    width: 180px;
    float: right;
    margin-top: 5px;
    margin-right: -16px;
}
.settings .mdl-switch {
    width: auto;
}
.settings .mdl-icon-toggle {
    width: 32px;
    margin-right: 0;
}

/*------------------------------------------------------------------
9. MEDIA QUERIES
-------------------------------------------------------------------*/
@media screen and (max-width: 1024px) {
    .mdl-layout__header {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
    .mdl-layout__drawer-button {
        color: #ffffff;
    }
}

@media (max-width: 839px) and (min-width: 480px) {
    .mdl-cell--4-col {
        width: calc(33.33333% - 16px);
    }
    .gallery .mdl-cell--4-col {
        width: calc(33.33333% - 4px);
    }
    .gallery .mdl-cell--6-col {
        width: calc(50% - 4px);
    }
    .gallery .mdl-cell--8-col {
        width: calc(66.66666% - 4px);
    }
    .gallery .mdl-cell--12-col {
        width: calc(100% - 4px);
    }
}

@media (max-width: 479px) {
    .mdl-cell--4-col {
        width: calc(33.33333% - 16px);
    }
    .gallery .mdl-cell--4-col {
        width: calc(33.33333% - 4px);
    }
    .gallery .mdl-cell--6-col {
        width: calc(50% - 4px);
    }
    .gallery .mdl-cell--8-col {
        width: calc(66.66666% - 4px);
    }
    .gallery .mdl-cell--12-col {
        width: calc(100% - 4px);
    }
}

@media (max-width: 340px) {
    .account-data .mdl-button {
        float: none;
        margin-top: 16px;
    }
}

/*------------------------------------------------------------------
10. LOADER
-------------------------------------------------------------------*/
.material-icons {
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 24px; /* Preferred icon size */
    display: inline-block;
    width: 1em;
    height: 1em;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;

    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;

    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;

    /* Support for IE. */
    font-feature-settings: "liga";
}

/*------------------------------------------------------------------
11. LOADER
-------------------------------------------------------------------*/
.loader {
    text-align: center;
    display: none;
}
.loader span {
    display: inline-block;
    vertical-align: middle;
    width: 10px;
    height: 10px;
    margin: 150px auto 50px;
    background: black;
    border-radius: 50px;
    -webkit-animation: loader 0.9s infinite alternate;
    -moz-animation: loader 0.9s infinite alternate;
    animation: loader 0.9s infinite alternate;
}
.loader span:nth-of-type(2) {
    -webkit-animation-delay: 0.3s;
    -moz-animation-delay: 0.3s;
    animation-delay: 0.3s;
}
.loader span:nth-of-type(3) {
    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
    animation-delay: 0.6s;
}
.fullwidth {
    padding: 40px 3% 30px;
}
.home_box {
    background: #e4e5e7;
    height: 83px;
    min-width: 83px;
    margin: 60px 13px 0 0;
    text-align: center;
    display: block;
    font-weight: bold;
    font-size: 23px;
    line-height: 1.1em;
    color: #484b4f;
    float: left;
    line-height: 0.9em;
}
.home_box span {
    display: block;
    width: 83px;
    float: left;
}
.info_box {
    padding: 5px;
    background: #929395;
    height: 205px;
    width: 205px;
    margin: -55px auto;
    z-index: 9;
    position: relative;
    color: #fff;
    font-size: 20px;
    text-align: center;
    display: flex;
    align-items: center;
}
.info_box > div {
    width: 100%;
}
.info_box h3 {
    color: #fff;
    font-size: 72px;
}
.info_box.orange {
    background: #ee7f00;
}
.info_box.green {
    background: #7ab51d;
}
.link_box {
    background: #e4e5e7;
    border-bottom: 22px solid #81848b;
    height: 190px;
    margin: -32px 10px 0;
    z-index: 9;
    position: relative;
}
.link_box.mdl-cell--2-5-col {
    margin: -32px 7px 0;
}
.mini-grid .link_box {
    height: 102px;
    border-bottom-width: 12px;
}
.bottom-row .link_box {
    margin-top: 13px;
}
.link_box.offset2,
.link_box.offset2:first-child {
    margin-left: 13.33%;
}
.link_box.mini {
    background: #fff;
}
.link_box:first-child {
    margin-left: 2px;
}
.link_box:last-child {
    margin-right: 2px;
}
.link_box.mdl-cell--2-5-col:first-child {
    margin-left: 0;
}
.link_box.mdl-cell--2-5-col:last-child {
    margin-right: 0;
}
.link_box a {
    color: #4d4d4f;
    display: block;
    padding: 14px 6px 0;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
}
.mini-grid .link_box a {
    font-size: 0.875em;
}
.product-grid .link_box a {
    padding-top: 46px;
    height: calc(100% - 25px);
}
.product-grid.mini-grid .link_box a {
    padding-top: 12px;
    line-height: 1em;
}
.product-grid .link_box a.mini-intro-link {
    background: #e4e5e7;
    padding-top: 26px;
    height: calc(46% - 24px);
    margin: 0 0 10px;
}
.product-grid.img-top .link_box a {
    padding-top: 24px;
    font-size: 16px;
    line-height: 1.2em;
    font-weight: normal;
}
.link_box a i {
    font-size: 34px;
}
.link_box a .link_box_img {
    display: block;
    margin: 4px 0 12px;
}
.mini-grid .link_box a .link_box_img {
    margin: 10px 0 8px;
}
.mini-grid .link_box a .link_box_img.img_only {
    margin-top: 15px;
}
.link_box a img,
.mini-grid .link_box a .img_only img {
    width: 98%;
}
.mini-grid .link_box a img {
    width: 75%;
}
.link_box a .footnote {
    display: block;
    font-size: 12.3px;
    font-weight: 400;
    line-height: 1.25em;
    margin-top: 2px;
}
.mini-grid .link_box a .footnote {
    font-size: 10.7px;
    margin-top: 5px;
    line-height: 1.1em;
}
.link_box a .prod-subheader {
    display: block;
    color: #646567;
    font-size: 1em;
    margin-top: 14px;
}
#swipebox-container {
    background: #dddee0;
}
.side-menu {
    margin: 18px 16px 0 0;
    position: relative;
}
.side-menu a {
    display: block;
    color: #4d4d4f;
    background: #d1d3d4;
    font-size: 14.5px;
    text-align: center;
    width: 84%;
    padding: 15px 6%;
    margin: 10px 0;
    font-weight: 400;
}
.side-menu.products-menu a {
    color: #fff;
    background: #808285;
}
.side-menu.products-menu a.lightgray-bg {
    background: #8a8c8e;
}
.side-menu.products-menu a.blue-bg {
    background: #008fc5;
}
.side-menu.products-menu a.orange-bg {
    background: #f58220;
}
.side-menu.products-menu a.red-bg {
    background: #b6101d;
}
.side-menu.products-menu a.darkblue-bg {
    background: #1c6fb8;
}
.side-menu.products-menu a.small-padding {
    padding: 5px 6%;
}
.side-menu.products-menu a.side-submenu {
    color: #4d4d4f;
    background: #e6e7e8;
    margin: 0 0 3px;
    padding: 6px 6%;
    width: 84%;
}
.side-menu.products-menu a.side-submenu .sub-txt {
    display: block;
    font-size: 12px;
}
.side-menu.products-menu.reserve-menu a {
    color: #000;
    background: #c4d6aa;
    width: 91%;
    padding: 15px 4%;
    font-size: 1em;
    font-weight: bold;
}
.side-menu.products-menu.reserve-menu a.active {
    color: #fff;
    background: #70993f;
}
.side-menu.products-menu.reserve-menu.lightgreen a,
.side-menu.products-menu.reserve-menu.midgreen a,
.side-menu.products-menu.reserve-menu.darkgreen a {
    background: #e0e7d0;
}
.side-menu.products-menu.reserve-menu.lightgreen a.active {
    color: #000;
    background: #bed539;
}
.side-menu.products-menu.reserve-menu.midgreen a.active {
    color: #fff;
    background: #71983f;
}
.side-menu.products-menu.reserve-menu.darkgreen a.active {
    color: #fff;
    background: #5a7a37;
}
.main-logo {
    text-align: right;
    margin-top: 28px;
}
.contact-form {
    margin-top: 24px;
    color: #212224;
}
fieldset {
    background: #e6e7e8;
    padding: 7px;
    margin: 5px 0;
}
.contact-form label {
    display: inline-block;
    margin: 0 1%;
    width: 17%;
    font-size: 14px;
    vertical-align: top;
}
.contact-form input,
.contact-form textarea {
    display: inline-block;
    width: 81%;
    line-height: 20px;
    border: none;
    background: #fff;
    box-sizing: border-box;
}
.contact-form input:focus,
.contact-form textarea:focus {
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
}
.contact-form input {
    height: 20px;
    padding: 0 4px;
    margin-bottom: 14px;
}
.contact-form input:last-child {
    margin-bottom: 0;
}
.contact-form textarea {
    height: 20px;
    height: 170px;
    padding: 4px;
    resize: none;
}
h6 {
    font-size: 14px;
    font-weight: bold;
    margin: 2px 8px 12px;
}
.contact-form-wrapper,
.product-main {
    width: 94%;
    position: relative;
}
.contact-form-wrapper {
    margin-bottom: 140px;
}
button.primary-button {
    background: #f58220;
    color: #ffffff;
}
button.primary-button i {
    color: #ffffff;
    font-size: 20px;
    margin-right: 0.25em;
    vertical-align: middle;
    margin-top: -0.15em;
}
button.primary-button:hover,
button.primary-button:active,
button.primary-button:hover i,
button.primary-button:active i {
    color: #212224;
}
#contactSubmit {
    float: right;
}
.page-info {
    padding-bottom: 32px;
}
.blue-border {
    border-color: #0285be;
}
.darkblue-border {
    border-color: #1c6fb8;
}
.red-border {
    border-color: #b6101d;
}
.green-border {
    border-color: #5a7713;
}
.lightgreen-border {
    border-color: #c8d100;
}
.midgreen-border {
    border-color: #749413;
}
.deepgreen-border {
    border-color: #3e560e;
}
.main-content {
    margin-top: 40px;
}
.product-reserve .main-content {
    margin-top: 25px;
}
.main-content p {
    text-align: justify;
}
.main-content img.right {
    clear: both;
    margin-left: 4.4%;
}
.main-content img.right:last-of-type {
    margin-bottom: 8%;
}
.bottom-info {
    margin: 30px 0 25px;
    border-top: 10px solid #f58220;
    padding-top: 12px;
}
.bottom-info .mdl-cell {
    margin: 0;
    font-size: 14px;
    line-height: 1.5em;
    text-align: justify;
}
.bottom-info .mdl-cell--4-col {
    width: 29%;
}
.bottom-info .mdl-cell--4-col.mid {
    margin: 0 6.5%;
}
.bottom-info .mdl-cell--6-col {
    width: 45%;
    margin: 0 5% 0 0;
}
.bottom-info .mdl-cell--6-col:last-child {
    margin: 0 0 0 5%;
}
.section {
    background: #fff;
}
.page .section:last-child .next-section-arrow,
.page .section:first-child .go-back-arrow {
    display: none;
}
.bottom-side-left {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
}
.design-side-right {
    position: absolute;
    bottom: 30px;
    right: 0;
}
.design-side-right.batteries_cells-design-right {
    width: 275px;
}
.design-side-right.large-bottom-space {
    bottom: 80px;
}
.bottom-side-left .side-img {
    text-align: center;
}
.bottom-side-left h6,
.design-side-right h6 {
    color: #f7923d;
    font-size: 13.5px;
    font-weight: bold;
    margin: 0 0 6px;
    line-height: 1.3em;
}
.bottom-side-left li,
.design-side-right li {
    color: #4d4d4f;
    font-size: 11px;
    font-weight: bold;
    border-bottom: 1px solid #f58222;
    padding: 6px 1% 6px 0;
    list-style-type: none;
    line-height: 1.3em;
    display: block;
}
.bottom-side-left li:last-child,
.design-side-right li:last-child {
    border: none;
}
.table-notes {
    max-width: 420px;
    font-size: 11px;
    color: #212224;
    line-height: 1em;
    margin: 60px 0 30px;
}
.table-notes.right {
    margin-top: 2px;
    margin-right: 10px;
}
.table-notes.alignright {
    margin-top: 5px;
    margin-right: 0;
}
.txtleft {
    text-align: left;
}
.table-notes.small-mr {
    margin-right: 6%;
}
.table-notes.small-mt {
    margin-top: 18px;
}
.table-notes.full-width {
    max-width: 100%;
}
.product-main h1 {
    margin-top: -40px;
}
.product-main h1.inner-title {
    margin-top: 8px;
}
.product-table {
    margin: 20px 0;
    text-align: center;
}
.no-margin-grid .mdl-cell {
    margin: 0;
}
.no-margin-grid .mdl-cell--1-6-col {
    width: 16%;
}
.no-margin-grid .mdl-cell--2-col {
    width: 19%;
}
.no-margin-grid .mdl-cell--2-5-col {
    width: 22%;
}
.no-margin-grid .mdl-cell--3-col {
    width: 25%;
}
.no-margin-grid .mdl-cell--4-5-col {
    width: 39%;
}
.no-margin-grid .mdl-cell--5-col {
    width: 40.5%;
}
.no-margin-grid .mdl-cell--5-5-col {
    width: 42%;
}
.no-margin-grid .mdl-cell--6-col {
    width: 48%;
}
.no-margin-grid .mdl-cell--9-col {
    width: 75%;
}
.hidden {
    display: none;
}
.fadeInLink {
    display: block;
}
.popup-button {
    line-height: 24px;
    color: #fff;
    display: block;
    margin-bottom: 10px;
    position: relative;
}
.popup-button span {
    display: inline-block;
}
.popup-button .popup_num,
.features-popup .popup_num {
    background: #f58222;
    width: 22px;
    text-align: center;
    font-size: 13px;
}
.product-reserve .popup-button .popup_num,
.product-reserve .features-popup .popup_num {
    background: #70993f;
}
.popup-button .popup_title {
    background: #d1d4d6;
    color: #000;
    width: 137px;
    padding-left: 9px;
    font-weight: bold;
    font-size: 11px;
}
.popup-button.double-row .popup_num {
    height: 36px;
    float: left;
}
.popup-button.double-row .popup_title {
    line-height: 14px;
    padding: 4px 0 4px 9px;
}
.popup-button:after {
    display: block;
    position: absolute;
    content: "";
    background: transparent url(../img/popup-btn-arrow.png) no-repeat scroll;
    right: 6px;
    top: 5px;
    width: 9px;
    height: 13px;
}
.applications-content .popup-button:after {
    right: 21px;
}
.popup-button.double-row:after {
    top: 11px;
}
.features-single-top-padding {
    padding-top: 34px;
}
.features-double-top-padding {
    padding-top: 68px;
}
.benefits-grid ul {
    font-size: 12px;
    line-height: 1.7em;
}
.errorMsg {
    color: red;
    padding: 1em;
    font-size: 1.2em;
    display: none;
    float: left;
}
#exportMsg {
    color: green;
    width: 70%;
}
.home-header {
    padding: 0 2.5%;
}
#container.home footer {
    margin: 0 2.5%;
}
.product-descr {
    max-width: 560px;
}
.design-wrapper,
.quiz-wrapper {
    position: relative;
    margin: 0 auto;
}
.design-wrapper {
    width: 600px;
    height: 599px;
}
.quiz-wrapper {
    width: 460px;
    height: 388px;
}
.design-wrapper .point,
.quiz-wrapper .option {
    z-index: 9;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}
.design-wrapper .point {
    color: #fff;
    font-size: 60px;
    border: 2px solid #fff;
}
.design-features-grid {
    position: relative;
    z-index: 9;
}
#contactsExport {
    margin-bottom: 60px;
}
.product-subtitle {
    font-size: 16px;
    color: #231f20;
    margin: 0 0 12px;
    font-weight: bold;
}
.product-subtitle.inner {
    color: #0f080b;
}
.product-reserve h1 {
    font-size: 29px;
}
.product-main.product-reserve {
    padding-bottom: 30px;
}
.product-main.product-reserve h1.inner-title {
    padding: 18px 0 6px;
    text-align: left;
}
.product-reserve .bottom-info {
    border-top-color: #70993f;
}
.reserve-logo-right {
    color: #71983f;
    float: right;
    font-size: 24px;
    margin: 0;
}
.application-lbl {
    color: #fff;
    font-weight: bold;
    text-align: center;
    background: #66952e;
    margin-top: 6px;
}
.product-reserve .features-grid .mdl-cell ul {
    min-height: 103px;
}
.product-reserve .features-grid li {
    list-style-type: none;
}
.reserve-table-notes {
    line-height: 1.1em;
    text-align: right;
    font-size: 10px;
}
.features-img {
    margin: 20px 0 12px;
}
.features-stamp {
    display: flex;
    align-items: center;
}
.features-stamp img {
    z-index: 2;
}
.features-list {
    background: #e6e7e8;
    padding: 16px 2% 16px 8.5%;
    margin-left: -5%;
    z-index: 1;
    position: relative;
}
.features-list.large-list {
    font-size: 17px;
}
.features-list li {
    font-size: 0.8em;
    line-height: 1.4em;
    list-style-position: outside;
}
.copyright .mdl-cell {
    margin: 0;
}
.footer-breadcrumbs {
    text-align: left;
    color: #231f20;
}
.reserve-applications-grid img {
    opacity: 0;
}
.mid-title {
    font-size: 16px;
    font-weight: bold;
}
.mid-title.smaller {
    font-size: 15px;
    margin-top: 36px;
}
.green-small-title {
    font-size: 1.025em;
    color: #70993f;
    margin: 10px 0 2px;
}
.table-img {
    margin-top: 30px;
    text-align: center;
}
.gray-title {
    color: #4d4d4f;
    font-weight: bold;
}
.gray-green {
    color: #66952e;
}
.gray-box {
    background: #e6e7e8;
    padding: 0 16px 11px;
    font-size: 12px;
    margin: 25px 0;
}
.gray-box p {
    font-size: 12px;
}
.gray-box-features h4 {
    background: #e6e7e8;
    margin: 0 0 7px;
    line-height: 26px;
    padding-left: 30px;
    position: relative;
    font-size: 12px;
    color: #231f20;
}
.gray-box-features .box-descr {
    background: #e6e7e8;
    font-size: 10px;
    color: #231f20;
    padding: 6px 8px 10px;
    min-height: 180px;
    line-height: 1.2em;
}
.gray-box-features .box-descr h6 {
    color: #66952e;
    font-size: 10px;
    margin: 2px 0 0;
    padding: 0;
}
.gray-box-features .box-descr .dot-green {
    color: #71983f;
}
.gray-box-features .benefit-icon {
    background-color: #66952e;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    height: 26px;
    width: 24px;
    position: absolute;
    left: 0;
    top: 0;
}
.benefit-icon.operation {
    background-image: url(../img/operation-icon.png);
}
.benefit-icon.triangle {
    background-image: url(../img/design-icon.png);
}
.benefit-icon.tick {
    background-image: url(../img/benefits-icon.png);
}
.benefit-icon.cog {
    background-image: url(../img/features-icon.png);
}
.gray-box-features.large-features h4 {
    font-size: 14px;
}
.gray-box-features.large-features .box-descr {
    padding: 8px 13px 10px;
    min-height: 124px;
    color: #4d4d4f;
    font-size: 16px;
    margin-bottom: 25px;
}
.graph-imgs label {
    display: block;
    margin-bottom: 30px;
}
.future2018icon {
    margin: 0 0 4px 3px;
}
.features-descr p,
.features-descr strong {
    color: #231f20;
    font-size: 10.5px;
    line-height: 1.25em;
    text-align: left;
    margin-left: 10px;
}
.light-font {
    font-weight: 300;
}
.smaller-font {
    font-size: 0.9em;
}
.alignright {
    text-align: right;
}
.specs-tables-header {
    text-align: center;
}
.mdl-layout__drawer
.mdl-navigation
.mdl-collapse__content-wrapper
.mdl-navigation__link {
    padding-left: 104px;
}
.mdl-layout__drawer
.mdl-navigation
.mdl-collapse__content-wrapper
.mdl-navigation__link.with-img {
    padding-left: 50px;
}
.mdl-layout__drawer
.mdl-navigation
.mdl-collapse__content-wrapper
.mdl-navigation__link.with-img
span {
    margin-left: 16px;
}
.mdl-layout__drawer
.mdl-navigation
.mdl-collapse--opened
.mdl-collapse__content-wrapper
.mdl-collapse__content-wrapper
.mdl-navigation__link,
.mdl-layout__drawer
.mdl-navigation
.mdl-collapse__content-wrapper
.mdl-collapse__content-wrapper
.mdl-navigation__link,
.mdl-layout__drawer
.mdl-navigation
.mdl-collapse__content-wrapper
.mdl-navigation__link
i {
    display: none;
}
.mdl-layout__drawer
.mdl-navigation
.mdl-collapse--opened
.mdl-collapse__content-wrapper
.mdl-collapse--opened
.mdl-collapse__content-wrapper
.mdl-navigation__link,
.mdl-layout__drawer
.mdl-navigation
.mdl-collapse--opened
.mdl-collapse__content-wrapper
.mdl-navigation__link
i {
    display: block;
}
.mdl-layout__drawer .mdl-navigation > .mdl-navigation__link,
.mdl-layout__drawer .mdl-navigation > .mdl-collapse > .mdl-navigation__link a {
    font-weight: 700;
}
.fw-300 {
    font-weight: 300;
}
.fw-500 {
    font-weight: 500;
}
.fw-700 {
    font-weight: 700;
}
.color-orange {
    color: #ee7f00;
}
.txt-xmlarge {
    font-size: 62px;
}
.txt-xlarge {
    font-size: 65px;
}
.txt-xxlarge {
    font-size: 72px;
}
.txt-xxxlarge {
    font-size: 92px;
}
.txt-mmlarge {
    font-size: 35px;
}
.txt-mlarge {
    font-size: 28px;
}
.txt-llarge {
    font-size: 24px;
}
.txt-50 {
    font-size: 50px;
}
.txt-45 {
    font-size: 45px;
}
.txt-40 {
    font-size: 40px;
}
.txt-30 {
    font-size: 30px;
}
.txt-25 {
    font-size: 25px;
}
.txt-20 {
    font-size: 20px;
}
.txt-larger,
.txt-larger p {
    font-size: 17px;
}
.txt-llarge,
.txt-xmlarge,
.txt-mmlarge,
.txt-20,
.txt-25,
.txt-30,
.txt-40,
.txt-45,
.txt-50,
.txt-xlarge,
.txt-xxlarge,
.txt-xmlarge,
.txt-mlarge,
.txt-xxxlarge {
    line-height: 1em;
}
.border-right {
    border-right: 1px solid #3e3d40;
}
.border-left {
    border-left: 1px solid #3e3d40;
}
.border-bottom {
    border-bottom: 1px solid #3e3d40;
}
.orange-border {
    border-color: #ee7f00;
}
.border-two {
    border-width: 2px;
}
.scroll-up-icon {
    color: #000;
    font-size: 60px;
    display: none;
}
.scroll-down-icon {
    color: #929395;
    font-size: 100px;
    position: absolute;
    bottom: 55px;
    left: calc(50% - 55px);
    width: 100px;
    text-align: center;
}
.scroll-menu-button {
    width: 320px;
    border: 4px solid #929395;
    border-radius: 30px;
    display: block;
    margin: 0 auto;
    text-align: center;
    color: #000;
    padding: 10px;
    background: #fff;
}
.scroll-menu-button.small {
    width: 275px;
    padding: 8px;
    border-radius: 16px;
}
.scroll-menu-button.xsmall {
    width: 205px;
    padding: 8px;
    border-radius: 30px;
    border-width: 5px;
    font-weight: 400;
}
.scroll-menu-button.absolute-bottom {
    position: absolute;
    bottom: 110px;
    left: calc(50% - 150px);
    z-index: 9;
}
.scroll-menu-button:hover {
    background: #929395;
    color: #fff;
}
.scroll-menu-button.orange {
    border-color: #ee7f00;
}
.scroll-menu-button.orange:hover {
    background: #ee7f00;
}
.orange-bg {
    background: #ee7f00;
    color: #fff;
}
.text-center {
    text-align: center;
}
.text-justify {
    text-align: justify;
}
.range-icons img {
    vertical-align: middle;
}
.range-icon {
    height: 100px;
    line-height: 100px;
}
.range-icon.mid {
    height: 80px;
    line-height: 80px;
}
.range-balloon {
    border-radius: 50%;
    border: 15px solid rgba(0, 0, 0, 0.4);
    position: absolute;
    z-index: 9;
    left: 75px;
    top: 34%;
    width: 328px;
    height: 328px;
}
.avatar-balloon {
    border-radius: 50%;
    border: 12px solid rgba(0, 0, 0, 0.4);
    position: absolute;
    z-index: 9;
    left: 75px;
    bottom: 190px;
    width: 232px;
    height: 232px;
}
.avatar-balloon.small {
    border: 7px solid rgba(0, 0, 0, 0.4);
    width: 136px;
    height: 136px;
    font-size: 19px;
    left: 105px;
    bottom: 180px;
}
.balloon-inner {
    border-radius: 50%;
    height: 100%;
    padding: 10px;
    box-sizing: border-box;
    line-height: 1.25em;
}
.range-balloon .balloon-outer {
    display: block;
    content: "";
    background-image: url(../img/balloon-border-large.png);
    background-repeat: no-repeat;
    width: 406px;
    height: 406px;
    position: absolute;
    background-size: 100% auto;
    left: -40px;
    top: -40px;
}
.range-balloon.mid {
    border: 12px solid rgba(0, 0, 0, 0.4);
    left: 650px;
    top: auto;
    bottom: 215px;
    width: 238px;
    height: 238px;
}
.range-balloon.mid .balloon-outer {
    width: 288px;
    height: 288px;
    left: -25px;
    top: -25px;
}
.range-balloon .balloon-outer.gray {
    background-image: url(../img/balloon-border-gray-large.png);
}
.avatar-balloon .balloon-outer {
    display: block;
    content: "";
    background-image: url(../img/balloon-border-mid.png);
    background-repeat: no-repeat;
    width: 289px;
    height: 289px;
    position: absolute;
    background-size: 100% auto;
    left: -28px;
    top: -28px;
}
.avatar-balloon.small .balloon-outer {
    width: 167px;
    height: 167px;
    left: -15px;
    top: -15px;
}
.avatar-balloon .balloon-inner:before {
    content: "";
    display: block;
    border: 34px solid transparent;
    border-top-color: #ee7f00;
    position: absolute;
    left: 29px;
    top: 172px;
    -moz-transform: rotate(160deg);
    -webkit-transform: rotate(160deg);
    -ms-transform: rotate(160deg);
    -o-transform: rotate(160deg);
    transform: rotate(160deg);
}
.avatar-balloon.small .balloon-inner:before {
    border-width: 22px;
    left: 19px;
    top: 102px;
}
.speech-balloon {
    border-radius: 25px;
    border: 5px solid #929395;
    position: absolute;
    z-index: 9;
    left: -118px;
    bottom: 220px;
    width: 290px;
    height: 150px;
}
.speech-balloon.long {
    left: -308px;
    bottom: 350px;
    width: 420px;
    height: 92px;
}
.speech-balloon.orange {
    border-color: #ee7f00;
}
.speech-balloon-inner {
    border-radius: 25px;
    height: 100%;
    padding: 10px;
    box-sizing: border-box;
    line-height: 1.25em;
    background: #fff;
    color: #000;
}
.speech-balloon-inner:before {
    left: 140px;
    top: 120px;
    -moz-transform: rotate(-136deg);
    -webkit-transform: rotate(-136deg);
    -ms-transform: rotate(-136deg);
    -o-transform: rotate(-136deg);
    transform: rotate(-136deg);
    content: "";
    display: block;
    border: 30px solid transparent;
    border-top-color: #929395;
    position: absolute;
}
.speech-balloon.long .speech-balloon-inner:before {
    left: 350px;
    top: 66px;
}
.speech-balloon.orange .speech-balloon-inner:before {
    border-top-color: #ee7f00;
}
.technical-avatar-caption {
    position: absolute;
    bottom: 135px;
    left: -100px;
    width: 180px;
    font-size: 14px;
}
.technical-img-wrapper {
    position: relative;
}
.design-wrapper img,
.technical-img-wrapper img {
    margin: 0 auto;
    display: block;
}
.technical-img-header,
.technical-img-descr {
    display: block;
    position: absolute;
}
.technical-avatar {
    position: absolute;
    bottom: 24px;
    left: calc(50% - 102px);
}
.technical-avatar.side-avatar:before {
    position: absolute;
    left: -24px;
    bottom: 0;
    content: "";
    display: block;
    border-bottom: 10px solid #929395;
}
.technical-avatar.flipped img {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}
.technical-avatar.flipped .avatar-balloon {
    left: -75px;
    bottom: 190px;
}
.technical-avatar.flipped .avatar-balloon.small .balloon-inner:before {
    left: 90px;
    top: 94px;
    -moz-transform: rotate(-160deg);
    -webkit-transform: rotate(-160deg);
    -ms-transform: rotate(-160deg);
    -o-transform: rotate(-160deg);
    transform: rotate(-160deg);
}
.technical-avatar-inner {
    position: relative;
}
.advantage-list-item {
    border-left: 1px solid #ee7f00;
    padding-left: 5px;
    margin-bottom: 10px;
}
.lh-larger {
    line-height: 1.3em;
}
.lh-xlarger {
    line-height: 1.6em;
}
.lh-xxlarger {
    line-height: 1.8em;
}
.border-thick-left {
    border-left: 12px solid #929395;
    padding: 10px 0 10px 23px;
    line-height: 1.2em;
}
.color-darkblue {
    color: #12233c;
}
.relative {
    position: relative;
}
.home-wrapper {
    background: url(../img/round-gray-bg.png) no-repeat;
    height: 100%;
    background-size: 100% auto;
}
.intro-wrapper {
    background-image: url(../img/floor-bg.png);
    background-position: bottom center;
}
.home-avatar {
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 100px;
}
.home-avatar2 {
    position: absolute;
    z-index: 1;
    bottom: 48px;
    left: 175px;
}
.chat-bubble {
    position: absolute;
    width: 388px;
    height: 185px;
    background-color: #fff;
    border: 15px solid #d9dadb;
    left: 182px;
    top: 84px;
}
.chat-bubble.long {
    width: 530px;
    height: 168px;
    left: 80px;
    top: 100px;
}
.chat-bubble:after {
    content: " ";
    position: absolute;
    width: 0;
    height: 0;
    left: 158px;
    bottom: -76px;
    border-top: 62px solid #d9dadb;
    border-right: 40px solid transparent;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}
.chat-bubble:after {
    border-top: 62px solid #d9dadb;
    border-right: 62px solid transparent;
    left: 58px;
}
.trapezium-chat-bubble {
    border-bottom: 185px solid #d9dadb;
    border-left: 0 solid transparent;
    border-right: 155px solid transparent;
    height: 0;
    width: 532px;
    z-index: 3;
    position: absolute;
    top: 60px;
    left: 290px;
}
.trapezium-chat-bubble .chat-bubble-inner {
    margin-top: 14px;
    margin-left: 17px;
    background: transparent;
    border-bottom: 155px solid #fff;
    border-left: 0 solid transparent;
    border-right: 125px solid transparent;
    height: 0;
    width: 502px;
}
.trapezium-chat-bubble:before {
    content: " ";
    position: absolute;
    width: 0;
    height: 0;
    left: 30px;
    right: auto;
    top: 170px;
    border: 40px solid;
    border-color: #d9dadb transparent transparent #d9dadb;
}
.trapezium-chat-bubble:after {
    content: " ";
    position: absolute;
    width: 0;
    height: 0;
    left: 40px;
    right: auto;
    top: 169px;
    border: 27px solid;
    border-color: #fff transparent transparent #fff;
}
.round-btn-link {
    width: 326px;
    height: 326px;
    background: #fff;
    border: 19px solid #929395;
    color: #1a1a1a;
    text-align: center;
    padding-top: 86px;
    box-shadow: 3px 4px 23px rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    display: block;
    box-sizing: border-box;
    line-height: 1.1em;
}
.m-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}
.round-btn-link:hover {
    color: #fff;
    background: #929395;
}
.round-btn-link.orange {
    /*border-color: #ee7f00;*/
}
.round-btn-link.orange:hover {
    /*background: #ee7f00;*/
}
.round-btn-link.darkblue {
    border-color: #12233c;
}
.round-btn-link.darkblue:hover {
    background: #12233c;
}
h1,
h1 a {
    font-weight: 700;
    font-size: 72px;
}
a {
    color: #003358;
}
#main .page {
    display: none;
    height: 100%;
}
#next-btn {
    display: none;
}
.cta-btn {
    background: #1a2868;
    color: white;
    border: none;
    line-height: 1em;
    font-weight: 700;
    text-align: center;
    position: fixed;
    bottom: 4%;
    transform: translateX(-75%);
    padding: 20px 60px;
    background-color: #1a2868;
    text-decoration: none;
    font-size: 23px;
    border-radius: 48px;
}
.cta-btn:hover,
.cta-btn:focus {
    background: #0e76b5;
    color: white;
    text-decoration: none;
}
.cta-btn.alt {
    background: #ececed;
    color: #0e76b5;
    font-size: 84px;
    border: 6px solid #0e76b5;
}
.cta-btn.alt.disabled {
    font-size: 28px;
    color: #616264;
}
.cta-btn.large {
    font-size: 106px;
}
.cta-btn.mid {
    font-size: 30px;
}
.cta-btn.disabled {
    opacity: 0.3;
}
.logo {
    position: absolute;
    right: 5.7%;
    top: 6%;
}
.logo img {
    width: 224px;
    height: auto;
}
.landing-cta {
    position: absolute;
    bottom: 10%;
    left: 10%;
    display: flex;
    text-align: center;
}
.landing-cta-gamepages {
    position: absolute;
    bottom: 3%;
    right: 21%;
    display: flex;
    text-align: center;
    padding: 0;
}
.landing-title {
    position: absolute;
    top: 9%;
    left: 9%;
    margin: 0 auto;
    font-size: 7em;
    line-height: 1.2em;
}
.landing-title span {
    text-shadow: 5px 5px 20px black;
}

.landing-subtitle {
    font-size: 0.6em;
    line-height: 1em;
    margin: 18px 0 0 -10px;
}
.landing-msg {
    position: absolute;
    bottom: 7%;
    left: 14%;
    font-size: 3.5em;
    line-height: 1.2em;
    font-weight: 300;
}
.thankyou-msg {
    position: absolute;
    top: 21%;
    left: 4%;
    font-size: 3.8em;
    line-height: 1.2em;
}
.thankyou-title {
    font-size: 3.6em;
    line-height: 0.78em;
    margin: 70px 0 44px;
}
.instantwin-msg {
    position: absolute;
    top: 11%;
    right: 1.6%;
    font-size: 3.5em;
    line-height: 1.2em;
}
.instantwin-title {
    font-size: 3.5em;
    line-height: 0.78em;
    margin: 40px 0 12px;
}
.result-title {
    position: absolute;
    top: 34%;
    right: 10%;
    font-size: 9em;
    line-height: 0.78em;
}
.landing-title .zoomIn,
.result-title .zoomIn,
.thankyou-title .zoomIn {
    letter-spacing: -0.05em;
}
.result-cta {
    position: absolute;
    bottom: 5%;
    right: 4%;
    display: flex;
    text-align: center;
}
.result-msg {
    position: absolute;
    bottom: 11%;
    left: 4%;
    font-size: 3.8em;
    line-height: 1.2em;
    font-weight: 300;
}
.flex-cell {
    padding: 30% 10% 0% 10%;
}
.flex-cell-right {
    padding: 0 5% 0 0;
}
.flex-cell-right-mini {
    padding: 0 2% 0 0;
}
.gray-bg {
    background: rgb(255, 255, 255);
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(226, 227, 228, 1) 100%
        );
}
.round-img {
    position: relative;
    background: #fff;
    border-radius: 50%;
    border: 10px solid #003358;
    box-shadow: 0 0 20px 10px rgba(200, 200, 200, 0.6);
    width: 420px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.styled-list {
    color: #003358;
    font-size: 26px;
    list-style-type: square;
    list-style-position: outside;
    padding: 45px 0 0 30px;
    line-height: 1.4em;
}
.styled-list li {
    margin-bottom: 15px;
}
.disabled {
    -webkit-transition: opacity 800ms ease;
    transition: opacity 800ms ease;
}
.point-tip {
    position: absolute;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    border: 2px solid #255070;
    background: rgba(255, 255, 255, 0.8);
    font-size: 19px;
    border-radius: 32px;
    color: #1a171b;
    display: flex;
    width: 206px;
    height: 108px;
    align-items: center;
    padding: 0 20px 0 20px;
    z-index: 1;
    opacity: 0;
}
.point-tip.visible {
    z-index: 99;
    opacity: 1;
}
.prod-benefits {
    position: absolute;
    right: 0;
    top: 50px;
    background: url(../img/step-4-label-bg.png) no-repeat scroll center right;
    background-size: 100% auto;
    width: 340px;
    height: 200px;
}
.fs-32 {
    font-size: 33px;
}
#main {
    display: block;
    height: 100%;
}
.checkmark {
    display: none;
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 150px;
    color: green;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    text-shadow: 5px 5px #000000;
}

.checkmark.show {
    display: block;
    opacity: 1;
    animation: scaleUp 0.5s ease-in-out;
}

@keyframes scaleUp {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}
