﻿/*==============================
normalize
==============================*/
select::-ms-expand {
    display: none;
}

/*==============================
placeholders
==============================*/
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #808080;
}
::-moz-placeholder { /* Firefox 19+ */
    color: #808080;
}
:-ms-input-placeholder { /* IE 10+ */
    color: #808080;
}
:-moz-placeholder { /* Firefox 18- */
    color: #808080;
}

/*==============================
container
==============================*/
.container {
    overflow-x: visible; 
}

/*==============================
columns
==============================*/
.columns__cell--100 {
    width: 100%;
}

.columns__cell--20 {
    width: 20%;
}

@media (min-width: 768px) {
    .columns__cell--left-padding-10 { padding-left: 10px; }

    .columns__cell--right-padding-10 { padding-right: 10px; }

    .columns__cell--left-padding-20 { padding-left: 20px; }

    .columns__cell--right-padding-20 { padding-right: 20px; }

    .columns__cell--left-padding-30 { padding-left: 30px; }

    .columns__cell--right-padding-30 { padding-right: 30px; }

    .columns__cell--left-padding-60 { padding-left: 60px; }

    .columns__cell--right-padding-60 { padding-right: 60px; }

    .columns__cell--left-padding-100 { padding-left: 100px; }

    .columns__cell--right-padding-100 { padding-right: 100px; }

    .columns__cell--top-padding-100 { padding-top: 100px; }
}

/*==============================
helper
==============================*/
.normalize-font {
    font-size: 15px;
}

.inline {
    display: inline;
}

.hidden {
    display: none!important;
}

.nowrap {
    white-space: nowrap;
}

/*==============================
btn
==============================*/
.btn {
    width: auto;
    height: auto;
    display: inline-block;
    line-height: 20px;
    padding: 12px 24px;
    letter-spacing: 1px;
    font-weight: bold;
    vertical-align: middle;
}

.btn--block {
    display: block;
    width: 100%;
}

.btn--inverse {
    background-color: #FFFFFF;
    color: #5A7D5D;
}

.btn--light {
    font-size: 16px;
    line-height: 26px;
    font-weight: normal;
    background-color: #FFFFFF;
    letter-spacing: normal;
    text-transform: none;
    color: #355D3E;
    border: 2px solid #67906a;
    border: 2px solid rgba(103, 144, 106, 0.2);
}

.btn--notice {
    width: 44px;
    height: 44px;
    background-image: url("../img/icon-btn-notice.svg");
    background-position: center;
    background-repeat: no-repeat;
}

.btn--search {
    width: 44px;
    height: 44px;
    background-image: url("../img/search.svg");
    background-position: center;
    background-repeat: no-repeat;
}

.btn--exit {
    width: 16px;
    height: 16px;
    font-size: 0;
    background-image: url("../img/icon-exit.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
}

/*==============================
controls
==============================*/
.input-group {
    width: 100%;
    display: table;
    border-collapse: collapse;
    margin-bottom: 10px;
}

.input-group-icon,
.input-group-text,
.input-group-area,
.input-group-btn {
    display: table-cell;
    vertical-align: middle;
}

.input-group-area {
    width: 100%;
}

.input-group-text {
    font-size: 18px;
    padding: 10px;
}

.input-group input {
    width: 100%;
    display: block;
}

.input-group .standart-form__input {
    margin: 0;
}

.radio-list {
    width: 100%;
    padding: 0;
    margin: 0;
}

.radio-list--inline {
    list-style: none;
}

.radio-list__item {
    position: relative;
}

.radio-list--inline .radio-list__item {
    display: inline-block;
    margin-right: 25px;
}

.radio-list__item input {
    display: none;
}

.radio-list__item label {
    display: block;
    padding-left: 25px;
    text-align: left;
    position: relative;
    font-size: 16px;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-backface-visibility: hidden;
}

    .radio-list__item label:active,
    .radio-list__item label:hover {
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=70)";
        opacity: 0.5;
        cursor: pointer;
    }

    .radio-list__item label::before,
    .radio-list__item label::after {
        content: "";
        display: block;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        position: absolute;
        -webkit-border-radius: 50%;
        border-radius: 50%;
    }

    .radio-list__item label::before {
        width: 16px;
        height: 16px;
        top: 4px;
        left: 0;
        border-radius: 50%;
        background: linear-gradient(180deg, #FFFFFF 0, #EBEBEB 100%);
        border: 1px solid #000000;
        border: 1px solid rgba(0, 0, 0, 0.15);
    }

.radio-list__item input:checked ~ label::after {
    width: 8px;
    height: 8px;
    background-color: #333333;
    top: 8px;
    left: 4px;
}

.nice-select.select-list {
    width: 100%;
    height: 44px;
    padding-left: 16px;
    margin-bottom: 10px;
    border-radius: 0;
    border: none;
    background: #FFFFFF;
    font-size: 16px;
    border: 1px solid #000000;
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 1px 0 #000000, inset 0 2px 0 #000000;
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1), inset 0 2px 0 rgba(0, 0, 0, 0.05);
}

    .nice-select.select-list .current {
        overflow: hidden;
        display: block;
        text-overflow: ellipsis;
    }

    .nice-select.select-list.flat {
        border: none;
        box-shadow: none;
    }

    .nice-select.select-list.dark {
        background: #F6F6F6;
    }

    .nice-select.select-list::after {
        width: 7px;
        height: 7px;
        right: 18px;
        border-bottom: 1px solid #A0A0A0;
        border-right: 1px solid #A0A0A0;
    }

    .nice-select.select-list .list {
        max-width: 400px;
        max-height: 200px;
        overflow-y: auto;
    }

/*==============================
modal
==============================*/
    .modal {
        position: fixed;
        z-index: 999;
        background-color: #000000;
        background-color: rgba(0, 0, 0, 0.4);
    }

.modal__block {
    border: none;
    padding: 50px 20px 20px;
}

.modal__block--white {
    background-color: #ffffff;
}

    .modal__block--white .modal__header,
    .modal__block--white .modal__text,
    .modal__block--white .modal__min-text {
        color: #000000;
    }


.modal--tariff {
    display: none;
}

.modal--order-create {
    display: none;
}

.modal__closer--green {
    background-position: 0 -90px;
}

.modal__btn-block--p {
    padding-left: 15px;
}

/*==============================
header
==============================*/
.site-header__index-link {
    padding: 0;
}

.site-header__logo {
    padding: 0;
}

.site-header__link {
    line-height: 44px;
}

.site-header__link span {
    border-bottom: none;
}

.site-header__link-item {
    padding-right: 0;
}

.site-header__link-item--button .btn {
    height: auto;
    padding: 12px 24px;
    line-height: 20px;
}

.site-header__link-item--button .btn--light {
    padding: 10px 24px;
}

.site-header__link-item--right-padding {
    padding-right: 30px;
}

.site-header__link-item--right-padding--min {
    padding-right: 5px;
}

.site-header__contacts {
    padding: 0;
}

.site-header__link-list {
    padding: 0;
}

@media (min-width: 1280px) {
    .site-header {
        padding: 35px 0;
    }

    .site-header__index-link {
        width: 35%;
    }

    .site-header__action-block {
        width: 65%;
    }
}

@media (max-width: 1280px) {
    .site-header {
        padding: 35px 20px;
    }

    .site-header__index-link {
        width: 30%;
    }

    .site-header__action-block {
        width: 70%;
    }

    .site-header__link-item--right-padding {
        padding: 0 5px;
    }
}

@media (max-width: 992px) {
    .site-header {
        padding: 20px;
    }

    .site-header__link {
        padding: 0;
    }

    .site-header__index-link {
        width: 100%;
    }

    .site-header__action-block {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 10px;
    }

    .site-header__link-list {
        text-align: center
    }

    .site-header__link-item--button {
        display: inline-block;
    }
}

