@import "fonts.css";

.screen {
    padding: 80px 0;
    text-align: center;
    background-color: #fff;
}

.screen.grey {
    background-color: #fbfcf9;
}

.screen h2 {
    margin: 0 0 40px;
}

.screen.green {
    background-color: #35a61c;
}

.screen.green h2 {
    font-size: 36px;
    color: #fff;
    font-weight: 700;
    margin: 0 0 70px;
}

.screen.green .button {
    border: 2px solid #fff;
}

.screen h2 + p, .screen h2 + p + p {
    font-size: 24px;
    color: #808080;
    margin: 0 0 20px;
    font-weight: 400;
}

.screen h3.vertical-margin {
    margin: 80px 0 40px;
    font-size: 30px;
}

.row {
    margin-left: 0;
    margin-right: -20px;
}

.row > * {
    padding-left: 0;
    padding-right: 20px;
}

.row.gutters {
    margin-left: 0;
    margin-right: -80px;
}

.row.gutters > * {
    padding-left: 0;
    padding-right: 80px;
}

.col-lg-20 {
    width: 20%;
    float: left;
}

.box {
    background: #fff;
    padding: 30px;
}

.box h4 {
    font-size: 18px;
    font-weight: 400;
    color: #000;
}

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

@media screen and (max-width: 992px) {
    .col-lg-20 {
        width: 33.333%;
    }

    .col-lg-20:nth-child(4) {
        width: 50%;
    }

    .col-lg-20:nth-child(5) {
        width: 50%;
    }
}

@media screen and (max-width: 767px) {
    .screen h2 {
        margin: 0 0 20px;
    }

    .screen h3.vertical-margin {
        margin: 20px 0 40px;
    }

    .screen {
        padding: 40px 0;
    }

    .col-lg-20 {
        width: 100% !important;
    }
}


/* Elements */

h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
}

h2.large {
    font-size: 48px;
}

a {
    text-decoration: none;
    color: #37a51c;
}

a:hover {
    color: #3C9C24;
    text-decoration: none;
}

a:active,
a:focus {
    color: #408E2C;
    text-decoration: none;
}


.button {
    background-color: #37a51c;
    text-decoration: none;
    display: inline-block;
    color: #fff;
    /*line-height: 60px;*/
    padding: 10px 15px;
    border-radius: 6px;
}

.button:hover {
    color: #fff;
    background-color: #3C9C24;
    text-decoration: none;
}

.button:active,
.button:focus {
    color: #fff;
    background-color: #408E2C;
    text-decoration: none;
}

.button.large {
    font-size: 20px;
    padding: 15px 70px;
}

/* Form */

form .button {
    line-height: 100%;
    padding: 17px 50px;
    border: none;
    outline: none;
}

form input,
.form-group input.form-control {
    box-shadow: none;
    border: 1px solid #e5e5e5;
    padding: 0 12px;
    height: 50px;
    font-size: 16px;
}

.form-inline > * {
    margin-right: 15px;
    padding: 10px 0;
}

.form-inline > *:last-child {
    margin-right: 0;
}

@media screen and (max-width: 767px) {
    .form-inline > * {
        margin: 0;
    }

    .button.large {
        padding: 20px 30px;
        text-align: center;
        display: block;
    }

    h2.large {
        font-size: 36px;
    }

    .screen h2 + p, .screen h2 + p + p {
        font-size: 18px;
    }

    .screen.green h2 {
        margin: 0 0 30px;
    }

    form .button {
        display: block;
        width: 100%;
    }

    .h4, h4 {
        margin: 20px 0 40px;
    }
}

/* Banner */

.bg-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: -2;
}

.bg-fixed.bgwidth img {
    width: 100%;
}

.bg-fixed.bgheight img {
    height: 100%;
}

.bg-fixed img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    min-width: 100%;
    min-height: 100%;
    opacity: 1;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    -ms-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.is-loading > .bg-fixed img {
    opacity: 0;
    -webkit-transition: opacity 0s;
    -moz-transition: opacity 0s;
    -ms-transition: opacity 0s;
    -o-transition: opacity 0s;
    transition: opacity 0s;
}

.banner {
    padding: 80px 0;
    text-align: center;
}

