/*NAV BAR*/
nav {
    padding-left: 20px;
    padding-right: 20px;
}
.naltio-bar-logo {
    height: 50px;
    margin: 7px;
}

/*STICKY FOOTER*/
body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}
main {
    flex: 1 0 auto;
    /*display: flex;*/
}
footer.page-footer {
    padding: 0;
    margin: 0;
}

/*LANDING PAGE*/
.landing-header {
    background: linear-gradient(rgba(0, 150, 136, 0.5), rgba(0, 150, 136, 0.5));
    /*background: url('/static/images/hexa.png') no-repeat center center;*/
    background-size: cover;
    padding: 50px 20px;
    color: white;
}
.landing-title {
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 15px;
}
.landing-subtitle {
    font-size: 20px;
    margin-top: 0px;
}
.landing-cta {
    margin: 24px;
}
.landing-topic i {
    margin: 40px 0px 0px;
    display: block;
}
.landing-topic h3 {
    font-size: 24px;
    font-weight: 300;
}
.landing-topic p {
    padding: 16px;
}


/*FORMS*/
.form-title h4{
    font-size: 26px;
}
.general-form {
    margin: 20px 0px;
}


[type="checkbox"].filled-in:checked + span:not(.lever):after {
    border: 2px solid #009688;
    background-color: #009688;
}

[type="radio"]:checked+span:after, [type="radio"].with-gap:checked+span:after {
    background-color:#009688;
}

[type="radio"]:checked+span:after, [type="radio"].with-gap:checked+span:before, [type="radio"].with-gap:checked+span:after {
    border: 2px solid #009688;
}

input:not(.browser-default):focus:not([readonly]) {
    border-bottom: 1px solid #009688 !important;
    box-shadow: 0 1px 0 0 #009688 !important;
}

input:not(.browser-default):focus:not([readonly]) + label {
    color: #009688 !important;
}