/*==============================
footer
==============================*/
.site-footer__link {
    font-size: 14px;
    line-height: 18px;
    text-decoration: none;
    text-transform: none;
}

.site-footer__column-header {
    padding-bottom: 20px;
    font-size: 20px;
    line-height: 26px;
    color: #000000;
}

    .site-footer__column-header a {
        color: #000000;
        text-decoration: none;
    }

.site-footer__copyright {
    font-size: 14px;
    line-height: 18px;
    color: #828282;
    text-transform: none;
}

@media (min-width: 992px) {
    .site-footer__link-item {
        padding: 0 0 5px 0;
    }

    .site-footer__copyright {
        width: 100%;
        padding: 0;
    } 

    .site-footer__column-item {
        width: 18%;
    } 

    .site-footer__column-item--last {
        width: 28%;
    }
}

/*==============================
nav
==============================*/
.site-nav {
    background-color: #457F43;
}

.site-nav__list {
    background-color: inherit;
    display: table;
    table-layout: fixed;
    width: 100%;
}

.site-nav__item {
    display: table-cell;
    vertical-align: middle;
    height: 65px;
}

.site-nav__link {
    width: 100%;
    height: 100%;
    display: table;
    font-size: 16px;
    text-align: center;
    text-transform: none;
    background-color: inherit;
    line-height: 1.25;
    padding: 0;
}

    .site-nav__link--current,
    .site-nav__link[href]:hover {
        background-color: #396C37;
    }

    .site-nav__link span {
        position: relative;
        display: table-cell;
        vertical-align: middle;
    }

.site-nav__link--accent {
    background-color: #2D2D54;
}

@media (max-width: 992px) {
    .site-nav__list {
        padding: 0;
    }

    .site-nav__item {
        display: block;
    }

    .site-nav__link i {
        display: none;
    }
}

/*==============================
statistics
==============================*/
.statistics__item--registered {
    background-color: #7bb787;
}

.statistics__item--source {
    background-color: #b0d2b7;
}

.statistics__item--active {
    background-color: #2D2D54;
}

.statistics__item--state {
    background-color: #b4b2d4;
}

.statistics__item--commercial {
    background-color: #e3e3e3;
}

/*==============================
info-search
==============================*/
.info-search {
    padding: 20px;
    background-color: #f4ffef;
    background-image: url("../img/main-bg.jpg");
}

    .info-search .container {
        height: 100%;
    }

.info-search--title {
    font-weight: bold;
    font-size: 36px;
    line-height: 53px;
    color: #ffffff;
}

.info-search--description {
    margin-top: 24px;
    font-size: 18px;
    line-height: 26px;
    color: #ffffff;
}

    .info-search--description p {
        padding-top: 10px;
        margin: 0;
    }

.info-search__btn {
    margin-top: 32px;
}

.info-search__filter {
    position: relative;
    padding: 50px;
    background: #FFFFFF;
    box-shadow: 0 3px 10px #000000;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
}

    .info-search__filter::after {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 6px;
        content: "";
        background: #67906A;
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
    }

.info-search__filter--title {
    font-weight: bold;
    font-size: 22px;
    line-height: 28px;
}

.info-search__filter-form {
    margin-top: 32px;
}

    .info-search__filter-form .radio-list {
        margin-top: 20px;
    }

    .info-search__filter-form .sled {
        margin: 20px 0 0;
    }

@media (max-width: 1500px) {
    .sled-div > .sled_body, 
    .sled > .sled_body {
        left: auto!important;
        right: 0;
    }
}

@media (min-width: 1280px) {
    .info-search {
        padding: 0 20px 20px;
        height: 530px;
    }

    .info-search--title {
        margin-top: 120px;
        font-size: 44px;
    }

    .info-search__filter {
        margin-top: 98px;
        margin-left: 104px;
        margin-right: 6px;
    }
}

@media (max-width: 768px) {
    .info-search__filter {
        margin-top: 50px;
    }

    .sled-div > .sled_body,
    .sled > .sled_body {
        width: 100% !important;
    }
}

/*==============================
benefit
==============================*/
.benefit {
    padding: 40px 0;
    background-color: #FFFFFF;
}

.benefit__title {
    width: 100%;
    padding: 0 0 40px;
    font-weight: bold;
    font-size: 35px;
    line-height: 50px;
    text-align: center;
    text-transform: uppercase;
}

.benefit__subtitle {
    padding: 0 0 15px 75px;
    font-weight: bold;
    font-size: 28px;
    line-height: 36px;
    color: #355D3E;
}

.benefit__subtitle--winners {
    background: url(../img/icon-winners.svg) no-repeat left 20px;
}

.benefit__subtitle--bankpiggy {
    background: url(../img/icon-bankpiggy.svg) no-repeat left 20px;
}

.benefit__subtitle--gov {
    background: url(../img/icon-gov.svg) no-repeat left 20px;
}

.benefit__description {
    padding: 0 0 20px 0;
    font-size: 16px;
    line-height: 24px;
}

@media (min-width: 992px) {
    .benefit {
        padding: 120px 0;
    }

    .benefit__title {
        padding: 20px 0 50px;
    }

    .benefit__subtitle {
        padding: 15px 0 15px 80px;
    }

    .benefit__description {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .benefit__subtitle {
        padding: 0 0 15px 100px;
    }

    .benefit__subtitle--winners {
        background-position: 20px 7px;
    }

    .benefit__subtitle--bankpiggy {
        background-position: 20px 7px;
    }

    .benefit__subtitle--gov {
        background-position: 20px 7px;
    }

    .benefit__description {
        padding-left: 20px;
    }
}


/*==============================
assistance
==============================*/
.assistance {
    padding: 40px 0;
    background: #c1deb4;
    background: rgba(193, 222, 180, 0.2);
}

.assistance__title {
    width: 100%;
    font-weight: bold;
    font-size: 35px;
    line-height: 50px;
    text-align: center;
    text-transform: uppercase;
}

.assistance__action {
    width: 100%;
    padding: 30px 0 0;
    text-align: center;
}

@media (min-width: 992px) {
    .assistance {
        padding: 75px 0;
    }
}

/*==============================
advantages
==============================*/
.advantages__title {
    padding: 80px 0 40px;
    font-weight: bold;
    font-size: 35px;
    line-height: 50px;
    text-align: center;
    text-transform: uppercase;
}

.advantages__icon {
    float: left;
    width: 35%;
}

.advantages__info {
    float: right;
    width: 65%;
}

.advantages__round {
    position: relative;
    width: 110px;
    height: 110px;
    text-align: center;
    border-radius: 50%;
    background: #F3F8F0;
}

    .advantages__round::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
    }

.advantages__round--man::before {
    background: url(../img/icon-man.svg) no-repeat center center;
}

.advantages__round--checklist::before {
    background: url(../img/icon-checklist.svg) no-repeat center center;
}

.advantages__round--card::before {
    background: url(../img/icon-card.svg) no-repeat center center;
}

.advantages__round--doc::before {
    background: url(../img/icon-doc.svg) no-repeat center center;
}

.advantages__subtitle {
    padding: 0 0 15px 0;
    font-weight: bold;
    font-size: 28px;
    line-height: 36px;
    color: #355D3E;
}

.advantages__description {
    font-size: 18px;
    line-height: 26px;
}

.advantages__trust {
    width: 100%;
    margin: 0 auto;
}

.advantages__trust-round {
    width: 265px;
    height: 265px;
    display: inline-block;
    border-radius: 50%;
    border: 4px solid #C1DEB4;
    box-sizing: border-box;
    margin-top: 20px;
}