.banner h2,
#banner h1 {
    color: #fff;
    margin: 0 0 25px;
    font-size: 48px;
    font-weight: 700;
}

#banner {
    text-align: left;
    padding-bottom: 0;
    padding-top: 50px;
}

#banner h1 + h2 {
    color: #fff;
    opacity: 0.5;
    font-size: 24px;
    margin: 0 0 40px;
    font-weight: 300;
}

#banner .video {
    text-align: center;
    /*width: 400px;*/
}

#banner .video > img {
    width: 100%;
}

#banner .video .iframe {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    /*padding-top: 25px;*/
    height: 0;
}

#banner .video .iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#banner .video .iframe iframe {
    /*width: 100%;*/
    /*height: 265px;*/
}

#banner .darkened {
    margin: 50px 0 0;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.5);
}

#banner .darkened a:hover {
    text-decoration: underline;
    color: #fff;
}

#banner .darkened .icon {
    color: #37A51C;
    font-size: 30px;
    width: 60px;
    height: 60px;
    line-height: 70px;
    text-align: center;
    float: left;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    margin: 0 20px 0 0;
}

.darkened .icon + p {
    color: #fff;
    opacity: 0.5;
    font-size: 18px;
    padding: 0 20px 0 0;
    margin: 5px 0 0 80px;
}

@media screen and (max-width: 1400px) {
    #banner {
        padding-top: 40px;
    }

    #banner h1,
    #banner h1 + h2 {
        margin: 0 0 30px;
    }

    /*#banner .video .iframe iframe {*/
    /*width: 100%;*/
    /*height: 230px;*/
    /*}*/
    #banner .darkened {
        margin: 40px 0 0;
    }

    .darkened .icon + p {
        line-height: 1em;
    }
}

@media screen and (max-width: 1100px) {
    #banner h1 {
        font-size: 40px;
    }

    #banner h1,
    #banner h1 + h2 {
        margin: 0 0 20px;
    }
}

@media screen and (max-width: 992px) {
    #banner h1 {
        font-size: 36px;
    }

    #banner h1 + h2 {
        font-size: 20px;
    }

    #banner .video {
        text-align: center;
        width: auto;
    }
}

@media screen and (max-width: 767px) {
    .banner {
        padding: 40px 0;
    }

    #banner h1 + h2 {
        font-size: 18px;
        text-align: center;
        margin: 0 0 30px;
    }

    #banner h1 {
        margin: 0 0 30px;
        font-size: 32px;
        text-align: center;
    }

    #banner .darkened {
        margin: 30px 0 0;
    }

    #banner .darkened .icon {
        margin: 0 0 40px;
    }

    .darkened .icon + p {
        margin: 0 0 30px 80px;
    }
}

@media screen and (max-width: 400px) {
    .banner h2, #banner h1 {
        font-size: 31px;
    }
    #about .content h3 {
        font-size: 26px;
    }
}

/* About */

#about {
    text-align: left;
    padding-bottom: 0;
    padding-top: 40px;
}

#about h2 {
    margin: 0;
    text-align: center;
    font-size: 48px;
}

#about .image:before,
#about .image:after {
    content: '';
    display: table;
}

#about .image:after {
    clear: both;
}

#about .wrap {
    padding: 60px 0;
    letter-spacing: -5px;
    font-size: 0;
}

#about .wrap:nth-child(odd) {
    background-color: #fbfcf9;
}

.wrap:nth-child(even) {
    direction: rtl;
}
.wrap:nth-child(even) * {
    direction: ltr;
}

.wrap:nth-child(even) > .image > img {
    float: right;
    max-width: none;
}

.wrap:nth-child(odd) > .image {
    /*float: right;*/
}

.wrap:nth-child(odd) > .image > img {
    float: left;
    max-width: none;
}

.wrap:nth-child(odd) .half-container {
    margin: 0 0 0 auto;
}

#about .image {
    padding: 0 90px;
    width: 50%;
    display: inline-block;
    vertical-align: top;
    font-size: 100%;
    letter-spacing: normal;
}

#about .content {
    width: 50%;
    display: inline-block;
    vertical-align: top;
    font-size: 100%;
    letter-spacing: normal;
}

#about .half-container {
    max-width: 630px;
    padding: 0 90px;
    font-size: initial;
}

