.action-bar {
    display: inline-block;
    font-size: 0;
    background: #F4F5F7;
    padding: 3px;
    white-space: nowrap;
    border-radius: 20px;
}
.action-bar__button {
    display: inline-block;
}
.action-bar__radio .i,
.action-bar__button {
    font-size: 12px;
    width: 53px;
    height: 34px;
    border-radius: 17px;
    opacity: .3;
    padding: 5px;
}
.action-bar__radio .i::before,
.action-bar__button::before {
    margin: 0 auto;
}
.action-bar__button.active {
    background: #FFF;
    opacity: 1;
}
.action-bar__radio {
    position: relative;
    display: inline-block;
}
.action-bar__radio input {
    position: absolute;
    opacity: 0;
}
.action-bar__radio input:checked + .i {
    background: #FFF;
    opacity: 1;
}



.required::after {
    content: '*';
    color: #EF3E33;
    font-size: 16px;
    line-height: 16px;
}

.field,
.field-attach__file {
    padding: 10px 20px;
    /*height: 46px;*/
    border: 1px solid #DBDEE4;
    border-radius: 20px;
    background: #FFF;
    color: #333;
    font-size: 0.875rem;
    line-height: 18px;
    box-shadow: none;
}
.field:focus,
.field-attach__input:focus ~ .field-attach__file {
    border-color: #AFD100;

    -webkit-box-shadow: 0 0 0 2px rgba(175, 209, 0, 0.2);
            box-shadow: 0 0 0 2px rgba(175, 209, 0, 0.2);
}
.field_stretch { width: 100%; }
.field_textarea {
    height: auto;
    min-height: 40px;
}
.field_textarea.grown {
    resize: none;
}
.field_date,
.field_period,
.field_datepicker {
    padding-left: 40px;
    background-image: url('/img/datepicker.png');
    background-image: none, url('/img/datepicker.svg');
    background-repeat: no-repeat;
    background-position: 10px 50%;
    -webkit-appearance: none;
            appearance: none;
}
.field_search {
    padding-left: 40px;
    background-image: url('/img/search.png');
    background-image: none, url('/img/search.svg');
    background-repeat: no-repeat;
    background-position: 10px 50%;
    -webkit-appearance: none;
            appearance: none;
}
.field_select {
    padding-right: 32px;
    background-repeat: no-repeat;
    background-position: right 8px top 50%;
    background-image: url('../img/select.png');
    background-image: none, url('../img/select.svg');
    -webkit-appearance: none;
            appearance: none;
}
.field_select::-ms-expand { display: none; }
.field_small {
    padding: 5px 20px;
}
.field_orange {
    border: 1px solid #FF9B3F;
    font-weight: bold;
}
.field_orange:focus {
    border-color: #FF9B3F;

    -webkit-box-shadow: 0 0 0 2px rgba(255, 155, 63, 0.2);
            box-shadow: 0 0 0 2px rgba(255, 155, 63, 0.2);
}
.field_num { text-align: right; }
.field_action {
    padding-right: 36px;
}
.field.invalid {
    border-color: #FE5F1E;
}
.field.invalid:focus {
    border-color: #FE5F1E;

    -webkit-box-shadow: 0 0 0 2px rgba(254, 95, 30, 0.2);
            box-shadow: 0 0 0 2px rgba(254, 95, 30, 0.2);
}
.field.valid {
    border-color: #53D683;
}
.field.valid:focus {
    border-color: #53D683;

    -webkit-box-shadow: 0 0 0 2px rgba(83, 214, 131, 0.2);
            box-shadow: 0 0 0 2px rgba(83, 214, 131, 0.2);
}
.field[readonly],
.field[readonly]:focus,
.field:disabled,
.field:disabled:focus {
    border-color: #EEE;
    background-color: #FAFAFA;
    color: #877D76;

    -webkit-box-shadow: none;
            box-shadow: none;
}
.field_orange[readonly] {
    color: #568D3F;
}