.advantages__trust-round--title {
    margin-top: 60px;
    font-weight: bold;
    font-size: 28px;
    line-height: 36px;
    text-align: center;
    color: #355D3E;
}

.advantages__trust-round--description {
    margin-top: 15px;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
}

.advantages__gallery {
    padding: 0;
}

.advantages__footer {
    padding: 55px 0 80px;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
}

@media (min-width: 1280px) {
    .advantages__icon {
        width: 25%;
    }

    .advantages__info {
        width: 75%;
    }
}

@media (min-width: 992px) {
    .advantages__title {
        padding: 120px 0 55px;
    }

    .advantages__trust-round {
        margin-top: 0;
    }

    .advantages__trust-round:first-child {
        margin-right: 60px;
    }

    .advantages__trust-round:last-child {
        margin-left: 60px;
    }

    .advantages__footer {
        padding: 55px 0 170px;
    }
}

@media (max-width: 768px) {
    .advantages__icon {
        float: none;
        width: 100%;
        padding: 0 0 0 20px;
    }

    .advantages__info {
        float: none;
        width: 100%;
        padding: 20px 20px 40px;
    }

    .advantages__icon-block:before {
        margin: 0 auto;
    }

    .advantages__icon-head {
        text-align: center;
    }
}

/*==============================
gallery
==============================*/
.advantages__gallery .gallery-info__item {
    padding: 0 40px;
}

/*==============================
icon-block
==============================*/
.icon-block__title--link {
    text-decoration: none;
    color: #000000;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-property: opacity;
    transition-property: opacity;
}

    .icon-block__title--link:hover {
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=70)";
        opacity: 0.5;
        cursor: pointer;
    }

/*==============================
result
==============================*/
.result__subtitle {
    display: block;
    margin-bottom: 25px;
    font-size: 28px;
    text-transform: uppercase;
}

.result__header {
    padding: 20px 0;
}

.result__header a[href]:visited {
    color: #aaaaaa;
}

.result__lots {
    font-size: 16px;
}

.result__price {
    font-size: 36px;
}
    .result__price--from {
        text-transform: none;
    }
.result__link {
    max-width: 230px;
    margin: 0;
}

.result__title {
    font-size: 20px;
}

.result__one-btn {
    padding: 0 22px 0 0;
}

.result__btn-wrapper {
    padding: 10px 0;
}

.result__icon-notice {
    padding: 0 80px 0 20px;
}

@media (min-width: 1200px) {
    .result__header-wrapper .result__header {
        width: 60%;
        margin-top: 0;
        float: left;
    }
}

.result__date-archive span {
    color: #830000;
}

@media (min-width: 1200px) {
    .services .result__item {
        min-height: 250px;
    }

    .services .result__important {
        text-align: center;
    }

    .services .result__btn {
        margin: 0 auto;
    }
}

/*==============================
selected-info
==============================*/
.selected-info {
    display: none;
}

.selected-info__content {
    text-align: center;
}

.selected-info__content--clear {
    font-size: 12px;
    border-bottom: 1px dotted #ffffff;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-property: opacity;
    transition-property: opacity;
}

    .selected-info__content--clear:hover {
        cursor: pointer;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=70)";
        opacity: 0.5;
    }

/*==============================
info
==============================*/
@media (min-width: 992px) {
    .info__item--block .info__text {
        width: 60%;
        float: left;
    }

    .info__item--block .info__button {
        width: 40%;
        float: right;
    }
}

.info__button--link {
    max-width: 230px;
    margin: 0;
    color: #ffffff !important;
}

.info__one-icon.info__one-icon--business {
    width: 20px;
}

.info__one-icon.info__one-icon--state {
    width: 30px;
}

.info__one-icon.info__one-icon--223fz {
    width: 46px;
}

.info__one-icon.info__one-icon--44fz {
    width: 40px;
}

/*==============================
control-panel
==============================*/
.control-panel__pager {
    width: 50%;
}

.control-panel__choose-all {
    width: 25%;
}

.control-panel__bottom {
    padding-top: 30px;
    padding-bottom: 0;
}

.retry-panel {
    width: 100%;
    padding-bottom: 10px;
    text-align: left;
    font-size: 18px;
}

.retry-panel__link {
    color: #5A7D5D;
    text-decoration: underline;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-property: opacity;
    transition-property: opacity;
}

    .retry-panel__link:hover {
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=70)";
        opacity: 0.5;
        cursor: pointer;
    }

    .retry-panel__link:active {
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=70)";
        opacity: 0.5;
    }

/*==============================
standart-form
==============================*/
.standart-form__item-date {
    position: relative;
}

@media (min-width: 576px) {
    .standart-form__one-column--max-350px {
        max-width: 350px;
    }
}

@media (min-width: 576px) {
    .standart-form__one-column--max-400px {
        max-width: 400px;
    }
}

.standart-form__title--min-200px {
    min-width: 200px;
}

.big-search__form .standart-form__list .standart-form__item {
    padding: 0 30px 5px;
}

.standart-form__list-link .standart-form__item {
    padding: 0 30px 10px;
}

.standart-form__list-link .standart-form__toggle {
    display: block;
    background-image: url("../img/sprite-form.png");
    background-image: url("../img/sprite-form.svg");
    font-size: 16px;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -ms-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-property: opacity;
    -moz-transition-property: opacity;
    -ms-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
    padding-left: 30px;
    position: relative;
    width: auto;
    height: auto;
    color: white;
    text-decoration: none;
}

.standart-form__list-link .standart-form__toggle--closed {
    background-position: -16px -214px;
    background-repeat: no-repeat;
}

.standart-form__list-link .standart-form__toggle--opened {
    background-position: -16px -262px;
    background-repeat: no-repeat;
}

.standart-form__clear {
    width: 48%;
    float: left;
}

.standart-form__textarea:disabled,
.standart-form__input:disabled {
    background-color: #e3e3e3;
}

.standart-form__textarea:focus,
.standart-form__input:focus {
    outline: 2px solid #666666;
}

.standart-form__fileform--border {
    border: 1px solid #969696;
    margin-bottom: 10px;
}

.standart-form__file-label {
    font-size: 12px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 200px;
    display: inline-block;
}

.standart-form__submit {
    width: 48%;
    float: right;
}

.standart-form__checkbox:checked ~ .standart-form__label--checkbox:after {
    content: "";
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 25px;
    height: 25px;
    background-image: url("../img/sprite-form.png");
    background-image: url("../img/sprite-form.svg");
    background-repeat: no-repeat;
    background-position: center -64px;
    position: absolute;
    top: 0;
    left: 0;
}

.standart-form__checkbox:checked ~ .standart-form__label--checkbox-partial:after {
    content: "";
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 11px;
    height: 11px;
    background-color: #5A7D5D;
    position: absolute;
    top: 7px;
    left: 7px;
}

.standart-form__label--radio {
    -webkit-backface-visibility: hidden;
}

.standart-form__radio:checked ~ .standart-form__label--radio:after {
    width: 14px;
    height: 14px;
    background-color: #5A7D5D;
    top: 5px;
    left: 5px;
}

.standart-form__radio--border:before {
    border: 1px solid #969696;
}

.standart-form__error {
    outline: 2px solid #830000;
    border: 0;
}

.field-validation-error {
    bottom: 5px;
    left: 0;
}

@media (min-width: 992px) {
    .field-validation-error {
        position: absolute;
    }
}

.field-validation-error .standart-form__error {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    text-transform: none;
    color: #830000;
    border: 0;
    outline: none;
}

.standart-form__item .field-validation-error {
    position: relative;
}

.standart-form__error:before {
    content: none;
}

.standart-form__file.standart-form__error {
    position: absolute;
}

.standart-form__message {
    height: 30px;
    font-size: 14px;
    text-transform: uppercase;
    padding-top: 10px;
}