#about .half-container > *:last-child {
    margin: 0;
}

#about .content .half-container > i {
    color: #37A51C;
    font-size: 50px;
}

#about .content h3 {
    margin: 10px 0 30px;
    font-size: 30px;
    line-height: 1.25em;
    font-weight: 600;
}

#about .content p {
    color: #808080;
    font-size: 18px;
    line-height: 1.5em;
    margin: 0 0 30px;
}

.communitypresent {
    box-shadow: 1px 1px 5px 0 #ddd;
    border-radius: 5px;
    padding: 15px;
    position: relative;
    margin: 0 0 15px;
     color: #808080;
}

.communitypresent .autor {
    margin: 0 0 10px;
}

.communitypresent .autor img {
    float: left;
    margin: 0 15px 0 0;
    width: 60px;
    border-radius: 50%;
}

.communitypresent .autor .title {
    margin-right: 100px;
    font-weight: 600;
    font-size: 18px;
    color:#000;
}

.communitypresent .autor .name {
    color: #808080;
    font-size: 18px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.communitypresent .autor .name a {
    color: #808080;
}

.communitypresent .autor .name a:hover {
    color: #424242;
    border-bottom: dotted 1px;
}

.communitypresent .actions {
    position: absolute;
    top: 19px;
    right: 15px;
}

.communitypresent .actions ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
    font-size: 14px;
}

.communitypresent .actions ul li {
    display: inline-block;
    margin: 0 10px 0 0;
}


.communitypresent .actions i {
    vertical-align: middle;
}

@media screen and (max-width: 1280px) {
    #about .image,
    #about .half-container {
        padding: 0 40px;
    }
}

@media screen and (max-width: 767px) {
    #about .wrap {
        padding: 20px 0 40px;
    }

    #about .wrap .content {
        float: none;
        text-align: left;
        width: 100%;
    }

    #about .wrap .content .half-container {
        padding: 0 20px;
        margin: 0 0 20px;
    }

    #about .wrap .image {
        width: 100%;
        padding: 0 20px;
    }

    #about .wrap .image > img {
        float: none;
        width: 100%;
    }

    .communitypresent .actions {
        position: static;
    }
    .communitypresent .autor .title {
        margin-right: 0;
    }
}

@media screen and (max-width: 400px) {
    #about .content h3 {
        font-size: 26px;
    }
}

/* BG */

.bg {
    /*background-size: cover;*/
    /*background-position: center;*/
    /*background-attachment: fixed;*/
}

#banner2 {
    text-align: center;
}

#banner2 h2 {
    color: #fff;
    margin: 0 0 20px;
}

#banner2 h2 + p {
    font-size: 24px;
    color: #fff;
    margin: 0 0 40px;
    opacity: 0.5;
}

#banner2 .box .image {
    height: 160px;
}

#banner2 .box img {
    margin: 0 auto 20px;
    max-width: 100%;
    max-height: 160px;
    width: auto;
}

#banner2 .timer {
    margin: 50px 0;
}

#banner2 .timer h4 {
    font-size: 24px;
    color: #fff;
    margin: 0 0 30px;
}

#banner2 .timer .countdown {
    padding: 25px 0 0;
}

#banner2 .timer .countdown > div {
    display: inline-block;
    font-size: 48px;
    color: #fff;
    position: relative;
    margin: 0 40px 0 0;
}

#banner2 .timer .countdown > div:before {
    content: '';
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    opacity: 0.5;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: -25px;
}

#banner2 .timer .countdown > div.days:before {
    content: 'дни';
}

#banner2 .timer .countdown > div.hours:before {
    content: 'часы';
}

#banner2 .timer .countdown > div.minutes:before {
    content: 'минуты';
}

#banner2 .timer .countdown > div.seconds:before {
    content: 'секунды';
}

#banner2 .timer .countdown > div:after {
    content: ':';
    position: absolute;
    top: 0;
    line-height: 60px;
    right: -30px;
}

#banner2 .timer .countdown > div:last-child:after {
    display: none;
}

#banner2 .timer .countdown > div span {
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0 8px;
    margin: 0 4px;
    width: 50px;
    line-height: 60px;
    display: inline-block;
}

#banner2 .timer + p {
    color: #fff;
    font-size: 18px;
    margin: 0 0 40px;
}

