﻿html,
body {
    height: 100%;
}

body {
    font-family: Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    color: #545f66;
    transition: all 200ms cubic-bezier(.17, .67, .83, .67);
    -moz-transition: all 200ms cubic-bezier(.17, .67, .83, .67);
    -webkit-transition: all 200ms cubic-bezier(.17, .67, .83, .67);
}
.g_container .dates input
*,
*::after,
*::before {
    box-sizing: border-box;
}

*:focus {
    outline: none;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
    margin: 0;
    padding: 0;
}

ul {
    list-style-type: none;
}

a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
}

p {
    line-height: 1.5;
}

img {
    max-width: 100%;
    display: block;
}



/* --- Global --- */

.g_wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.g_container {
    width: 100%;
    padding: 20px 0;
    display: flex;
    flex-flow: row wrap;
}

.g_row {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.g_col {
    width: 50%;
    position: relative;
}

.section {
    padding: 5em 0;
}

.section_light-bg {
    background-color: #f6f7f7;
    padding: 2.5em 0;
}

.section_gradient-bg {
    background: #6482c1;
    background: linear-gradient(to top, #4ec4d3 0%, #6482c1 100%);
    background: -moz-linear-gradient(to top, #4ec4d3 0%, #6482c1 100%);
    background: -webkit-linear-gradient(to top, #4ec4d3 0%, #6482c1 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4ec4d3', endColorstr='#6482c1', GradientType=0);
    color: #fff;
}

.btn {
    font-weight: bold;
    border-radius: .25em;
    padding: 16px 1.875em;
    font-size: 14px;
    transition: all 200ms cubic-bezier(.17, .67, .83, .67);
    -moz-transition: all 200ms cubic-bezier(.17, .67, .83, .67);
    -webkit-transition: all 200ms cubic-bezier(.17, .67, .83, .67);
    cursor: pointer;
}

.btn-gradient {
    background: #6482c1;
    background: linear-gradient(to bottom, #4ec4d3 0%, #6482c1 100%);
    background: -moz-linear-gradient(to bottom, #4ec4d3 0%, #6482c1 100%);
    background: -webkit-linear-gradient(to bottom, #4ec4d3 0%, #6482c1 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4ec4d3', endColorstr='#6482c1', GradientType=0);
    color: #fff;
}

.btn:hover {
    transform: scale(1.05);
}

.btn-default {
    background-color: #4ec4d3;
    color: #fff;
}

.btn-default:hover {
    background-color: #6482c1;
}

.btn-white {
    background-color: #fff;
    color: #4ec4d3;
}

.btn-transparent {
    background-color: rgba(255, 255, 255, .1);
    border: 1px solid #fff;
    color: #fff;
}

.btn-border {
    border: 1px solid #6482c1;
    color: #6482c1;
}

.btn-border:hover {
    border: 1px solid #4ec4d3;
    background-color: #4ec4d3;
    color: #fff;
}

.g_section-title {
    font-size: 2em;
    padding-bottom: 1.125rem;
    position: relative;
    margin-bottom: 1.125em;
    font-weight: lighter;
    width: 100%;
    flex: 1 100%;
}

.g_section-title--center {
    text-align: center;
}

.g_section-title--white {
    color: #fff;
}

.g_section-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100px;
    height: 2px;
    background: #6482c1;
    background: linear-gradient(to right, #4ec4d3 0%, #6482c1 100%);
    background: -moz-linear-gradient(to right, #4ec4d3 0%, #6482c1 100%);
    background: -webkit-linear-gradient(to right, #4ec4d3 0%, #6482c1 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4ec4d3', endColorstr='#6482c1', GradientType=0);
}

.g_section-title--center:after {
    left: 50%;
    transform: translateX(-50%);
}

.g_section-title--white:after {
    background: #fff;
}

.g_list-item {
    line-height: 1.5;
    padding: .5em 0 .5em 40px;
    position: relative;
}

.g_list-item:before {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    background: url('images/list-bullet.png') 100% center no-repeat;
    background-size: contain;
}

.g_text {
    margin: 1.125rem 0;
}

.g_col-padding {
    padding-left: 6em;
}

.g_col-padding--right {
    padding-right: 6em;
}

.g_page-title {
    background: #6482c1;
    background: linear-gradient(to top, #4ec4d3 0%, #6482c1 100%);
    background: -moz-linear-gradient(to top, #4ec4d3 0%, #6482c1 100%);
    background: -webkit-linear-gradient(to top, #4ec4d3 0%, #6482c1 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4ec4d3', endColorstr='#6482c1', GradientType=0);
    color: #fff;
    padding: 2em 0;
}

.g_page-title h1 {
    margin: 0 auto;
    max-width: 650px;
    font-weight: lighter;
    font-size: 3.5em;
    text-align: center;
    width: 100%;
}

.g_page-title span {
    display: block;
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    margin-top: 1.125em;
    line-height: 1.5;
}

.g_grid-3 .g_row {
    align-items: flex-start;
}

.g_grid-3 .g_col {
    margin-right: 7em;
}

.g_grid-3 .g_col:nth-child(3) {
    margin: auto;
}

.divider {
    height: 1px;
    width: 100%;
    background-color: rgba(100, 130, 195, 0.15);
}



/* --- /Global --- */


/* --- Header --- */

.header {
    background-color: #fff;
    box-shadow: 0 3px 8px rgba(100, 130, 195, 0.16);
}

.header_container {
    justify-content: space-between;
    flex-flow: row wrap;
}

.nav {
    display: flex;
    align-items: center;
    flex-flow: row wrap;
}

.nav_main,
.nav_login {
    font-size: 0;
}

.nav_main li,
.nav_login li {
    display: inline-block;
    font-size: 16px;
    margin-right: 3em;
}

.nav_main li:last-child,
.nav_login li:last-child {
    margin-right: 0;
}

.nav_divider {
    width: 2px;
    height: 3em;
    margin: 0 3em;
    background: #6482c1;
    background: linear-gradient(to bottom, #4ec4d3 0%, #6482c1 100%);
    background: -moz-linear-gradient(to bottom, #4ec4d3 0%, #6482c1 100%);
    background: -webkit-linear-gradient(to bottom, #4ec4d3 0%, #6482c1 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4ec4d3', endColorstr='#6482c1', GradientType=0);
}

.nav li a:not(.btn) {
    color: #6482c1;
    font-weight: bold;
}

.nav li a:not(.btn):hover {
    color: #4ec4d3;
}



/* --- /Header --- */


/* --- Hero --- */

.hero {
    position: relative;
    background: url('images/hero-image.jpg') 100% center no-repeat;
    width: 100%;
    height: calc(100vh - 112px);
    display: flex;
    align-items: center;
}

.hero_container {
    width: 100%;
}

.hero_caption {
    width: 610px;
    font-size: 0;
}

.hero_caption .hero_headline {
    font-size: 4.5rem;
    color: #fff;
}

.hero_caption .hero_text {
    display: block;
    color: #fff;
    line-height: 1.5;
    font-size: 1.5rem;
}

.hero_caption .btn {
    width: 190px;
    text-align: center;
}

.hero_caption .btn-white {
    margin-right: 1.25em;
}

.hero_caption>h1,
.hero_caption>span {
    margin-bottom: 2rem;
}



/* --- /Hero --- */


/* --- Partners --- */

.partners {
    box-shadow: 0 0 16px rgba(100, 130, 195, 0.16);
    position: relative;
}

.partners_list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.75em 0;
}



/* --- /Partners --- */


/* --- About --- */

.about {
    background-color: #f6f7f7;
    padding: 5em 0;
}

.about_image {
    position: absolute;
    bottom: -250px;
    transform: scale(.85);
    z-index: 2;
}



/* --- /About --- */


/* --- Features --- */

.features {
    padding: 5em 0;
}

.features_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 1.125em -20px 0 -20px;
}

.features_item {
    width: calc(90%/3);
    padding: 0 20px 3em 20px;
}

.features_item:nth-last-child(-n+3) {
    padding-bottom: 0;
}

.features_header {
    font-size: 0;
}

.features_header img {
    display: inline-block;
    margin-right: .85em;
    vertical-align: middle;
    font-size: 1rem;
}

.features_header span {
    display: inline-block;
    vertical-align: middle;
    font-weight: bold;
    font-size: 18px;
}



/* --- /Features --- */


/* --- Plans --- */

.plans {
    background-color: #545f66;
    padding: 5em 0;
}

.plans_container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    width: 100%;
}

.plans_item {
    background-color: #fff;
    padding: 1.5em;
    width: 295px;
    text-align: center;
    margin: 0 20px;
}

.plans_item>span {
    display: block;
}

.plan_type {
    font-weight: bold;
    text-transform: uppercase;
}

.plan_price {
    background: #6482c1;
    background: linear-gradient(to bottom, #4ec4d3 0%, #6482c1 100%);
    background: -moz-linear-gradient(to bottom, #4ec4d3 0%, #6482c1 100%);
    background: -webkit-linear-gradient(to bottom, #4ec4d3 0%, #6482c1 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4ec4d3', endColorstr='#6482c1', GradientType=0);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 5em;
    position: relative;
    letter-spacing: -6px;
    margin: 1.125rem 0;
}

.plan_price small {
    font-size: 1rem;
    position: relative;
    bottom: 0;
    display: block;
    letter-spacing: normal;
}

.plan_title {
    line-height: 1.5;
    margin-bottom: 1.125em;
}

.plan_features {
    line-height: 1.5;
    padding: 0 20px;
    margin-bottom: 2.25em;
}

.plans_item .btn {
    width: 190px;
}



/* --- /Plans --- */


/* --- Promo --- */

.promo {
    background-color: #4ec4d3;
    padding: 3em 0;
}

.promo_text {
    text-align: center;
    color: #fff;
    width: 100%;
    font-size: 2em;
}



/* --- /Promo --- */


/* --- Footer --- */

.footer_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer_nav {
    margin-left: auto;
}

.footer_nav ul {
    font-size: 0;
    margin-right: 32px;
    padding-right: 20px;
    border-right: 1px solid #545f66;
}

.footer_nav ul li {
    display: inline-block;
    font-size: 16px;
    margin: 0 10px;
}

.footer_nav ul li a:hover {
    color: #4ec4d3;
    text-decoration: underline;
}



/* --- /Footer --- */


/* --- Nav Mobile --- */

.nav_btn-mobile {
    width: 24px;
    height: 4px;
    background: #6482c1;
    position: relative;
    display: none;
}

.nav_btn-mobile:after,
.nav_btn-mobile:before {
    content: '';
    position: absolute;
    width: 24px;
    height: 4px;
    background: #6482c1;
}

.nav_btn-mobile:before {
    bottom: 8px;
}

.nav_btn-mobile:after {
    bottom: -8px;
}

.nav {
    position: relative;
}

.nav_mobile {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background-color: #fff;
    z-index: 10;
    box-shadow: 0 3px 8px rgba(100, 130, 195, 0.16);
    border: 1px solid rgba(100, 130, 195, 1);
    border-radius: .25em;
}

.nav_mobile li {
    padding: 1.125em 2.5em;
    text-align: right;
    border-bottom: 1px solid rgba(100, 130, 195, .16);
}



/* --- /Nav Mobile --- */


/* --- Maintenance --- */

.maintenance-page {
    position: relative;
    background: url('images/hero-image.jpg') 100% center no-repeat;
    width: 100%;
    height: 100vh;
    position: relative;
}

.maintenance-page .g_container {
    justify-content: center;
    flex-flow: row wrap;
}

.maintenance-page .brand,
.maintenance-page .caption {
    width: 100%;
}

.maintenance-page .brand {
    margin-bottom: auto;
}

.maintenance-page .caption {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: row nowrap;
    position: relative;
    margin-top: 9em;
}

.maintenance-page .caption h1 {
    font-size: 5em;
    color: #fff;
    margin-bottom: 1.125rem;
    font-weight: lighter;
}

.maintenance-page .caption span {
    color: #fff;
    font-size: 24px;
    line-height: 1.5;
}

.maintenance-page .caption_content {
    width: 715px;
    margin-right: 20px;
}

.maintenance-page .caption_image {
    width: 400px;
}



/* --- /Maintenance --- */


/* --- Product-Page --- */

.section_about .g_section-title {
    margin-bottom: .5em;
}

.section_about .btn {
    margin-top: 1.125em;
}

.g_grid-3 .g_col h4 {
    margin-bottom: 1.125em;
}

.col_list {
    padding-right: 6em;
}

.images {
    position: relative;
    margin-bottom: 3.5em;
}

.images .item {
    max-width: 90%;
    width: 100%;
    overflow: hidden;
    border-radius: 6px;
}

.images .item_1 {
    position: relative;
    left: 0;
    top: 0;
    z-index: 10;
}

.images .item_2 {
    position: absolute;
    right: 0;
    top: 3.5em;
    opacity: .5;
    z-index: 9;
}



/* --- /Product-Page --- */


/* --- Pricing-Page --- */

.section_pricing .g_grid-3 .g_col {
    margin-right: 3.5em;
}

.section_pricing .g_grid-3 .g_col:nth-child(3) {
    margin: auto;
}

.pricing_item h4 {
    font-size: 1.25em;
}

.pricing_item>div {
    padding: 1.125em 0;
    display: block;
}

.pricing_item>div:after {
    display: table;
    content: '';
    clear: both;
}

.pricing_item .price {
    float: left;
    font-weight: bold;
}

.pricing_item .price sup {
    vertical-align: 2.15em;
}

.pricing_item .price span {
    font-size: 3.5em;
    line-height: 1em;
}

.pricing_item .get-started {
    float: right;
}

.pricing_item>span {
    border-bottom: 1px solid rgba(84, 95, 102, 0.15);
    line-height: 1.5;
    display: block;
    padding: 1.125em 0;
}

.pricing_item ul li {
    padding: 1.125em 0 1.125em 30px;
    position: relative;
    line-height: 1.5;
    border-bottom: 1px solid rgba(84, 95, 102, 0.15);
}

.pricing_item ul li:before {
    background: url('./images/check-icon.png') 100% center no-repeat;
    background-size: 16px 12px;
    content: '';
    width: 16px;
    height: 12px;
    position: absolute;
    left: 0;
    top: 23px;
}

.is-hidden {
    display: none;
}



/* --- /Pricing-Page --- */


/* --- Features-Page --- */

.section_devices .video {
    position: relative;
    width: 820px;
}



/* --- /Features-Page --- */


/* --- FAQ --- */

.faq>h3 {
    font-size: 1.5em;
    padding-bottom: 1.125em;
}

.faq-question {
    padding: 1.125em;
    border-top: 1px solid rgba(84, 95, 102, 0.15);
    position: relative;
    font-weight: lighter;
    cursor: pointer;
    font-size: 1.125em;
}

.faq-question:last-of-type {
    border-bottom: 1px solid rgba(84, 95, 102, 0.15);
}

.faq-question.ui-state-active {
    font-weight: bold;
    border-top: 1px solid rgba(100, 130, 195, 1);
    background-color: #fff;
}

.faq-answer.ui-accordion-content-active {
    border-bottom: 1px solid rgba(100, 130, 195, 1);
}

.ui-icon {
    background-size: contain;
    width: 16px;
    height: 16px;
    position: absolute;
    right: 1.125em;
    display: block;
    top: 50%;
    transform: translateY(-50%);
}

.ui-icon.active {
    background: url('./images/minus.png') center no-repeat;
}

.ui-icon.default {
    background: url('./images/plus.png') center no-repeat;
}

.faq-answer {
    padding: 0 1.125em 1.125em 1.125em;
    background-color: #fff;
}



/* --- /FAQ --- */


/* --- Toggle Switcher --- */

.section_pricing .g_col:nth-child(1) .pricing_switcher {
    display: none;
}

.pricing_switcher {
    font-size: 0;
    position: relative;
    width: 120px;
    float: right;
}

.toggle,
.toggler {
    display: inline-block;
    vertical-align: middle;
    font-size: 12px;
}

.toggler {
    margin: 0;
    position: absolute;
    color: #fff;
    transition: .2s;
    z-index: 2;
    font-weight: bold;
    line-height: 24px;
}

.toggler--is-active {
    color: rgba(100, 130, 195, 1);
}

.toggler.filt-monthly {
    left: 6px;
}

.toggler.filt-yearly {
    right: 5px;
}

.b {
    display: block;
}

.toggle {
    position: relative;
    width: 120px;
    height: 24px;
    border-radius: 4px;
    background-color: rgba(100, 130, 195, 1);
    overflow: hidden;
}

.check {
    position: absolute;
    display: block;
    cursor: pointer;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 6;
}

.check:checked~.switch {
    right: 2px;
    left: 50%;
    border-radius: 0 4px 4px 0;
    transition: 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition-property: left, right;
    transition-delay: .08s, 0s;
}

.switch {
    position: absolute;
    left: 2px;
    top: 2px;
    bottom: 2px;
    right: 50%;
    background-color: #fff;
    border-radius: 4px 0 0 4px;
    z-index: 1;
    transition: 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition-property: left, right;
    transition-delay: 0s, .08s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}



/* --- /Toggle Switcher --- */


/* --- Forms --- */

.g_form {
    max-width: 610px;
    width: 100%;
    margin: 3.5em auto;
}

.g_form-section--title {
    text-align: left;
    margin-top: 20px;
    margin-bottom: 20px;
}



fieldset {
    margin: 0;
    border: 0;
    padding: 0;
    display: inline-block;
    width: 100%;
}

input,
label,
select,
button,
textarea {
    margin: 0;
    border: 0;
    padding: 0;
    display: inline-block;
    vertical-align: middle;
    white-space: normal;
    background: none;
    line-height: 1;
    width: 100%;
    font-size: 16px;
}

input,
button {
    border-radius: 4px;
}

input,
select,
textarea {
    background-color: #fff;
    margin-bottom: 20px;
}

label {
    margin-bottom: 20px;
}

input:focus {
    box-shadow: 0 0 1px 1px #4ec4d3;
}

input.error {
    box-shadow: 0 0 1px 1px #de5252;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="submit"] {
    height: 48px;
    padding: 0 18px;
}

input[type="submit"] {
    background-color: rgba(100, 130, 195, 1);
    color: #fff;
    font-size: 16px;
    max-width: 400px;
    margin: 0 auto;
}

label input {
    display: inline-block;
    width: auto;
    margin-bottom: auto;
    vertical-align: 2px;
}

span.tips {
    font-size: 14px;
    display: block;
    text-align: left;
    margin-top: -18px;
    margin-bottom: 20px;
}

.select2-container {
    width: 100%;
    text-align: left;
    color: #545f66;
    margin-bottom: 20px;
}

.select2-container .select2-selection--single {
    height: 48px;
    border-radius: 4px;
    border: 1px solid #c0d0cd;
    line-height: 48px;
    position: relative;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 0 1.125em;
    line-height: 48px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: rgba(100, 130, 195, 1) transparent transparent transparent;
    right: 1em;
    border-width: 6px 5px 0 5px;
    left: auto;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent rgba(100, 130, 195, 1) transparent;
    border-width: 0 5px 6px 5px;
}


.select2-dropdown {
    margin-top: 4px;
    border-radius: 0;
    border: none;
}

.select2-results__option {
    padding: 0 1em;
    line-height: 18px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #4ec4d3;
}

.select2-results {
    box-shadow: 0 0 1px 1px #4ec4d3;
}

.select2-results__group {
    padding: 0 1.125em !important;
    background-color: #e5eaed;
}

.g_form-2col {
    display: flex;
    justify-content: flex-start;
}

.g_form-2col .select2-container,
.g_form-2col input {
    flex: 1 295px;
    margin-right: 20px;
}

.g_form-2col .select2-container:nth-child(3),
.g_form-2col input:nth-child(2),
.g_form-2col input:nth-child(3) {
    margin-right: 0;
}


/* --- /Forms --- */


/* --- Login --- */

.login {
    padding: 5em 0;
    min-height: calc(100vh - 200px);
}

.login h1 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
}

.login .g_form {
    max-width: 400px;
}

.login .login_container {
    margin: auto;
}

.login .links {
    text-align: center;
}

.login .links>a,
.login .links span {
    display: block;
    line-height: 1.5;
    margin-bottom: 20px;
}

.login .links span a {
    text-decoration: underline;
}

.login .g_form-section {
    position: relative;
}

.login .g_form-section label {
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    -webkit-background-size: 13px 15px;
    background-size: 13px 15px;
}

.login .g_form-fieldset input[type="email"]+label {
    background: url('./images/user-login.png') center no-repeat;
}

.login .g_form-fieldset input[type="password"]+label {
    background: url('./images/password-login.png') center no-repeat;
}

.login input[type="email"],
.login input[type="password"] {
    padding-left: 48px;
}


/* --- /Login --- */


/* --- Register --- */

.register {
    padding: 5em 0;
    min-height: calc(100vh - 200px);
}

.register h1 {
    font-size: 36px;
    margin-bottom: 16px;
}

.register_container {
    margin: 0 auto;
    text-align: center;
}


.register_container>span a {
    text-decoration: underline;
}

.register input[type="submit"] {
    margin-top: 3.5em;
}


/* --- /Register --- */


/* -------------- APP -------------- */


/* --- App-Header --- */

.header_app {
    background-color: #fff;
    box-shadow: 0 3px 8px rgba(100, 130, 195, 0.16);
}

.header_app .header_container {
    padding: 0;
}

.header_app .brand {
    max-width: 86px;
    padding: 20px 0;
}

.header_app .navbar {
    font-size: 0;
}

.header_app .navbar li {
    font-size: 16px;
    display: inline-block;
    border-right: 1px solid rgba(100, 130, 195, .5);
}

.header_app .navbar li:first-child {
    border-left: 1px solid rgba(100, 130, 195, .5);
}

.header_app .navbar li a {
    padding: 1.25em 2.25em;
    line-height: 3em;
}

.header_app .navbar li img {
    display: inline-block;
    vertical-align: middle;
}

.header_app .navbar li a:hover {
    background-color: #f5f5f5;
}

.app_links {
    background-color: rgba(100, 130, 195, 1);
    color: #fff;
}

.app_nav .navbar {
    font-size: 0;
}

.app_nav .navbar li {
    display: inline-block;
    font-size: 16px;
    padding: 0 1.125em;
    position: relative;
}

.app_nav .navbar li.active:after {
    border-color: transparent transparent #f6f7f7;
    border-width: 10px 10px 8px;
    border-style: solid;
    content: '';
    bottom: -20px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.app_nav .navbar li.active a,
.app_nav .navbar li:hover a {
    font-weight: bold;
}


/* --- /App-Header --- */


/* --- App-Container --- */

.g_grid {
    width: 100%;
    display: flex;
}

.g_grid .g_row {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.g_grid .g_row .g_col {
    margin-right: 20px;
}

.g_grid .g_row .g_col:nth-child(1) {
    flex: 1 800px;
}

.g_grid .g_row .g_col:nth-child(2) {
    margin: 0 auto;
    flex: 1 400px;
}

.app_container {
    min-height: calc(100vh - 236px);
}

.pagination {
    display: inline-block;
}

.pagination a {
    color: #545f66;
    border-radius: 4px;
    float: left;
    padding: 8px 16px;
}

.pagination a.active {
    background-color: #6482c1;
    color: white;
    font-weight: bold;
}

.pagination a:hover:not(.active) {
    color: #4ec4d3;
}


.block {
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(84,95, 102, .08);
    margin: 20px 0;
}

.block_header {
    padding: 1.125em 1.5em;
    background-color: #f9fafb;
    border-bottom: 1px solid rgba(84,95, 102, .15);
}

.block_header span {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
}

.block_content,
.block_footer {
    padding: 1.5em;
}

.block_footer {
   text-align: center;
}

.block_footer > a {
    color: #4ec4d3;
    text-transform: uppercase;
}

.ui-tabs .ui-tabs-nav {
    font-size: 0;
    text-align: center;
}

.ui-tabs .ui-tabs-tab {
    display: inline-block;
    font-size: 14px;
    padding: .75em 1.5em;
    border-radius: 4px;
}

.ui-tabs .ui-tabs-tab a {
    font-weight: bold;
    text-transform: uppercase;
}

.ui-tabs .ui-tabs-tab:hover:not(.ui-tabs-active) {
    color: #4ec4d3;
}

.ui-tabs .ui-tabs-active {
    background-color: #6482c1 !important;
    color: #fff !important;
}

.ui-tabs-panel {
    padding: 1.125em 0;
}

.table {
    display: flex;
    width: 100%;
}

.table_h {
    background-color: #e8ecf6;
    font-weight: bold;
}

.table_r {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    border: 1px solid #e8ecf6;
}

.table_c {
    flex: 1;
    margin-right: 15px;
    padding: .75em 0.725em;
    line-height: 1.5;
}

.table_c.name {
    flex: 130px;
}

.table_c.name a:hover {
    text-decoration: underline;
    color: #4ec4d3;
}

.table_c.links a {
    margin-right: 3px;
}
.table_c.links a:last-child {
    margin-right: 0;
}
.activity {
    padding: 1.125em 0;
    border-bottom: 1px dotted rgba(84,95, 102, .15);
}

.activity a {
    max-width: 400px;
    width: 100%;
    //white-space: nowrap;
    //overflow: hidden;
    //text-overflow: ellipsis;
}

.activity a:hover {
    color: #4ec4d3;
    text-decoration: underline;
}

.activity .time-posted {
    opacity: .5;
}



/* --- /App-Container --- */


/* -------------- /APP -------------- */


/* --- Responsive --- */

@media screen and (max-width:1240px) {
    .section_devices .g_col {
        overflow-x: hidden;
    }
}

@media screen and (max-width:960px) {
    .nav_main li,
    .nav_login li {
        margin-right: 1.5em;
    }
    .nav_divider {
        margin: 0 1.5em;
    }
    .hero_caption .hero_headline {
        font-size: 2.5rem;
    }
    .hero_caption>h1,
    .hero_caption>span {
        margin-bottom: 1rem;
    }
    .hero_caption .hero_text {
        font-size: 1rem;
    }
    .hero_caption {
        width: 400px;
    }
    .partners_item {
        width: 190px;
        margin: 0 20px;
    }
    .about_image {
        bottom: -150px;
    }
    .g_row {
        justify-content: center;
        flex-flow: row wrap-reverse;
    }
    .g_col {
        width: 100%;
    }
    .about_image {
        position: relative;
        bottom: 0;
        display: none;
    }
    .about .g_section-title {
        text-align: center;
    }
    .about .g_section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .plans_item {
        margin: 0 5px;
        width: auto;
    }
}

@media screen and (max-width:768px) {
    .header_logo {
        width: 96px;
    }
    .hero {
        height: calc(100vh - 94px);
    }
    .nav_btn-mobile {
        display: block;
    }
    .nav_main,
    .nav_divider {
        display: none;
    }
    .nav_login li:nth-child(2) {
        display: none;
    }
    .hero_container .g_container {
        justify-content: center;
    }
    .hero_caption {
        text-align: center;
    }
    .hero_caption .hero_headline {
        font-size: 2rem;
    }
    .btn {
        padding: 10px;
    }
    .hero_caption .btn {
        width: 120px;
    }
    .partners_list {
        padding: 0;
    }
    .features_item {
        width: 50%;
    }
    .plans_container {
        flex-flow: row wrap;
    }
    .plans_item {
        margin-bottom: 1.125em;
    }
    .footer_container {
        justify-content: center;
        flex-flow: row wrap;
    }
    .footer_container .brand {
        margin-bottom: 1.125em;
        width: 100%;
    }
    .footer_container .brand img {
        margin: 0 auto;
    }
    .brand_logo img {
        margin: 0 auto;
    }
    .maintenance-page .caption {
        flex-flow: row wrap;
    }
    .maintenance-page .caption_content {
        text-align: center;
    }
    .maintenance-page .caption h1 {
        font-size: 3rem;
    }
    .maintenance-page .caption span {
        font-size: 1.25rem;
    }
    .maintenance-page .caption_image {
        margin: 3em auto 0;
        max-width: 320px;
    }
}

@media screen and (max-width:480px) {
    .hero_caption .hero_headline {
        font-size: 1.5rem;
    }
    .features_item {
        width: 100%;
    }
    .footer_container {
        justify-content: center;
    }
    .maintenance-page .caption h1 {
        font-size: 2rem;
    }
}



/* --- /Responsive --- */

.forgot-password-pop-up {
    top: 50%;
    left: 50%;
    position: fixed;
    width:400px;
    margin-left:-200px;
    display:none;
    background:#FFF;
    color: #000;
    padding:30px;
    z-index:999;
    border-radius:5px; 
    box-shadow:10px 10px 5px #545f66;
}

.forgot-password-pop-up .btn-close {
    float:right;
    clear:both;
    margin-top:-20px;
}
.forgot-password-pop-up input{
   border-radius:5px; 
   border:2px solid rgba(100, 130, 195, 1);
   margin-top:15px;
}
.forgot-password-pop-up input:focus {
    box-shadow: none;
}

.mask {
    background: rgba(210,210,210, 0.3);
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    display:none;
}

/* Added  */

.content-left {
    width: 30%;
    float: left;
    border-right: 10px solid #f6f7f7;
}

.content-right {
    width: 70%;
    float: left;
    border-left: 10px solid #f6f7f7;
}

.form_fullW {
    max-width: none;
    position:relative;
    left:0;
}

.g_form-section:after,
.content-left:after,
.content-right:after {
    clear: both;
    content: '';
    display: table;
}

.tabs_fixed {
    clear: both;
    margin-top: 20px;
    width: 100%;
}

.form_fullW .btn-submit {

}

.content-right .g_form-fieldset {
    float: left;
    width: 50%;
    border-right: 10px solid #f6f7f7;
}

.content-right .g_form-fieldset:nth-child(3n-1) {
    border-left: 10px solid #f6f7f7;
    border-right: 0;
}

.content-right .g_form-fieldset:nth-child(3n),
.content-right .g_form-fieldset:nth-child(3n+1) {
    clear: both;
}

.content-right .g_form-fieldset:nth-child(3n) {
    width: 100%;
    border-right: 0;
}

.ui-tabs-vertical .ui-tabs-nav {
    padding: 0;
    float: left;
    width: 31%;
    border: 0 ;
    border-right: 20px solid #f6f7f7;
    background-color: #fff;
}

.ui-tabs-vertical .ui-tabs-nav li {
    clear: left;
    width: 100%;
    border-bottom-width: 1px !important;
    border-right-width: 0 !important;
    margin: 0 -1px .2em 0;
    white-space: normal !important;
}

.ui-tabs-vertical .ui-tabs-nav li a {
    display: block;
}

.ui-tabs-vertical .ui-tabs-nav .ui-tabs-anchor {
    text-align: left;
    float: none !important;
}

.ui-tabs-vertical .ui-tabs-nav li.ui-tabs-active {
    padding-bottom: 0;
    padding-right: .1em;
    border-right-width: 1px;
}

.ui-tabs-vertical .ui-tabs-panel {
    padding: 1em;
    float: right;
    width: 69%;
}


.ui-tabs-vertical .ui-state-active,
.ui-tabs-vertical .ui-widget-content .ui-state-active,
.ui-tabs-vertical .ui-widget-header .ui-state-active,
.ui-tabs-vertical a.ui-button:active,
.ui-tabs-vertical .ui-button:active,
.ui-tabs-vertical .ui-button.ui-state-active:hover {
    border: none !important;
    background-color: rgba(100, 130, 195, 1) !important;
    border-radius: 0;
}


.ui-tabs-vertical .ui-state-default,
.ui-tabs-vertical .ui-state-default,
.ui-tabs-vertical .ui-widget-header .ui-state-default,
.ui-tabs-vertical .ui-button,
.ui-tabs-vertical html .ui-button.ui-state-disabled:hover,
.ui-tabs-vertical html .ui-button.ui-state-disabled:active {
    border: none;
    border-radius: 0;   
    background-color: #fff;
    padding: 0;
}

.ui-tabs-vertical {
    border: 0 !important;
    border-radius: 0 !important;
    padding: 0 !important;
}



.ui-tabs-vertical .ui-tabs-nav .ui-tabs-anchor {
    padding: 12px 14px !important;
}
.form_buttons {
    width: 69%;
    float: right;
    margin-top: 20px;
}

.form_buttons a.btn,
.form_buttons input {
    width: calc(100%/3 - 7px);
    text-align: center;
    float: left;
    margin-right: 10px;
}

.form_buttons .btn-preview {
    background-color: mediumseagreen;
    color: #fff;
    font-size: 16px;
}
.form_buttons .btn-submit-checkout {
    background-color: mediumseagreen;
    color: #fff;
    font-size: 16px;
    width:320px;
}
.form_buttons .btn-back {
    background-color: #ed1313;
    color: #fff;
    font-size: 16px;
    width:320px;
}
.form_buttons .btn-lodged,
.form_buttons .btn-prelodged {
    background-color: #4ec4d3;
}


.form_buttons .btn-submit {
    margin-right: 0;
}

.ui-tabs-vertical select {
    width: 90%;
    float: left;
}

.btn-add {
    background-color: lightslategrey;
    width: 36px;
    height: 36px;
    border-radius: 3px;
    position: relative;
    float: right;
}
.btn-info {
    background-color: lightslategrey;
    width: 36px;
    height: 36px;
    border-radius: 3px;
    position: relative;
    float: right;
}
.btn-remove {
    background-color: lightslategrey;
    width: 36px;
    height: 36px;
    border-radius: 3px;
    position: relative;
    float: right;
}
.btn-add:after {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: bold;
    font-size: 20px;
}
.btn-info:after {
    content: 'i';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: bold;
    font-size: 20px;
}
.btn-remove:after {
    content: '-';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: bold;
    font-size: 20px;
}
.ui-tabs-panel fieldset {
    height:38px;
}
    .ui-tabs-panel fieldset .taxonomy_values {
        margin:10px 0px;
    }
    .ui-tabs-panel fieldset input {
        width:40%;
        border: 1px solid #aaa;
        border-radius:4px;
    }
    .ui-tabs-panel fieldset textarea {
        width:100%;
        border: 1px solid #aaa;
        border-radius:4px;
    }

.ui-tabs-panel fieldset input {
    height: 40px;
    padding: 0 18px;
    margin-bottom: auto;
}

.ui-tabs-vertical fieldset {
    height: auto;
    margin-bottom: 10px;
}

#ui-datepicker-div .ui-widget-header a {
}

#ui-datepicker-div .ui-widget-header {
    background: transparent;
    border-radius: 0;
    border: none;
}

#ui-datepicker-div .ui-widget-header .ui-datepicker-title {
    color: #545f66;
    text-transform: uppercase;
    font-size: 13px;
}

#ui-datepicker-div {
    background-color: #e5eaed;
}

#ui-datepicker-div table {
    background-color: #fff;
}

#ui-datepicker-div table th {
    font-size: 10px;
    text-transform: uppercase;
    color: #545f66;
}

#ui-datepicker-div table td {
	padding: 0;
	border: 1px solid #e5eaed;
    width: 14%;
    font-size: 12px;
    font-weight: bold;
}


#ui-datepicker-div table thead {
	border: 1px solid #e5eaed;
}

#ui-datepicker-div .ui-state-default,
#ui-datepicker-div .ui-button {
    background-color: #fff;
    text-align: center;
    height: 30px;
    line-height: 30px;
    padding: 0;
    border: none;
}

#ui-datepicker-div .ui-state-highlight,
#ui-datepicker-div .ui-state-active {
    background-color: #4ec4d3 !important;
    border: 1px solid #4ec4d3 !important;
    color: #fff;
    font-weight: bold;
}

.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span {
	transform: translate(-50%, -50%);
	margin-top: auto;
	margin-left: auto;
	background-size: inherit;
	right: auto;
}

#ui-datepicker-div {
	border: 1px solid rgba(100, 130, 193, .35);
}

.ui-datepicker .ui-datepicker-prev span {
	background-position: -96px -1px;
}


.ui-datepicker .ui-datepicker-next span {
	background-position: -33px -1px;
}

.ui-datepicker .ui-datepicker-prev span {
    background: url('images/prev-arrow.png');
    background-repeat:no-repeat;
    background-position: center;
    -webkit-background-size: contain;
    background-size: contain;
}


.ui-datepicker .ui-datepicker-next span {
    background: url('images/next-arrow.png');
    background-repeat:no-repeat;
    background-position: center;
    -webkit-background-size: contain;
    background-size: contain;
}

.company_details.closed{
    max-height:150px;
    overflow:hidden;
}
.company_details.open {
    max-height:initial;
}
.company_details input {
    height:26px;
}
.slider-down {
    text-align: center;
    border-top: 1px solid #E1E1E1;
    margin-top: 20px;
    cursor:pointer;
}

.create-report-title {
    width:70%;
}

.create-report.right {
    right:0px;
    top:-130px;
    position:absolute;
}

.g_container .dates {
    float:left;
    clear:both;
    margin-left:20px;
}

    .g_container .dates input {
        width:180px;
        float:left;
        display:block;
        margin-right:15px;
        height:30px;
    }
    .g_container .dates #year {
        float:left;
        width:210px;
    }
.ui-tabs-vertical {
    background: #f6f7f7;
}

.ui-tabs-vertical .ui-tabs-panel {
	background: #ffffff;
}

.taxonomy_values {
    position:relative;
}
    .taxonomy_values .parsley-errors-list {
    position:absolute;
    }
    .taxonomy_values .parsley-errors-list:nth-of-type(2) {
      left:40%;
    }

.totals {
   width:320px;
   float:right;
   display:block;
   position:relative;
   margin-left:100px;
   margin-top:100px;
}
.subtotal span, .taxtotal span, .grandtotal span {
    display:inline;
    font-weight:bold;
    
}
.centered {
    text-align:center;
}
.faq {
    width:100%;
}
.ui-accordion .ui-accordion-header.faq-question {
 color: #000;
 width:100%;    
}
    .ui-accordion .ui-accordion-header.faq-question .ui-icon {
        position:absolute;
    }
.faq .ui-accordion, .faq .faq-answer {
    width:95.8%;
}

.faq .ui-state-hover .ui-icon, .ui-state-focus .ui-icon, .ui-button:hover .ui-icon, .ui-button:focus .ui-icon {
    background:url('./images/plus.png') center no-repeat !important;
}
.faq .ui-state-hover .ui-icon, .ui-state-focus .ui-icon.active {
    background-image:none !important;
}
.faq .ui-state-hover.ui-accordion-header-active .ui-icon,.faq .ui-state-hover.ui-state-active .ui-icon  {
    background-image:none !important;
}
.faq .ui-state-active, .faq .ui-state-default {
    border-bottom:none;
    border-left:none;
    border-right:none;

}
.faq .ui-state-default {
    border-top:none;
}
.faq .ui-state-active {
    border-top:1px solid rgba(100, 130, 195, 1);
}
.faq .ui-widget-content {
    border-left:none !important;
    border-right:none !important;
}
.section_pricing .g_grid-3,.section_pricing .g_row {
    width:100%;
}
.register_container .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height:48px;
}

.register_container .select2-container .select2-selection--single {
    height:48px;
}
.register_container .select2-container {
    height:48px !important;
}
.register_container .select2-container--default .select2-selection--single .select2-selection__arrow b {
    margin-top: 8px !important;
}
.app_dashboard .ui-tabs-nav {
    background: #FFF !important;
    border:medium none !important;
}
.app_dashboard .ui-tabs .ui-tabs-nav li {
    background:#FFF !important;
    border:medium none !important;
    display:inline-block;
    float:none;
}
.app_dashboard .ui-tabs .ui-tabs-nav li.ui-tabs-active {
    background: #6482c1 !important;
    color: #fff !important;
}
.app_dashboard .ui-widget.ui-widget-content {
    border: medium none !important;
}
.login .g_form-section input[type="email"] + label.l-email {
    background: url('./images/user-login.png') center no-repeat;
}

.login .g_form-section input[type="password"] + label.l-password {
    background: url('./images/password-login.png') center no-repeat;
}

.lodge-information {
    float: none;
    clear: both;
    width: 100%;
    height: 330px;
    text-align:justify;
}
.auditor-details input[type="radio"]{
    display: inline;
    margin-bottom: 0px;
    width: auto;
}
.auditor-details .radio label{
    display: inline;
    margin-bottom: 0px;
    width: auto;
}

.color-link {
    color: #6482c1;
}
.margin-big {
    margin:40px;
}

.inputborder {
    box-shadow: 0 0 1px 1px #4ec4d3
}
.btn-default.disabled {
    background-color:#6f6a6a;
}

.fright {
    margin-left: auto;
   
}
.terms-and-conditions_container {
   display: block;
   /* flex-wrap: wrap; */
   justify-content: flex-start;
   margin: 1.125em -20px 0 -20px;
   flex-direction: column;
}

.register_container input{width:94%}
}

.app_container .form_fullW .content-right {
    width:68% !important;
}
.app_container .form_fullW .content-right .g_form-fieldset {
    width: 44% !important;
}
.app_container .form_fullW .content-right .g_form-fieldset input {
    width: 90% !important;    
}

.app_container .form_fullW .content-right .g_form-fieldset:nth-child(3n) {
        width:95% !important;
}

.app_container .form_fullW .ui-tabs-vertical .ui-tabs-panel {
    width:64% !important;
}

.app_container .form_fullW .ui-tabs-vertical .ui-tabs-nav {
border-right-width: 0px !important;}

.app_container .form_fullW .form_buttons a.btn, .form_buttons input {
    width: calc(93%/3 - 7px);
}

.login .g_form-section{width:83% !important;}


.app_container .content-right {
 width:68% !important;}