.standart-form__message-text {
    display: none;
}

.standart-form__customerror {
    font-size: 14px;
    color: #830000;
}

.standart-form__label--nohover:hover {
    -ms-filter: unset;
    opacity: unset;
}

.standart-form__link--hover {
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-property: opacity;
    transition-property: opacity;
}

    .standart-form__link--hover:hover {
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=70)";
        opacity: 0.5;
        cursor: pointer;
    }

.standart-form__textarea,
.standart-form__input {
    height: 44px;
    padding: 3px 16px;
    line-height: 36px;
    font-size: 18px;
    background: #FFFFFF;
    border: 1px solid #000000;
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 1px 0 #000000, inset 0 2px 0 #000000;
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1), inset 0 2px 0 rgba(0, 0, 0, 0.05);
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

.standart-form__file-text {
    display: inline-block;
    text-overflow: ellipsis;
    max-width: 200px;
    overflow: hidden;
}

.standart-form__file-text__btn {
    max-width: 200px;
}

.standart-form__input--group span {
    width: auto;
    font-size: 18px;
    display: table-cell;
    white-space: nowrap;
    vertical-align: middle;
    padding: 0 3px;
    line-height: 1;
    text-align: center;
    background-color: #ffffff;
}

.standart-form__input--group .standart-form__input {
    width: 100%;
    display: table-cell;
    vertical-align: middle;
    margin-bottom: 0;
}

.standart-form__select--disabled {
    background-image: none;
}

    .standart-form__select--disabled:hover {
        cursor: default;
    }

.standart-form__icon {
    width: 44px;
    height: 44px;
    position: relative;
}

.standart-form__icon--calendar {
    background-position: -10px -104px;
}

.standart-form__item-top-padding-20 {
    padding-top: 20px;
}

/*==============================
personal
==============================*/
.personal {
    padding: 0 30px;
}

/*==============================
requisites
==============================*/
.requisites__cell {
    position: relative;
}

/*==============================
account-documents
==============================*/
.account-documents {
    padding: 0 15px;
}

/*==============================
password-change
==============================*/
.password-change {
    font-size: 0;
}

@media (min-width: 992px) {
    .password-change {
        width: 66%;
    }
}

.password-change__cell {
    position: relative;
}

@media (min-width: 992px) {
    .password-change__cell {
        position: relative;
        padding-bottom: 10px;
    }
}

@media (min-width: 992px) {
    .password-change__cell--34 {
        width: 34%;
    }
}

@media (min-width: 992px) {
    .password-change__cell--66 {
        width: 66%;
    }
}

@media (min-width: 992px) {
    .password-change__cell--33 {
        width: 33%;
    }
}

@media (min-width: 992px) {
    .password-change__cell--50 {
        width: 50%;
    }
}

@media (min-width: 992px) {
    .password-change__cell--left-padding-15 {
        padding-left: 5px;
    }
}

@media (min-width: 1200px) {
    .password-change__cell--left-padding-15 {
        padding-left: 15px;
    }
}

@media (min-width: 992px) {
    .password-change__cell--right-padding-15 {
        padding-right: 5px;
    }
}

@media (min-width: 1200px) {
    .password-change__cell--right-padding-15 {
        padding-right: 15px;
    }
}

.password-change__cell--high {
    padding: 30px 0;
}

.password-change__footer {
    padding: 10px 0;
}

@media (min-width: 992px) {
    .password-change__footer {
        padding-top: 20px;
    }
}

.password-change__btn {
    max-width: 220px;
    margin: 0;
}

/*==============================
mailings
==============================*/
.mailings {
    font-size: 0;
}

.mailings__cell {
    position: relative;
}

@media (min-width: 992px) {
    .mailings__cell {
        position: relative;
        padding-bottom: 10px;
        display: inline-block;
        vertical-align: top;
    }
}

@media (min-width: 992px) {
    .mailings__cell--34 {
        width: 34%;
    }
}

@media (min-width: 992px) {
    .mailings__cell--66 {
        width: 66%;
    }
}

@media (min-width: 992px) {
    .mailings__cell--33 {
        width: 33%;
    }
}

@media (min-width: 992px) {
    .mailings__cell--50 {
        width: 50%;
    }
}