@media screen and (max-width: 767px) {
    /*#slider0 .slide {*/
    /*width: 100%;*/
    /*}*/
    #slider0 .slide .box {
        width: 300px;
    }

    #banner2 .timer .countdown > div {
        margin: 0 4% 0 0;
        width: 21%;
    }

    #banner2 .timer .countdown > div:last-child {
        margin: 0;
    }

    #banner2 .timer .countdown > div:after {
        right: -16%;
    }

    #banner2 .timer .countdown > div span {
        padding: 0 3%;
        margin: 0 4%;
        width: 42%;
    }

    #banner2 + .screen {
        padding: 40px 0 0;
    }

}

@media screen and (max-width: 450px) {
    #slider0 {
        padding: 0 15px;
    }

    #slider0 .slide .box {
        width: 250px;
    }

    #banner2 .timer .countdown > div {
        width: 20%;
    }

    #banner2 .timer .countdown > div {
        font-size: 30px;
    }

    #banner2 .timer .countdown > div:before {
        font-size: 12px;
    }

    #banner2 .timer .countdown > div span {
        line-height: 40px;
    }
}


/* Video */

.videos .number {
    font-size: 30px;
    color: #37a51c;
    position: relative;
    font-weight: 700;
    line-height: 40px;
    margin: 20px 0 0;
}

.videos .number i {
    position: absolute;
    right: -20px;
    font-size: 20px;
    line-height: 40px;
    color: #ddd;
}

.videos h4 {
    margin: 15px 0 25px;
}

.videos h4 a {
    color: #333;
}

.videos h4 a:hover {
    text-decoration: underline;
}

.video {
    position: relative;
}

.video .play {
    width: 70px;
    height: 70px;
    position: absolute;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 50%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    line-height: 70px;
    font-size: 20px;
    color: #fff;
}

.video .duration {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 14px;
    padding: 3px 8px;
    border-radius: 6px;
}

.video img {
    width: 100%;
}

/* Graphs */

.graph {
    position: relative;
    font-size: 130px;
    width: 1em;
    height: 1em;
    margin: 0 auto 30px;
}

.graph > .text {
    position: absolute;
    top: 1.05em;
    left: 0;
    width: 3.33em;
    font-size: 0.3em;
    text-align: center;
    color: #fff;
}

.graph > .text > i {
    font-size: 1.2em;
    line-height: 1.2em;
}

.graph > .slice {
    position: absolute;
    width: 1em;
    height: 1em;
    clip: rect(0px, 1em, 1em, 0.5em);
}

.graph > .slice.full {
    clip: rect(auto, auto, auto, auto);
}

.graph > .slice > .line {
    border: 0.07em solid #37a51c;
    position: absolute;
    width: 1em;
    height: 1em;
    clip: rect(0em, 0.5em, 1em, 0em);
    -moz-border-radius: 0.5em;
    -webkit-border-radius: 0.5em;
    border-radius: 0.5em;
}

.graph > .slice > .line.fill {
    -moz-transform: rotate(180deg) !important;
    -webkit-transform: rotate(180deg) !important;
    -o-transform: rotate(180deg) !important;
    transform: rotate(180deg) !important;
}

.counts p {
    color: #ccc;
    font-size: 18px;
}

.counts .number {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
}

@media screen and (max-width: 992px) {
    .counts .number {
        margin: 0 0 40px;
    }
}

/* Slider */

.slider {
    position: relative;
    max-width: 840px;
    width: 100%;
    margin: 0 auto;
}

#slider0 {
    max-width: none;
}

#slider1 {
    margin: 120px auto 30px;
}

#slider1:before {
    content: '';
    display: block;
    height: 560px;
    width: 270px;
    background-image: url(../images/mask.png);
    background-size: contain;
    position: absolute;
    z-index: 0;
    left: 0;
    right: 0;
    margin: auto;
    top: -60px;
}

#slider1 .slide {
    display: inline-block;
}

#slider1 .slide img {
    height: 430px;
    /*max-width: 240px;*/
    width: auto;
}

.owl-carousel  .owl-wrapper,
.owl-carousel  .owl-item{
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility:    hidden;
    -ms-backface-visibility:     hidden;
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
}