.field-attach {
    position: relative; z-index: 1;
    overflow: hidden;
}
.field-attach__file {
    display: block;
    position: relative; z-index: 1;
    padding-right: 104px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.field-attach__button {
    position: absolute; top: 4px; right: 4px; z-index: 2;
    padding: 0;
    width: 96px; height: 38px;
    border-radius: 4px;
    background: #DFDDDA;
    color: #7A7068;
    font-size: 0.875rem; font-weight: bold;
    line-height: 38px;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.field-attach__input {
    position: absolute; top: 0; right: 0; z-index: 3;
    border: solid transparent;
    width: 100%; height: 40px;
    cursor: pointer;
    opacity: 0;

    -moz-transform: translate(-300px, 0) scale(4);
}
.field-attach__remove {
    position: absolute; top: 4px; right: 100px; z-index: 3;
    width: 32px; height: 32px;
    border: none;
    visibility: hidden;

    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}
.field-attach__remove.active {
    visibility: visible;
}
.field-attach__remove::before {
    content: '';
    display: block;
    position: absolute; top: 4px; left: 4px;
    width: 24px; height: 24px;
    background: url('../img/icons_3.png') no-repeat 0 -120px;
    background-image: none, url('../img/icons_3.svg');
}
.field-attach__input.invalid ~ .field-attach__file { border-color: #e7391e; }
.field-attach__input.invalid:focus ~ .field-attach__file {
    border-color: #e7391e;
    box-shadow: 0 1px #e7391e;
}

.field-grid {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin-left: -8px;

    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}
.field-grid__span {
    padding-left: 8px;
    width: 100%;
}
.field-grid__span_1  {
    width: 8.3333%;
}
.field-grid__span_2  {
    width: 16.6666%;
}
.field-grid__span_3  {
    width: 25%;
}
.field-grid__span_4  {
    width: 33.3333%;
}
.field-grid__span_5  {
    width: 41.6666%;
}
.field-grid__span_6  {
    width: 50%;
}
.field-grid__span_7  {
    width: 58.3333%;
}
.field-grid__span_8  {
    width: 66.6666%;
}
.field-grid__span_9  {
    width: 75%;
}
.field-grid__span_10 {
    width: 83.3333%;
}
.field-grid__span_11 {
    width: 91.6666%;
}
.field-grid__span_12 {
    width: 100%;
}

.field-row {
    margin-bottom: 16px;
}
.field-row__field {
    position: relative;
}
#user_form .field-row__field .i {
    position: absolute;
    top: 8px;
    right: 12px;
    padding: 0;
    height: 24px; width: 24px;
    border: none;
    background: transparent;
    cursor: pointer;

    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

.field-block {
    margin-bottom: 16px;
}
.field-block::after {
    content: '';
    display: table;
    clear: both;
}
.field-block__label {
    display: block;
    padding-bottom: 8px;
    font-weight: 500;
    font-size: 1rem;
}

.field-block__hint,
.field-block__warning,
.field-block .field-error {
    display: block;
    padding-top: 6px; padding-bottom: 2px;
    font-size: 0.75rem;
    line-height: 12px;
}
.field-block__hint {
    float: left;
    color: #999;
}
.field-block .field-error,
.field-block__warning {
    float: right;
}
.field-block__warning {
    color: #FF8C41;
}
.field-error {
    color: #EF3E33;
    font-size: 0.75rem;
}
.field-block .field-error + .field-block__hint { display: none; }
.field-block__description {
    display: block;
    padding-top: 4px;
    color: #877D76;
    font-size: 0.75rem;
    line-height: 16px;
}
.field-block__range {
    position: relative;
    font-size: 0;
}
.field-block__range::after {
    content: '';
    display: table;
    clear: both;
}
.field-block__range .field {
    float: left;
    width: calc(50% - 8px);
}
.field-block__range .field:last-child {
    float: right;
}
.field-block__range::before {
    content: '-';
    position: absolute; top: 50%; left: 50%;
    margin: -8px 0 0 -8px;
    width: 16px;
    font-size: 0.875rem;
    line-height: 16px;
    text-align: center;
}

.switch {
    display: inline-block;
    position: relative; z-index: 1;
    height: 16px;
    padding-left: 30px;
    margin: 0;
    cursor: pointer;
    text-align: left;
}
.switch input {
    position: absolute; top: 0; z-index: 1;
    width: 30px; height: 16px;
    margin-left: -30px;
    cursor: pointer;
    opacity: 0;
}
.switch i {
    display: inline-block;
    width: 0; height: 16px;
    line-height: 1;
    vertical-align: middle;
    background-color: #5C8095;
}
.switch i::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 26px; height: 12px;
    border: 2px solid #5C8095;
    border-radius: 8px;
    opacity: .5;

    -webkit-transition: all .2s;
       -moz-transition: all .2s;
            transition: all .2s;
}
.switch i::after {
    content: '';
    position: absolute; top: 3px; left: 3px;
    width: 10px; height: 10px;
    background-color: #5C8095;
    border-radius: 10px;

    -webkit-transition: all .2s;
       -moz-transition: all .2s;
            transition: all .2s;
}
.switch input:checked + i::before {
    opacity: 1;
}
.switch input:checked + i::after {
    left: 16px;
}
.switch input:focus + i::before {
    -webkit-box-shadow: 0 0 0 2px rgba(92, 128, 149, 0.2);
            box-shadow: 0 0 0 2px rgba(92, 128, 149, 0.2);
}
.switch input:disabled i,
.switch input:disabled + i::before,
.switch input:disabled + i::after {
    opacity: .5;
}

.switch-block {
    display: block;
    position: relative;
    padding-right: 40px;
    color: #5C8095;
    font-size: 0.75rem;
    line-height: 16px;
}
.switch-block .switch {
    position: absolute; top: 0; right: 0;
}
.switch-block_left {
    padding-right: 0;
    padding-left: 40px;
}
.switch-block_left .switch {
    right: auto; left: 0;
}

.flash {
    position: fixed; top: 0; right: 0; left: 0; z-index: 200;
    padding: 30px 24px 8px;
    min-height: 84px;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
}
.flash_error {
    background: #FE5F1E;
    color: #FFF;
}
.flash_warn {
    background: #FE5F1E;
    color: #FFF;
}
.flash_notice {
    background: #C5DCC4;
}

.flash-message {
    display: block;
    padding: 8px 32px;
    background: #5C8095;
    color: #FFF;
    font-size: 0.75rem;
    font-weight: bold;
    font-style: italic;
    line-height: 1.25;
}
.flash-message_warning {
    background: #FF9B3F;
}
.flash-message_error {
    background: #EF3E33;
}
a.flash-message {
    font-size: 1rem;
    text-decoration: none;
}
a.flash-message:hover,
a.flash-message:focus,
a.flash-message:active {
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
}

.radio, .checkbox {
    display: inline-block;
    position: relative; z-index: 1;
    width: 24px; height: 18px;
    vertical-align: middle;
}
.radio__input,
.checkbox__input {
    position: absolute; top: -3px; left: 0; z-index: 2;
    opacity: 0;
    width: 24px; height: 24px;
    cursor: pointer;

    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-appearance: none;
            appearance: none;
}
.radio__input:disabled,
.checkbox__input:disabled {
    cursor: default;
}

.radio__icon {
    display: block;
    position: absolute; top: -3px; left: 0; z-index: 1;
    width: 24px; height: 24px;
    border: 1px solid #D3D3D3;
    border-radius: 100%;
    background: #FFF;

    -webkit-transition: box-shadow 200ms;
}
.radio__input:focus + .radio__icon {
    -webkit-box-shadow: 0 0 0 4px rgba(211, 211, 211, .1);
            box-shadow: 0 0 0 4px rgba(211, 211, 211, .1);
}
.radio__input.invalid + .radio__icon {
    border-color: #F75F1E;
}
.radio__input:checked + .radio__icon {
    border-color: #007A42;
    background: #007A42;
}
.radio__input:checked:focus + .radio__icon {
    -webkit-box-shadow: 0 0 0 4px rgba(49, 163, 174, .1);
            box-shadow: 0 0 0 4px rgba(49, 163, 174, .1);
}
.radio__input + .radio__icon::before {
    content: '';
    display: block;
    position: relative; left: 6px; top: 6px;
    width: 10px; height: 10px;
    background: #FFF;
    -webkit-border-radius: 100%;
            border-radius: 100%;

    -webkit-transform: scale(0);
        -ms-transform: scale(0);
         -o-transform: scale(0);
            transform: scale(0);

    -webkit-transition: 240ms;
         -o-transition: 240ms;
            transition: 240ms;
}
.radio__input:checked + .radio__icon::before {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
}
.radio__input:disabled + .radio__icon {
    opacity: .6;

    -webkit-box-shadow: none;
            box-shadow: none;
}
.radio__input:focus + .radio__icon {
    -webkit-box-shadow: 0 0 0 2px rgba(211, 211, 211, .1);
            box-shadow: 0 0 0 2px rgba(211, 211, 211, .1);
}
.radio__input.invalid:focus + .radio__icon {
    -webkit-box-shadow: 0 0 0 2px rgba(247, 95, 30, 0.1);
            box-shadow: 0 0 0 2px rgba(247, 95, 30, 0.1);
}
.radio__input:checked:focus + .radio__icon {
    -webkit-box-shadow: 0 0 0 2px rgba(0, 122, 66, .1);
            box-shadow: 0 0 0 2px rgba(0, 122, 66, .1);
}

.radio__input:focus + .radio__color {
    -webkit-box-shadow: 0 0 0 2px rgba(211, 211, 211, .1);
            box-shadow: 0 0 0 2px rgba(211, 211, 211, .1);
}
.radio__input:checked + .radio__color::before {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
}

.checkbox__icon {
    display: block;
    position: absolute; top: -3px; left: 0; z-index: 1;
    width: 24px; height: 24px;

    -webkit-border-radius: 4px;
            border-radius: 4px;
    -webkit-transition: box-shadow 200ms;
}
.checkbox__input + .checkbox__icon::before,
.checkbox__input + .checkbox__icon::after {
    content: '';
    display: block;
    position: absolute; left: 0; z-index: 1;
    width: 24px; height: 24px;

    -webkit-box-sizing: border-box;
            box-sizing: border-box;

    -webkit-transition: all 0.3s ease-in-out;
       -moz-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
}
.checkbox__input + .checkbox__icon::after {
    border-color: #D3D3D3;
    width: 12px;
    height: 8px;
    border: 2px solid #FFF;
    border-top: none;
    border-right: none;

    -webkit-transform: translateY(6px) translateX(6px) rotate(-45deg) scale(0);
       -moz-transform: translateY(6px) translateX(6px) rotate(-45deg) scale(0);
        -ms-transform: translateY(6px) translateX(6px) rotate(-45deg) scale(0);
         -o-transform: translateY(6px) translateX(6px) rotate(-45deg) scale(0);
            transform: translateY(6px) translateX(6px) rotate(-45deg) scale(0);
}
.checkbox__input + .checkbox__icon::before {
    border: 1px solid #D3D3D3; border-radius: 4px;
    background: #FFF;
}
.checkbox__input.invalid + .checkbox__icon::before {
    border-color: #F75F1E;
}
.checkbox__input:checked + .checkbox__icon::before {
    background: #007A42;
    border-color: #007A42;
}
.checkbox_BIO .checkbox__input:checked + .checkbox__icon::before {
    background: #6E1D14;
    border-color: #6E1D14;
}
.checkbox_OM .checkbox__input:checked + .checkbox__icon::before {
    background: #A1C517;
    border-color: #A1C517;
}
.checkbox_Stikls .checkbox__input:checked + .checkbox__icon::before {
    background: #007A42;
    border-color: #007A42;
}
.checkbox_TX .checkbox__input:checked + .checkbox__icon::before {
    background: #FFA7EF;
    border-color: #FFA7EF;
}
.checkbox_LGB .checkbox__input:checked + .checkbox__icon::before {
    background: #FF8960;
    border-color: #FF8960;
}
.checkbox_BG .checkbox__input:checked + .checkbox__icon::before {
    background: #6D1D14;
    border-color: #6D1D14;
}
.checkbox__input:checked + .checkbox__icon::after {
    -webkit-transform: translateY(6px) translateX(6px) rotate(-45deg) scale(1);
       -moz-transform: translateY(6px) translateX(6px) rotate(-45deg) scale(1);
        -ms-transform: translateY(6px) translateX(6px) rotate(-45deg) scale(1);
         -o-transform: translateY(6px) translateX(6px) rotate(-45deg) scale(1);
            transform: translateY(6px) translateX(6px) rotate(-45deg) scale(1);
}
.checkbox__input:focus + .checkbox__icon {
    -webkit-box-shadow: 0 0 0 2px rgba(211, 211, 211, .1);
            box-shadow: 0 0 0 2px rgba(211, 211, 211, .1);
}
.checkbox__input:checked:focus + .checkbox__icon {
    -webkit-box-shadow: 0 0 0 2px rgba(0, 122, 66, .1);
            box-shadow: 0 0 0 2px rgba(0, 122, 66, .1);
}
.checkbox__input:disabled + .checkbox__icon {
    opacity: .4;

    -webkit-box-shadow: none;
            box-shadow: none;
}

.checkbox-block {
    display: block;
    padding-left: 44px;
}
.checkbox-block .checkbox {
    margin-left: -44px;
    margin-right: 16px;
}
.checkbox-block_space_left {
    margin-left: 20px;
}
.checkbox-block_button {
    padding-top: 10px;
    padding-bottom: 10px;
}
.checkbox-block a {
    color: #007A42;
    text-decoration: underline #007A42;
}

.radio-block {
    display: inline-block;
    margin-right: 30px;

}
.radio-block .radio,
.radio-block .checkbox {
    margin-right: 10px;
}

.options-list {
    margin-bottom: -8px;
}
.options-list__item {
    display: block;
    margin-bottom: 8px;
    padding: 2px 0 2px 30px;
    line-height: 1.25;
}
.options-list__item .radio,
.options-list__item .checkbox {
    margin-left: -30px;
    margin-right: 3px;
}
.options-list_inline {
    margin-left: -26px;
}
.options-list_margin {
    margin-left: -6px;
    margin-bottom: 0;
}
.options-list_inline .options-list__item {
    display: inline-block;
    margin-left: 26px;
    white-space: nowrap;
}

.selectmenu {
    position: relative;
    padding: 10px 35px 10px 20px;
    border: 1px solid #DBDEE4;
    border-radius: 20px;
    background-color: #FFF;
    color: #333;
    font-size: 0.875rem;
    line-height: 18px;
    box-shadow: none;
}
.selectmenu__wrapper.invalid .selectmenu {
    border-color: #FE5F1E;
}
.selectmenu__wrapper {
    position: relative;
    cursor: pointer;
}
.selectmenu__responsive {
    width: 100%;
}
.selectmenu-w300 {
    max-width: 300px;
}
.selectmenu::after {
    content: ' ';
    position: absolute;
    top: 14px;
    right: 20px;
    border-top: 2px solid #182928;
    border-left: 2px solid #182928;
    width: 6px;
    height: 6px;
    transform: rotate(225deg);
}
.selectmenu__label {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 18px;

    -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.selectmenu__focus .selectmenu {
    border-color: #AFD100;

    -webkit-box-shadow: 0 0 0 2px rgba(175, 209, 0, 0.2);
            box-shadow: 0 0 0 2px rgba(175, 209, 0, 0.2);
}
.selectmenu__focus.invalid .selectmenu {
    border-color: #FE5F1E;

    -webkit-box-shadow: 0 0 0 2px rgba(254, 95, 30, 0.2);
            box-shadow: 0 0 0 2px rgba(254, 95, 30, 0.2);
}
.selectmenu__hover .selectmenu {
}
.selectmenu__open {
    z-index: 9999;
}
.selectmenu__open .selectmenu__items {
    display: block;
}
.selectmenu__disabled {
    opacity: 0.5;
    cursor: default;

    -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.selectmenu-row_placeholder {
    opacity: 0.5;
}

.selectmenu__select {
    position: relative;
    overflow: hidden;
    width: 0; height: 0;
}
.selectmenu__select select {
    position: absolute;
    left: -100%;
}

.selectmenu__select.selectmenu__is_native {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.selectmenu__select.selectmenu__is_native select {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    border: none;
    z-index: 1;
    box-sizing: border-box;
    opacity: 0;
}

.selectmenu__input {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    margin: 0;
    padding: 0;
    width: 1px;
    height: 1px;
    outline: none;
    border: none;
    background: none;
}

.selectmenu__temp_show {
    position: absolute !important;
    visibility: hidden !important;
    display: block !important;
}

.selectmenu__items {
    display: none;
    position: absolute;
    top: 100%;
    left: 0px;
    margin-top: 4px;
    padding: 12px 0;
    background: #FFF;
    border: 1px solid #DBDEE4;
    border-radius: 16px;
    min-width: 100%;
    max-width: 100%;
}
.selectmenu__placeholder,
.selectmenu__items  .placeholder {
    color: #969696;
}
.selectmenu__above .selectmenu__items {
    margin-top: 0;
    margin-bottom: 4px;
}

.selectmenu__items .selectmenu__scroll {
    padding: 0 4px;
    max-height: 300px;
    overflow: auto;
}

.selectmenu__above .selectmenu__items {
    top: auto;
    bottom: 100%;
}

.selectmenu__items ul, .selectmenu__items li {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.75rem;
    line-height: 20px;
    min-height: 20px;
}

.selectmenu__items li {
    display: block;
    padding: 4px 7px;
    cursor: pointer;
    min-height: 32px;
    white-space: nowrap;
}

.selectmenu__items li.selected {
    background: #F4F5F7;
    color: #444;
    border-radius: 4px;
}
.selectmenu__items li.highlighted {

}
.selectmenu__items li:hover {
    background: #F8F8F9;
    border-radius: 4px;
}

.selectmenu__items .disabled {
    opacity: 0.5;
    cursor: default !important;
    background: none !important;
    color: #666 !important;
    -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.selectmenu__items .selectmenu__group .selectmenu__group_label {
    font-weight: bold;
    padding-left: 10px;
    cursor: default;
    -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
    background: none;
    color: #444;
}

.selectmenu__items .selectmenu__group.disabled li {
    opacity: 1;
}

.selectmenu__items .selectmenu__group li {
    padding-left: 25px;
}

.selectmenu-small .selectmenu {
    padding: 5px 20px;
}
.selectmenu-small .selectmenu::after {
    top: 9px;
    right: 12px;
}

.selectmenu-row {
    line-height: 20px;
    min-height: 20px;
    white-space: nowrap;
}
.selectmenu-row_img {
    position: relative;
    padding-left: 45px;
    line-height: 35px;
    min-height: 35px;
}
.selectmenu-row__img {
    position: absolute; top: 0; left: 0;
}

@media only screen and (min-width: 841px) {

    .field-row {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        margin-bottom: 16px;
    }
    .field-row.hidden {
        display: none;
    }
    .field-row__label {
        flex-shrink: 0;
        padding-right: 8px;
        width: 130px;
    }
    .field-row__field {
        flex-grow: 1;
    }
    .field-row_top {
        align-items: start;
    }
    .field-row_top .field-row__label {
        padding-top: 10px;
        padding-bottom: 10px;
    }

}

@media only screen and (max-width: 840px) {
    .field-row__label {
        display: block;
        margin-bottom: 4px;
    }

    .field-grid {
        display: block;
    }
    .field-grid__span_8,
    .field-grid__span_4 {
        width: 100%;
    }
    .field-grid__span_8 {
        margin-bottom: 8px;
    }

    .options-list_margin {
        margin-left: -11px;
    }

    .checkbox-block { 
        padding-left: 34px;
    }
    .checkbox-block .checkbox { 
        margin-left: -34px;
        margin-right: 7px;
    }
    .checkbox-block_button {
        padding-bottom: 24px;
        float: left;
    }
    .checkbox-block_space_left {
        margin-left: 15px;
    }
}