@media (min-width: 992px) {
    .mailings__cell--100 {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .mailings__cell--left-padding-15 {
        padding-left: 5px;
    }
}

@media (min-width: 1200px) {
    .mailings__cell--left-padding-15 {
        padding-left: 15px;
    }
}

@media (min-width: 992px) {
    .mailings__cell--right-padding-15 {
        padding-right: 5px;
    }
}

@media (min-width: 1200px) {
    .mailings__cell--right-padding-15 {
        padding-right: 15px;
    }
}

.mailings__cell--high {
    padding: 30px 0;
}

.mailings__footer {
    padding: 10px 0;
}

@media (min-width: 992px) {
    .mailings__footer {
        padding-top: 20px;
    }
}

.mailings__btn {
    max-width: 220px;
    margin: 0;
}

/*==============================
users
==============================*/
.users {
    font-size: 0;
}

.users__cell {
    position: relative;
}

@media (min-width: 992px) {
    .users__cell {
        position: relative;
        padding-bottom: 10px;
        display: inline-block;
        vertical-align: top;
    }
}

@media (min-width: 992px) {
    .users__cell--34 {
        width: 34%;
    }
}

@media (min-width: 992px) {
    .users__cell--66 {
        width: 66%;
    }
}

@media (min-width: 992px) {
    .users__cell--33 {
        width: 33%;
    }
}

@media (min-width: 992px) {
    .users__cell--50 {
        width: 50%;
    }
}

@media (min-width: 992px) {
    .users__cell--100 {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .users__cell--left-padding-15 {
        padding-left: 5px;
    }
}

@media (min-width: 1200px) {
    .users__cell--left-padding-15 {
        padding-left: 15px;
    }
}

@media (min-width: 992px) {
    .users__cell--right-padding-15 {
        padding-right: 5px;
    }
}

@media (min-width: 1200px) {
    .users__cell--right-padding-15 {
        padding-right: 15px;
    }
}

@media (min-width: 992px) {
    .users__cell--left-padding-30 {
        padding-left: 5px;
    }
}

@media (min-width: 1200px) {
    .users__cell--left-padding-30 {
        padding-left: 30px;
    }
}

@media (min-width: 992px) {
    .users__cell--right-padding-30 {
        padding-right: 5px;
    }
}

@media (min-width: 1200px) {
    .users__cell--right-padding-30 {
        padding-right: 30px;
    }
}

.users__cell--high {
    padding: 30px 0;
}

.users__footer {
    padding: 10px 0;
}

@media (min-width: 992px) {
    .users__footer {
        padding-top: 20px;
    }
}

.users__btn {
    max-width: 220px;
    margin: 0;
}

/*==============================
write-to
==============================*/
.write-to {
    font-size: 0;
}

.write-to__cell {
    position: relative;
}

@media (min-width: 992px) {
    .write-to__cell {
        position: relative;
        padding-bottom: 10px;
        display: inline-block;
        vertical-align: top;
    }
}

@media (min-width: 992px) {
    .write-to__cell--100 {
        width: 100%;
    }
}

.write-to__footer {
    padding: 10px 0;
}

@media (min-width: 992px) {
    .write-to__footer {
        padding-top: 20px;
    }
}

.write-to__btn {
    max-width: 220px;
    margin: 0;
}

/*==============================
worklog
==============================*/
.worklog {
    font-size: 0;
}

.worklog__cell {
    position: relative;
}

@media (min-width: 992px) {
    .worklog__cell {
        position: relative;
        padding-bottom: 10px;
        display: inline-block;
        vertical-align: top;
    }
}

@media (min-width: 992px) {
    .worklog__cell--100 {
        width: 100%;
    }
}

.worklog__footer {
    padding: 10px 0;
}

@media (min-width: 992px) {
    .worklog__footer {
        padding-top: 20px;
    }
}

.worklog__btn {
    max-width: 220px;
    margin: 0;
}

/*==============================
orders
==============================*/
.orders {
    font-size: 0;
}

    .orders .standart-form__fieldset {
        padding-bottom: 0;
    }

.orders__cell {
    position: relative;
    display: inline-block;
    vertical-align: top;
}

@media (min-width: 992px) {
    .orders__cell {
        padding: 0 27px;
    }

    .orders > .main-header {
        padding: 20px 27px;
    }
}

@media (min-width: 992px) {
    .orders__cell--20 {
        width: 20%;
    }
}

@media (min-width: 992px) {
    .orders__cell--80 {
        width: 80%;
    }
}

.orders__cell--100 {
    width: 100%;
}

.orders__cell--no-padding {
    padding: 0;
}

.orders__cell--right-padding-15 {
    padding-right: 15px;
}

.orders__cell--bottom-padding-60 {
    padding-bottom: 60px;
}

.orders__cell-text {
    font-size: 16px;
}

/*==============================
add-info
==============================*/
.add-info__link--grey {
    font-size: 14px;
    color: #555555;
}

.add-info__link-item {
    display: list-item;
}

    .add-info__link-item:last-child {
        padding-left: 0;
    }

    .add-info__link-item:first-child {
        border-right: none;
    }

@media (min-width: 768px) {
    .add-info__header {
        padding: 10px 0;
        text-align: center; 
    } 
}

@media (max-width: 768px) {
    .add-info__link-item {
        width: 100%;
    }

    .add-info__link-item:last-child {
        text-align: center;
    }

    .add-info__link-item:first-child {
        text-align: center;
    }
}

/*==============================
registration
==============================*/
.registration__cell {
    position: relative;
}

@media (min-width: 992px) {
    .registration__cell--100 {
        width: 100%;
    }
}
/*==============================
headers
==============================*/
.header-description__p {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    text-transform: none;
    color: #5A7D5D;
    text-decoration: none;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-property: opacity;
    transition-property: opacity;
}

/*==============================
panels
==============================*/
@media (min-width: 576px) {
    .panels__column--min-with-image {
        width: 30%;
    }
}

@media (min-width: 1200px) {
    .panels__column--min-with-image {
        width: 20%;
    }
}

@media (min-width: 576px) {
    .panels__column--big-near-image {
        width: 70%;
    }
}

@media (min-width: 1200px) {
    .panels__column--big-near-image {
        width: 80%;
    }
}

.panels__img-wrapper-max-width {
    max-width: 100%;
}

    .panels__img-wrapper-max-width img {
        max-width: 100%;
        height: auto;
    }

@media (min-width: 576px) {
    .panels__img-wrapper-max-width {
        padding: 20px 0;
        margin: 0 auto;
    }
}

@media (min-width: 768px) {
    .panels__img-wrapper-max-width {
        padding: 20px 0;
    }
}

.panels__img-wrapper-max-width-none {
    max-width: none;
}

    .panels__img-wrapper-max-width-none img {
        max-width: 100%;
    }

@media (min-width: 576px) {
    .panels__img-wrapper-max-width-none {
        padding: 20px 0;
        margin: 0 auto;
    }
}

@media (min-width: 768px) {
    .panels__img-wrapper-max-width-none {
        padding: 20px 0;
    }
}

@media (min-width: 576px) {
    .panels__column--text {
        padding: 10px;
    }
}

@media (min-width: 768px) {
    .panels__column--text {
        padding: 20px;
    }
}

/*==============================
breadcrumbs
==============================*/

.breadcrumbs__link {
    text-transform: lowercase;
}

/*==============================
standart-table
==============================*/
.standart-table__cell-min-width-200 {
    min-width: 200px;
}

.standart-table__cell-background-color-dark-gray {
    background-color: #e3e3e3 !important;
}

.standart-table__cell-background-color-light-gray {
    background-color: #f0efef !important;
}

.standart-table__link {
    color: #5A7D5D;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-property: opacity;
    transition-property: opacity;
}

    .standart-table__link[href]:active {
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=70)";
        opacity: 0.5;
    }

@media (min-width: 768px) {
    .standart-table__link[href]:hover {
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=70)";
        opacity: 0.5;
        cursor: pointer;
    }
}

.standart-table__cell--inner-block-small {
    font-size: 9px;
}

.standart-table__cell--price {
    font-weight: bold;
    padding: 4px 2px;
}

.standart-table__cell--oldprice {
    text-decoration: line-through;
}

.standart-table__cell--stock {
    background-color: #830000;
}

/*==============================
file-table
==============================*/
.file-table tbody {
    vertical-align: top;
}


/*==============================
order-table
==============================*/
.order-table caption {
    font-size: 24px;
    text-align: left;
}

.order-table__header {
    text-align: left;
    padding-left: 20px;
    font-size: 24px;
}

.order-table__title,
.order-table__value {
    text-align: left;
    font-size: 16px;
}

.order-table__value--active {
    font-weight: bold;
    color: #5A7D5D;
}

.order-table__value--notactive {
    font-weight: bold;
    color: #830000;
}

.order-table__value--neutral {
    font-weight: bold;
}

.order-table__number {
    font-size: 12px;
}

.order-table__link {
    font-size: 16px;
    color: #345e3d;
}

.order-table .standart-form {
    padding: 0;
}

.order-table .standart-form__textarea:disabled,
.order-table .standart-form__input:disabled {
    background-color: #ffffff;
    border: 1px solid #345e3d;
}

/*==============================
pseudo-table
==============================*/
.pseudo-table__cell {
    vertical-align: middle;
}

.pseudo-table__cell--min-width {
    min-width: 240px;
}

/*==============================
services
==============================*/
.services {
    padding: 0;
}

.services__action-btn {
    display: inline-block;
    padding: 10px 30px;
    background-color: #830000;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-property: opacity;
    transition-property: opacity;
}

    .services__action-btn[href]:active {
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=70)";
        opacity: 0.5;
    }

@media (min-width: 768px) {
    .services__action-btn[href]:hover {
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=70)";
        opacity: 0.5;
        cursor: pointer;
    }
}

.services__action-text {
    margin: 0;
    padding: 10px;
    background-color: #d05e5e;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    text-transform: uppercase;
    color: #ffffff;
}

@media (min-width: 768px) {
    .services__action-text {
        padding: 30px 35px;
    }
}

@media (min-width: 1200px) {
    .services__action-text {
        padding: 20px;
    }
}

/*==============================
peppermint
==============================*/
.main-slider {
    padding: 0;
    position: relative;
}

@media (min-width: 768px) {
    .main-slider {
        padding: 0;
    }
}

@media (min-width: 992px) {
    .main-slider {
        padding: 0;
    }
}

@media (min-width: 1200px) {
    .main-slider {
        padding: 0;
    }
}

.peppermint__link {
    padding: 0;
    max-height: 300px;
}

.peppermint__arrow {
    z-index: 1;
}

    .peppermint__arrow:hover {
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=70)";
        opacity: 0.5;
        cursor: pointer;
    }

@media (min-width: 1300px) {
    .peppermint__arrow--left {
        left: 60px;
    }

    .peppermint__arrow--right {
        right: 60px;
    }
}