#slider1 .owl-item {
    opacity: 0.35;
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
    -moz-transition: opacity 0.2s, -moz-transform 0.2s;
    -ms-transition: opacity 0.2s, -ms-transform 0.2s;
    -o-transition: opacity 0.2s, -o-transform 0.2s;
    transition: opacity 0.2s, transform 0.2s;
}

#slider1 .owl-item.active.center {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.slider .owl-controls .owl-nav .owl-prev {
    position: absolute;
    left: -100px;
    top: 50%;
    margin-top: -10px;
    color: #ddd;
    background: none;
    font-size: 20px;
}

.slider .owl-controls .owl-nav .owl-next {
    position: absolute;
    right: -100px;
    top: 50%;
    margin-top: -10px;
    color: #ddd;
    background: none;
    font-size: 20px;
}

.slider .owl-controls .owl-nav .owl-prev:hover,
.slider .owl-controls .owl-nav .owl-next:hover {
    color: #ccc;
    background: none;
}

.slide .quote {
    font-size: 45px;
    line-height: 1em;
    color: #d6d6d4;
    margin: 0 0 20px;
}

.slide .quote + p {
    font-size: 20px;
    font-style: italic;
    font-weight: 300;
    margin: 0 0 80px;
}

.slide .quote + p + .image {
    margin: 0 0 20px;
}

.slide .quote + p + .image img {
    width: auto;
    margin: 0 auto;
}

.slide .quote + p + .image + h4 {
    font-weight: 700;
}

/*@media screen and (max-width: 900px) {
    #slider1 .slide {
        max-width: 100%;
    }
    #slider1 .slide img {
        max-width: 100%;
        height: auto;
    }
}*/
@media screen and (max-width: 767px) {
    .paddingless {
        padding: 0;
    }

    #slider0 .slide {
        display: inline-block;
    }

    #slider1 {
        margin: 80px auto 30px;
    }

    /*#slider1 .slide img {
        height: 430px;
    }*/

    #slider1 .owl-stage {
        overflow: hidden;
        height: 450px;
    }

    #slider2 {
        padding: 0 30px;
    }

    .slider .owl-controls .owl-nav .owl-prev {
        left: -15px;
    }

    .slider .owl-controls .owl-nav .owl-next {
        right: -15px;
    }

    .slide .quote + p {
        margin: 0 0 30px;
    }
}

/* Modal */

#login {
    padding: 0 0 20px;
}

#login .login-content {
    width:320px;
    margin: 0 auto;
    border: none;
    border-radius: 0;
    font-size: 12px;
    text-align: center;
}

#login .login-header {
    padding: 15px 0;
    text-align: left;
}

#login .login-header a {
    /*font-size: 12px;*/
    color: #808080;
}

#login .login-body {
    padding: 0;
}

#login .login-container {
    padding: 0 40px 20px;
}

#login .tab-content,
#login .login-header {
    width: 250px;
    margin: 0 auto;
}

#login .login-body .nav-tabs {
    margin: 0 0 20px;
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
}

#login .login-body .nav-tabs > li {
    width: 50%;
}

#login .nav-tabs > li > a,
#login .nav-tabs > li > a:focus,
#login .nav-tabs > li > a:hover {
    border: none;
    border-radius: 0;
    text-align: center;
    margin: 0;
    /*font-size: 12px;*/
    color: #3AA500;
}

#login .nav-tabs > li.active > a,
#login .nav-tabs > li.active > a:focus,
#login .nav-tabs > li.active > a:hover {
    background: #3aa500;
    color: #fff;
}

#login p {
    margin: 0 0 15px;
}
#login a.social {
    display: block;
    position: relative;
    background: #ccc;
    width: 150px;
    margin: 0 auto 10px;
    border-radius: 4px;
    padding: 7px 10px 7px 30px;
    color: #fff;
}

#login a.social span {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    font-size: 19px;
    width: 30px;
    border-radius: 4px 0 0 4px;
    border-right: 1px solid #fff;
}

#login a.social.vk {
    background: #2b75aa;
}

#login a.social.vk:hover {
    background: #2b6b99;
}

#login a.social.vk:active {
    background: #2a628a;
}

#login a.social.facebook {
    background: #2358a5;
}

#login a.social.facebook:hover {
    background: #235296;
}