.main-slider__review {
    padding: 60px 0;
    background-color: #ffffff;
}

    .main-slider__review .peppermint__active .peppermint__slides > * {
        float: none;
    }

    .main-slider__review .peppermint__slides {
        display: table;
    }

    .main-slider__review .peppermint__link {
        display: table-cell;
        vertical-align: middle;
    }

    .main-slider__review .peppermint__arrow--left {
        background-image: url("../img/icon-slider-prev-grey.png");
        background-image: url("../img/icon-slider-prev-grey.svg");
        left: 0;
    }

    .main-slider__review .peppermint__arrow--right {
        background-image: url("../img/icon-slider-next-grey.png");
        background-image: url("../img/icon-slider-next-grey.svg");
        right: 0;
    }

    .main-slider__review .peppermint__text {
        width: 90%;
        margin: 0 auto;
        position: relative;
        top: 50%;
    }

    .main-slider__review .info__more-link {
        font-size: 13px;
    }

    .main-slider__review .peppermint__text--desc {
        font-size: 13px;
        text-align: left;
    }

    .main-slider__review .peppermint__text--title {
        float: right;
        font-size: 16px;
        text-align: right;
    }

    .main-slider__review .peppermint__text--date {
        float: left;
        font-size: 12px;
        text-align: left;
        color: #7bb787;
    }

@media (min-width: 576px) {
    .main-slider__review .peppermint__text {
        width: 80%;
    }

    .main-slider__review .peppermint__text--desc {
        font-size: 16px;
    }

    .main-slider__review .info__more-link {
        font-size: 16px;
    }

    .main-slider__review .peppermint__text--title {
        font-size: 20px;
    }

    .main-slider__review .peppermint__text--date {
        font-size: 14px;
    }
}

@media (min-width: 768px) {
    .main-slider__review .peppermint__text {
        width: 80%;
    }

    .main-slider__review .peppermint__text--desc {
        font-size: 18px;
    }

    .main-slider__review .info__more-link {
        font-size: 18px;
    }

    .main-slider__review .peppermint__text--title {
        font-size: 22px;
    }

    .main-slider__review .peppermint__text--date {
        font-size: 16px;
    }
}

/*==============================
Pikaday
Copyright � 2014 David Bushell | BSD & MIT license | http://dbushell.com/
==============================*/
.pika-single {
    z-index: 9999;
    display: block;
    position: relative;
    color: #fff;
    background: #5A7D5D;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

    /*
clear child float (pika-lendar), using the famous micro clearfix hack
http://nicolasgallagher.com/micro-clearfix-hack/
*/
    .pika-single:before,
    .pika-single:after {
        content: " ";
        display: table;
    }

    .pika-single:after {
        clear: both;
    }

.pika-single {
    *zoom: 1;
}

    .pika-single.is-hidden {
        display: none;
    }

    .pika-single.is-bound {
        position: absolute;
        box-shadow: 0 5px 15px -5px #000000;
        box-shadow: 0 5px 15px -5px rgba(0,0,0,.5);
    }

.pika-lendar {
    float: left;
    width: 240px;
}

.pika-title {
    position: relative;
    text-align: center;
}

.pika-label {
    display: inline-block;
    *display: inline;
    position: relative;
    z-index: 9999;
    overflow: hidden;
    margin: 0;
    padding: 5px 3px;
    font-size: 14px;
    line-height: 20px;
}

.pika-title select {
    cursor: pointer;
    position: absolute;
    z-index: 9998;
    margin: 0;
    left: 0;
    top: 5px;
    filter: alpha(opacity=0);
    opacity: 0;
}

.pika-prev,
.pika-next {
    display: block;
    cursor: pointer;
    position: relative;
    outline: none;
    border: 0;
    padding: 0;
    width: 20px;
    height: 30px;
    /* hide text using text-indent trick, using width value (it's enough) */
    text-indent: 20px;
    white-space: nowrap;
    overflow: hidden;
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 75% 75%;
    opacity: .5;
    *position: absolute;
    *top: 0;
}

    .pika-prev:hover,
    .pika-next:hover {
        opacity: 1;
    }

.pika-prev,
.is-rtl .pika-next {
    float: left;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==');
    *left: 0;
}

.pika-next,
.is-rtl .pika-prev {
    float: right;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=');
    *right: 0;
}

    .pika-prev.is-disabled,
    .pika-next.is-disabled {
        cursor: default;
        opacity: .2;
    }

.pika-select {
    display: inline-block;
    *display: inline;
}

.pika-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: 0;
}

    .pika-table th,
    .pika-table td {
        width: 14.285714285714286%;
        padding: 0;
    }

    .pika-table th {
        color: #fff;
        font-size: 13px;
        line-height: 25px;
        font-weight: bold;
        text-align: center;
    }

.pika-button {
    cursor: pointer;
    display: block;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    border: 0;
    margin: 0;
    width: 100%;
    padding: 5px;
    color: #fff;
    font-size: 13px;
    line-height: 15px;
    text-align: center;
    background: #5A7D5D;
}

.pika-week {
    font-size: 11px;
    color: #999;
}

.is-today .pika-button {
    color: #555;
    font-weight: bold;
}

.is-selected .pika-button {
    color: #fff;
    font-weight: bold;
    background: #345e3d;
}

.is-inrange .pika-button {
    background: #D5E9F7;
}

.is-startrange .pika-button {
    color: #fff;
    background: #345e3d;
    box-shadow: none;
}

.is-endrange .pika-button {
    color: #fff;
    background: #345e3d;
    box-shadow: none;
}

.is-disabled .pika-button,
.is-outside-current-month .pika-button {
    pointer-events: none;
    cursor: default;
    color: #999;
    opacity: .3;
}

.pika-button:hover {
    color: #fff;
    background: #345e3d;
    box-shadow: none;
}

/* styling for abbr */
.pika-table abbr {
    border: none;
    text-decoration: none;
}

.pika-time-container {
    clear: both;
    padding-top: 5px;
}

.pika-time {
    margin: 7px auto 7px;
}

    .pika-time .pika-time-label {
        font-weight: bold;
        font-size: 11px;
        color: #666;
        padding-right: 0.33em;
    }

.pika-select-hour, .pika-select-minute {
    -webkit-appearance: inherit;
    background: #5A7D5D;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
}

    .pika-select-hour option, .pika-select-minute option {
        background: white;
        color: black;
    }

.pika-select {
    margin: 0;
    border: 1px solid #fff;
    text-decoration: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 100%;
    height: 25px;
    padding: 0 40px 0 10px;
    margin-bottom: 10px;
    background-color: #ffffff;
    background-image: url("../img/sprite-form.png");
    background-image: url("../img/sprite-form.svg");
    background-repeat: no-repeat;
    background-position: right -13px;
    font-size: 13px;
    font-weight: 400;
    line-height: 25px;
    text-transform: none;
    color: #000000;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-property: opacity;
    transition-property: opacity;
}
/*==============================
tariffs
==============================*/
.tariffs .columns__cell {
    position: relative;
}

.tariffs__header {
    text-decoration: underline;
}

.tariffs__table {
    padding: 0;
}

.tariffs__item {
    margin-bottom: 20px;
    padding: 10px 0 0;
    position: relative;
}

@media (min-width: 768px) {
    .tariffs__item {
        margin: 0;
    }
}

@media (min-width: 992px) {
    .tariffs__item {
        padding-top: 50px;
    }
}

@media (min-width: 992px) {
    .tariffs__item--padding-top {
        padding-top: 90px;
    }
}

.tariffs__item--dark .tariffs__header,
.tariffs__item--dark .tariffs__price-year,
.tariffs__item--dark .tariffs__price-month,
.tariffs__item--dark .tariffs__text {
    color: #ffffff;
}

@media (min-width: 1200px) {
    .tariffs__item--icon .tariffs__header-block {
        max-width: 340px;
    }

    .tariffs__item--icon .tariffs__header-block--service {
        max-width: 100%;
    }
}

.tariffs__item-attr {
    padding: 0 40px;
    font-size: 15px;
}

.tariffs__form {
    padding: 10px 40px 0;
}

.tariffs__icon-wrapper {
    display: none;
}

@media (min-width: 1200px) {
    .tariffs__icon-wrapper {
        display: block;
        position: absolute;
        top: 10px;
        right: 20px;
    }
}

.tariffs__header-block {
    padding: 0 10px;
    position: relative;
    min-height: 60px;
}

@media (min-width: 768px) {
    .tariffs__header-block {
        padding-bottom: 0;
    }
}

@media (min-width: 1200px) {
    .tariffs__header-block {
        padding: 0 40px 0;
    }
}

.tariffs__breadcrumbs-block {
    position: relative;
    padding: 20px 0;
}

.tariffs .tariffs__action {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.tariffs .tariffs__action-btn {
    cursor: default;
}

.tariffs .tariffs__action:hover + .tariffs__action-block {
    opacity: 1;
}

.tariffs .tariffs__action-block {
    display: none;
    opacity: 0;
    pointer-events: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 3;
}

.tariffs__action-detail {
    margin-top: 20px;
}

    .tariffs__action-detail .tariffs__action-text {
        padding: 5px 35px;
    }

.tariffs__action-text {
    text-transform: none;
}

/*==============================
fast-communication
==============================*/
.fast-communication__col {
    position: relative;
}

    .fast-communication__col .field-validation-error {
        top: 45px;
    }

/*==============================
bordered feedback on index page
==============================*/
.standart-form__input--border:focus {
    border: 1px solid #969696;
}

/*==============================
not-found
==============================*/
.not-found {
    height: auto;
    min-height: 100%;
    position: relative;
}

.not-found__content {
    padding-bottom: 160px;
}

.not-found__footer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 150px;
}

.not-found__devices {
    width: 100%;
    padding-top: 160px;
}

.not-found__devices--img {
    width: auto;
    height: 100%;
    max-height: 250px;
    display: block;
    margin: 0 auto;
}

.not-found__message {
    width: 100%;
    padding-top: 20px;
    text-align: center;
}

.not-found__message--p {
    margin: 0;
    font-size: 30px;
    font-weight: 700;
    color: #4d4d4d;
}

.not-found__message--accent {
    color: #5A7D5D;
}

.not-found__links {
    width: 100%;
    padding-top: 100px;
}

.not-found__links--col {
    float: left;
    width: 33.33333%;
}

.not-found__links--left {
    padding-left: 15%;
}

.not-found__links--right {
    padding-right: 15%;
}

.not-found__links--center {
    padding: 0 7.5%;
}

.not-found__links .btn--link {
    font-size: 30px;
    font-weight: 700;
    height: 80px;
    line-height: 80px;
}

.not-found__gears {
    text-align: left;
}

.not-found__gears--img {
    display: block;
    width: 220px;
    height: auto;
}

@media (max-width: 1366px) {
    .not-found__devices {
        padding-top: 40px;
    }

    .not-found__message {
        padding-top: 10px;
    }

    .not-found__message--p {
        font-size: 20px;
    }

    .not-found__links {
        padding-top: 30px;
    }

        .not-found__links .btn--link {
            font-size: 20px;
            height: 60px;
            line-height: 60px;
        }
}

@media (max-width: 576px) {
    .not-found__devices--img {
        max-height: 200px;
    }

    .not-found__links--col {
        width: 100%;
        padding: 10px 0;
    }
}

/*==============================
welcome
==============================*/
.welcome {
    font-size: 0;
    padding: 0 30px;
}

.welcome__top {
    font-size: 18px;
    padding-bottom: 0;
    margin-bottom: 0;
}

.welcome__bottom {
    font-size: 18px;
    padding-top: 0;
    margin-top: 0;
}

.welcome-link {
    margin-right: 10px;
    font-weight: 400;
    line-height: 1.4;
    text-transform: none;
    color: #345e3d;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-property: opacity;
    transition-property: opacity;
}

    .welcome-link[href]:hover {
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=50)";
        opacity: 0.5;
        cursor: pointer;
    }

    .welcome-link[href]:active {
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=50)";
        opacity: 0.5;
    }

/*==============================
commerce banner
==============================*/
a.banner img {
    width: 100%;
}
li.commerce-banner {
    margin-bottom: 10px;
    margin-top: 0;
    position: relative;
}

@media (min-width: 1200px) {
    li.commerce-banner {
        margin-top: -30px!important;
    }
}
@media (min-width: 992px) {
    li.commerce-banner {
        margin-bottom: 20px;
        margin-top: 0;
    }
}


/*==============================
tariffs list
==============================*/
.tariff__list {
    margin-bottom: 30px;
    text-align: center;
    font-size: 14px;
}

    .tariff__list .columns {
        border-collapse: separate;
        border-spacing: 5px;
        table-layout: fixed;
    }

    .tariff__list .tariff__list-cell {
        margin-bottom: 30px;
        border: 3px solid #f0efef;
        transition: all 0.2s;
    }

        .tariff__list .tariff__list-cell:hover {
            border: 3px solid #5A7D5D;
            cursor: pointer;
        }

.tariff__header-name {
    min-height: 75px;
    padding: 25px 5px 0;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    color: #5A7D5D;
}

.tariff__header-desc {
    height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 10px;
    font-weight: normal;
}

    .tariff__header-desc p {
        margin: 0;
        padding: 0;
    }

.tariff__header-select {
    padding: 10px 10px 30px;
    text-align: center;
    color: #969696;
}

    .tariff__header-select .nice-select {
        float: none;
        display: inline-block;
        height: inherit;
        line-height: inherit;
        padding: 0;
        text-align: center !important;
        border: none;
    }

        .tariff__header-select .nice-select::after {
            right: -10px;
        }

        .tariff__header-select .nice-select .list {
            border-radius: 0;
            top: 0;
        }

        .tariff__header-select .nice-select .option {
            padding: 0 7px;
        }

            .tariff__header-select .nice-select .option.selected {
                font-weight: 400;
            }

    .tariff__header-select .standart-form__select {
        font-size: 14px;
        background-position: right -308px;
    }

.tariff__header-price {
    font-size: 30px;
    font-weight: 400;
    line-height: 30px;
}

.tariff__header-price--currency {
    font-size: 28px;
    line-height: 28px;
}

.tariff__header-period {
    font-weight: 400;
    font-size: 14px;
    color: #5A7D5D;
}

.tariff__header-order {
    width: 50%;
    margin: 0 auto;
    padding: 30px 0 5px;
}

.tariff__header-more {
    padding: 10px 0 20px;
}

    .tariff__header-more a {
        position: relative;
        text-decoration: none;
        font-weight: 400;
        border-bottom: 1px dotted #5A7D5D;
        color: #000000;
    }

.open .tariff__header-more a:after,
.open .tariff__header-more a:before {
    content: '';
    display: block;
    position: absolute;
    left: 10px;
    width: 0;
    height: 0;
    border-style: solid;
    z-index: 1;
}

.open .tariff__header-more a:after {
    top: 31px;
    border-color: transparent transparent #ffffff transparent;
    border-width: 25px;
}

.open .tariff__header-more a:before {
    top: 27px;
    border-color: transparent transparent #5A7D5D transparent;
    border-width: 25px;
}

@media (max-width: 768px) {
    .open .tariff__header-more a:after,
    .open .tariff__header-more a:before {
        display: none;
    }
}

.tariff__desc {
    position: relative;
    margin: 28px 5px 30px;
    padding: 20px 30px;
    background-color: #ffffff;
    border: 3px solid #5A7D5D;
}

.tariff__desc-title {
    margin-left: 20px;
    margin-bottom: 0;
    font-weight: bold;
}