#login a.social.facebook:active {
    background: #224c8a;
}

#login a.social span:before {
    line-height: 1;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    margin-top: 6px;
}

#login a.social span.mt-facebook:before {
    top: auto;
    font-size: 22px;
}

#login .form-group {
    text-align: left;
}

#login .form-group label {
    font-weight: normal;
    margin: 0 0 10px;
    color: #808080;
}

#login form input,
#login .form-group input.form-control {
    height: 25px;
    font-size: 12px;
}

#login .checkbox {
    text-align: left;
}

#login input[type="checkbox"],
#login input[type="radio"] {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    display: block;
    float: left;
    margin-right: -20px;
    opacity: 0;
    width: 20px;
    height: 20px;
    z-index: -1;
}

#login input[type="checkbox"] + label {
    text-decoration: none;
    color: #808080;
    cursor: pointer;
    display: inline-block;
    font-size: 1em;
    font-weight: 300;
    padding-left: 20px;
    position: relative;
}

#login input[type="radio"] + label {
    text-decoration: none;
    color: #808080;
    cursor: pointer;
    display: inline-block;
    font-size: 1em;
    font-weight: 300;
    padding-left: 30px;
    position: relative;
    margin: 0;
}

#login input[type="checkbox"] + label:before,
#login input[type="radio"] + label:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: normal;
    text-transform: none !important;
}

#login input[type="checkbox"] + label:before {
    border-radius: 2px;
    border: solid 1px #c9c9c9;
    content: '';
    display: inline-block;
    height: 10px;
    left: 0;
    line-height: 5px;
    position: absolute;
    text-align: center;
    top: 3px;
    width: 10px;
}

#login input[type="radio"] + label:before {
    border-radius: 2px;
    border: solid 1px #c9c9c9;
    content: '';
    display: inline-block;
    height: 20px;
    left: 0;
    line-height: 5px;
    position: absolute;
    text-align: center;
    top: 0;
    width: 20px;
}

#login input[type="radio"] + label:after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3aa500;
    position: absolute;
    top: 5px;
    left: 5px;
    -webkit-transition: -webkit-transform 0.2s;
    -moz-transition: -moz-transform 0.2s;
    -ms-transition: -ms-transform 0.2s;
    -o-transition: -o-transform 0.2s;
    transition: transform 0.2s;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

#login input[type="checkbox"]:checked + label:before {
    border-color: #585858;
    color: #585858;
    content: "\e013";
}

#login input[type="radio"]:checked + label:before {
    border-color: #585858;
    color: #585858;
}

#login input[type="radio"]:checked + label:after {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

#login input[type="checkbox"] + label:before {
    border-radius: 2px;
}

#login input[type="radio"] + label:before {
    border-radius: 100%;
}

#login .button {
    display: block;
    padding: 9px 0;
    width: 100%;
    border-radius: 2px;
    height:28px;
}

#login *::-webkit-input-placeholder {
    color: #aeaeae;
}

#login *::-moz-placeholder {
    color: #aeaeae;
}

/* Firefox 19+ */
#login *:-moz-placeholder {
    color: #aeaeae;
}

/* Firefox 18- */
#login *:-ms-input-placeholder {
    color: #aeaeae;
}

/* AppModal */
.landingModal {
    text-align: center;
    padding: 20px;
}

.landingModal  .close {
    font-size: 44px;
    line-height: 22px;
    color: #33a200;
    opacity: 1;
    outline: none !important;
}

.landingModal .close:hover {
    color: #30800C;
}

.landingModal  .modal-header {
    padding: 30px 30px 0 30px;
    border-bottom: none;
}

.landingModal  .modal-body {
    padding: 0 15px 40px;
}

.landingModal  h3 {
    font-weight: 700;
    font-size: 42px;
    line-height: 42px;
    margin: 0 0 30px;
}

.landingModal h3 + p {
    margin: 0 0 30px;
    font-size: 28px;
    line-height: 28px;
    color: #808080;
}

.landingModal h3 + p + p {
    font-size: 24px;
    line-height: 24px;
    color: #808080;
}

.landingModal h3 + p + p a {
    margin: 0 20px;
}


@media screen and (max-width: 767px) {
    .landingModal  h3 + p + p a {
        display: block;
        margin: 15px 0;
    }
}