.tariff__desc-list {
    font-size: 14px;
    list-style: none;
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    column-gap: 20px;
}

    .tariff__desc-list li {
        padding-bottom: 10px;
        -webkit-column-break-inside: avoid;
        column-break-inside: avoid;
        page-break-inside: avoid;
    }

        .tariff__desc-list li::before {
            content: "\—";
            display: inline-block;
            margin-left: -20px;
            width: 20px;
            color: #5A7D5D;
        }

@media (max-width: 992px) {
    .tariff__desc-list {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .tariff__desc-list {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
    }
}

.tariff__desc-close {
    position: absolute;
    top: 0;
    right: 20px;
    font-size: 40px;
    color: #5A7D5D;
    cursor: pointer;
    z-index: 2;
}

.tariff__list-cell.open {
    border: 3px solid #5A7D5D;
}

tariff__desc.open {
    display: block;
}

.close {
    display: none;
}

.icon {
    display: inline-block;
    background-repeat: no-repeat;
    vertical-align: sub;
}

.icon-info {
    width: 14px;
    height: 14px;
    background-image: url(/_shared/img/icons/info.svg);
}

.tooltip-tariff {
    max-width: 250px !important;
    min-width: 251px !important;
    font-family: inherit !important;
    font-size: 14px !important;
    color: #000 !important;
    background: #f0efef !important;
}

    .tooltip-tariff .protip-arrow {
        border-right-color: #f0efef !important;
    }


/*==============================
service item
==============================*/
.service__item {
    position: relative;
    margin-bottom: 50px;
    padding: 30px 90px;
    border: 3px solid #f0efef;
    transition: all 0.2s;
}

    .service__item:hover {
        border: 3px solid #5A7D5D;
    }

    .service__item.accent {
        border-top: 3px solid #5A7D5D;
    }

.service__item--left {
    float: left;
    width: 80%;
}

.service__item--right {
    float: right;
    width: 20%;
}

.service__item-header {
    padding: 0;
    margin: 0;
    text-transform: uppercase;
    font-size: 20px;
    color: #5A7D5D;
}

.service__item-desc {
    padding: 0;
    font-size: 15px;
}

.service__item-desc--span {
    display: block;
    margin-left: 16px;
    margin-top: 5px;
}

.service__item-action {
    padding: 10px 0;
}

.service__item-action .btn {
    margin: 0;
}

.service__item-price {
    text-align: right;
    font-size: 30px;
    line-height: 30px;
}

.service__item-price span {
    font-size: 28px;
    line-height: 28px;
}

.service__item-price--from {
    text-transform: none;
}

.service__item .standart-form {
    padding: 0;
}

.service__item .standart-form__input--border {
    border: 1px solid #e3e3e3;
}

.service__item .standart-form ::placeholder,
.service__item .fast-communication__add-text,
.service__item .fast-communication__add-text a {
    color: #bdbdbd;
}

.service__item .fast-communication {
    padding: 0;
    background-color: transparent;
}

.service__item .fast-communication__header {
    padding: 0;
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #5A7D5D;
}

.service__item .fast-communication__add-text {
    width: 50%;
}

@media (max-width: 992px) {
    .service__item--left, .service__item--right {
        width: 100%;
        float: none;
    }

    .service__item-price {
        text-align: left;
        padding-bottom: 10px;
    }

    .service__item .fast-communication__add-text {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .service__item {
        padding: 30px;
    }
}


/*==============================
preloader
==============================*/
.loader-container {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    z-index: 999999;
}

.loader {
    bottom: -50%;
    margin-top: -75px;
    left: 50%;
    margin-left: -70px;
    font-size: 10px;
    position: relative;
}

.square {
    background: #61b554;
    width: 20px;
    height: 20px;
    float: left;
    top: 0;
    margin-right: 5px;
    margin-top: 5px;
    position: relative;
    opacity: 0;
    -o-animation: enter 5.1s infinite;
    -ms-animation: enter 5.1s infinite;
    -webkit-animation: enter 5.1s infinite;
    -moz-animation: enter 5.1s infinite;
    animation: enter 5.1s infinite;
}

.enter {
    top: 0;
    opacity: 1;
}

.square:nth-child(1) {
    -o-animation-delay: 1.2s;
    -ms-animation-delay: 1.2s;
    -webkit-animation-delay: 1.2s;
    -moz-animation-delay: 1.2s;
    animation-delay: 1.2s;
}

.square:nth-child(2) {
    -o-animation-delay: 1.4s;
    -ms-animation-delay: 1.4s;
    -webkit-animation-delay: 1.4s;
    -moz-animation-delay: 1.4s;
    animation-delay: 1.4s;
}

.square:nth-child(3) {
    background: #342e5c;
    -o-animation-delay: 1.6s;
    -ms-animation-delay: 1.6s;
    -webkit-animation-delay: 1.6s;
    -moz-animation-delay: 1.6s;
    animation-delay: 1.6s;
}

.square:nth-child(4) {
    -o-animation-delay: 0.6s;
    -ms-animation-delay: 0.6s;
    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.square:nth-child(5) {
    -o-animation-delay: 0.8s;
    -ms-animation-delay: 0.8s;
    -webkit-animation-delay: 0.8s;
    -moz-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.square:nth-child(6) {
    -o-animation-delay: 1s;
    -ms-animation-delay: 1s;
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    animation-delay: 1s;
}

.square:nth-child(8) {
    -o-animation-delay: 0.2s;
    -ms-animation-delay: 0.2s;
    -webkit-animation-delay: 0.2s;
    -moz-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.square:nth-child(9) {
    -o-animation-delay: 0.4s;
    -ms-animation-delay: 0.4s;
    -webkit-animation-delay: 0.4s;
    -moz-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.clear {
    clear: both;
}

.last {
    margin-right: 0;
}



@keyframes enter {
    0% {
        opacity: 0;
        top: -10px;
    }

    5% {
        opacity: 1;
        top: 0;
    }

    50.9% {
        opacity: 1;
        top: 0;
    }

    55.9% {
        opacity: 0;
        top: 10px;
    }
}

@-o-keyframes enter {
    0% {
        opacity: 0;
        top: -10px;
    }

    5% {
        opacity: 1;
        top: 0;
    }

    50.9% {
        opacity: 1;
        top: 0;
    }

    55.9% {
        opacity: 0;
        top: 10px;
    }
}

@-ms-keyframes enter {
    0% {
        opacity: 0;
        top: -10px;
    }

    5% {
        opacity: 1;
        top: 0;
    }

    50.9% {
        opacity: 1;
        top: 0;
    }

    55.9% {
        opacity: 0;
        top: 10px;
    }
}

@-webkit-keyframes enter {
    0% {
        opacity: 0;
        top: -10px;
    }

    5% {
        opacity: 1;
        top: 0;
    }

    50.9% {
        opacity: 1;
        top: 0;
    }

    55.9% {
        opacity: 0;
        top: 10px;
    }
}

@-moz-keyframes enter {
    0% {
        opacity: 0;
        top: -10px;
    }

    5% {
        opacity: 1;
        top: 0;
    }

    50.9% {
        opacity: 1;
        top: 0;
    }

    55.9% {
        opacity: 0;
        top: 10px;
    }
}

/*==============================
tags
==============================*/
.tags {
    margin: 5px 0 0;
}

.tags__item {
    position: relative;
    display: inline-block;
    padding: 5px 7px;
    margin-bottom: 5px;
    text-decoration: none;
    border: 1px solid #5A7D5D;
    font-size: 12px;
    letter-spacing: 1px;
}

.tags__item--remove:before {
    content: "\0002DF";
    display: block;
    position: absolute;
    top: 0;
    right: 2px;
}

.tag__section .add-info__item {
    padding-bottom: 20px;
}

.tag__section .tags {
    padding: 20px 40px;
}