.forms {
    font-size: 12px;
}
.forms__title {
    margin-bottom: 20px;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.16;
    text-transform: uppercase;
}
.forms .param-item {
    margin-bottom: 20px;
}
.forms__label {
    display: block;
    font-size: 11px;
    color: var(--body-color);
    margin-bottom: 7px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
}
.forms__label + .forms__note {
    margin-top: -4px;
    margin-bottom: 1px;
}
.forms__text {
    position: relative;
}

.forms__text--error__error-msg {
    display: block;
}
.forms__hint {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 10px;
    height: 36px;
    font-size: 12px;
}
.forms__hint_small {
    height: auto;
    position: relative;
}
.forms__select select {
    width: 100%;
    height: 36px;
    padding: 0 10px;
    font-size: 12px;
    text-align: left;
    border-radius: 3px;
    border: 1px solid #dce5ea;
    background-color: #f7fbfc;
}
.forms__select .jq-selectbox {
    width: 100%;
}
.forms__field {
    margin-bottom: 20px;
}
.forms__field_have_border {
    padding-bottom: 20px;
    border-bottom: 1px solid #EFF3F5;
    margin-left: -25px;
    padding-left: 25px;
    padding-right: 25px;
    width: calc(100% + 50px);
}
.forms__field--disable {
    position: relative;
    opacity: 0.5;
}
.forms__field--disable::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.forms__field:last-child, .forms__field_no-margin {
    margin-bottom: 0;
}
.forms__note {
    color: #8ea4b5;
    font-size: 11px;
    line-height: 13px;
}
.forms__warning {
    display: flex;
    align-items: center;
    min-height: 24px;
    padding-left: 38px;
    font-size: 12px;
    background: url(/local/templates/cabinet/img/contract/icon-warning-gray.svg) left center no-repeat;
}
.forms__result {
    padding: 10px 20px 15px;
    background: #386bf2;
    border-radius: 3px;
    margin-bottom: 20px;
}
.forms__result:last-child {
    margin: 0;
}
.forms__action {
    display: flex;
    align-items: center;
}
.forms__action .button {
    margin-left: 10px;
}
.forms__action .button:first-child {
    margin-left: 0;
}
.forms__calend {
    position: relative;
    transition: all 0.3s ease-in-out;
}
.forms__calend::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 11px;
    z-index: 10;
    width: 14px;
    height: 15px;
    margin-top: -7px;
    background: url(/local/templates/cabinet/img/contract/icon-blue-calend.svg) center no-repeat;
}
.forms__calend.disabled {
    opacity: 0.5;
}
.forms__error-msg {
    color: #ff5943;
    font-size: 10px;
    display: none;
    padding-top: 5px;
}
.forms__disable {
    position: relative;
    opacity: 0.5;
}
.forms__disable::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
}
.forms__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-left: -5px;
    margin-right: -5px;
}
.forms__col-1, .forms__col-2, .forms__col-3, .forms__col-4, .forms__col-5, .forms__col-6, .forms__col-7, .forms__col-8, .forms__col-9, .forms__col-10, .forms__col-11, .forms__col-12 {
    padding-left: 5px;
    padding-right: 5px;
}
.forms__col-1 {
    width: 8.333333%;
}
.forms__col-2 {
    width: 16.666667%;
}
.forms__col-3 {
    width: 25%;
}
.forms__col-4 {
    width: 33.333333%;
}
.forms__col-5 {
    width: 41.666667%;
}
.forms__col-6 {
    width: 50%;
}
.forms__col-7 {
    width: 58.333333%;
}
.forms__col-8 {
    width: 66.666667%;
}
.forms__col-9 {
    width: 75%;
}
.forms__col-10 {
    width: 83.333333%;
}
.forms__col-11 {
    width: 91.666667%;
}
.forms__col-12 {
    width: 100%;
}
.forms__buttons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.forms__buttons .btn, .forms__buttons .button, .forms__buttons a {
    margin-right: 10px;
}
.forms__buttons .btn:last-child, .forms__buttons .button:last-child, .forms__buttons a:last-child {
    margin-right: 0;
}
.ceheck-list {
    padding-top: 6px;
}
.ceheck-list__item {
    margin-bottom: 10px;
}
.ceheck-list__item:last-child {
    margin-bottom: 0;
}
.is-have-error {
    position: relative;
}
.is-have-error__icon {
    position: absolute;
    right: -11px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 20px;
    height: 18px;
    background-image: url(/local/templates/cabinet/img/warning-input.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    cursor: pointer;
    opacity: 0;
    transition: all 0.45s ease-in-out;
}
.is-have-error__icon:hover ~ .is-have-error__tooltip, .is-have-error__icon.active ~ .is-have-error__tooltip {
    opacity: 1;
    z-index: 4;
}
.is-have-error__tooltip {
    background-color: #ffffff;
    border: 1px solid #DADADA;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
    border-radius: 3px;
    padding: 14px 20px;
    position: absolute;
    right: 0;
    top: calc(100% + 1px);
    min-width: 240px;
    max-width: 280px;
    font-size: 10px;
    color: #8EA4B5;
    letter-spacing: 0;
    text-align: left;
    z-index: -1;
    line-height: 1.2;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}
.is-have-error__tooltip:before {
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 4px 6px 4px;
    border-color: transparent transparent #fff transparent;
    content: '';
    position: absolute;
    top: -6px;
    right: 16px;
    z-index: 3;
}
.is-have-error__tooltip:after {
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 5px 7px 5px;
    border-color: transparent transparent #DADADA transparent;
    content: '';
    position: absolute;
    top: -7px;
    right: 15px;
    z-index: 2;
}
.is-have-error__tooltip .title {
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 12px;
    line-height: 1.16;
    color: var(--body-color);
    display: block;
}
.is-have-error.active .is-have-error__icon {
    opacity: 1;
    right: 11px;
    transform: translateY(-50%);
}
.is-have-error.active .is-have-error__tooltip {
    opacity: 1;
    z-index: 4;
}
.i-pseudo-radio {
    display: none;
}
.i-pseudo-radio + label {
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-weight: bold;
    font-size: 11px;
    color: var(--body-color);
    line-height: 1.1;
    border-radius: 3px;
    background-color: #F4F9FB;
    text-transform: uppercase;
    cursor: pointer;
    margin-bottom: 0;
}
.i-pseudo-radio + label .icon, .i-pseudo-radio + label svg {
    margin-right: 10px;
    fill: var(--body-color);
}
.i-pseudo-radio.center + label {
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.i-pseudo-radio.center + label .icon, .i-pseudo-radio.center + label svg {
    margin-right: 0;
    margin-bottom: 8px;
    fill: var(--body-color);
}
.i-pseudo-radio:checked + label {
    background-color: #386bf2;
    color: #ffffff;
}
.i-pseudo-radio:checked + label .icon, .i-pseudo-radio:checked + label svg {
    fill: #ffffff;
}
.i-uploader {
    padding: 14px 20px;
    background-color: #ffffff;
    border: 1px dashed #DCE5EA;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    border-radius: 3px;
}
.i-uploader:hover {
    border-style: solid;
    background-color: #f4f9fb;
}
.i-uploader input {
    position: absolute;
    font-size: 999px;
    width: 9999px;
    height: 999px;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
    cursor: pointer;
}
.i-uploader svg, .i-uploader .icon {
    margin-bottom: 8px;
}
.i-uploader__title {
    font-weight: bold;
    font-size: 12px;
    margin-bottom: 4px;
    line-height: 1.2;
    color: var(--body-color);
}
.i-uploader__hint {
    color: #8ea4b5;
    font-size: 10px;
    line-height: 1.2;
}
.img-preview {
    display: block;
    width: 100%;
}
.remove-container {
    position: relative;
    display: block;
}
.remove-container:hover .animated-button {
    opacity: 1;
}
.animated-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    padding: 0 10px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 10px;
    font-weight: bold;
    color: var(--body-color);
    text-transform: uppercase;
    opacity: 0;
    transition: all 0.35s ease-in-out;
}
.animated-button svg {
    margin-left: 5px;
    width: 8px;
    height: 8px;
}
.b-containers-table__row {
    margin-bottom: 2px;
    background-color: #f4f9fb;
    border-radius: 3px;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.b-containers-table__row_thead {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 11px;
}
.b-containers-table__row_thead .item {
    white-space: nowrap;
}
.b-containers-table__row .chosen-container-single .chosen-single, .b-containers-table__row .chosen-container .chosen-drop {
    background-color: #ffffff;
}
.b-containers-table__row .item {
    margin-right: 20px;
    width: 100%;
}
.b-containers-table__row .item:last-child {
    margin-right: 0;
}
.b-containers-table__row .item.regular {
    width: 85px;
    min-width: 85px;
    max-width: 85px;
}
.b-containers-table__row:last-child {
    margin-bottom: 0;
}
.copy-btn {
    position: relative;
    z-index: 2;
}
.copy-btn svg {
    fill: #8EA4B5;
    transition: all 0.2s ease-in-out;
}
.copy-btn:hover svg {
    fill: var(--body-color);
}
.button .b-type-icon__icon {
    margin-right: 5px;
}
.button .b-type-icon__icon:last-child {
    margin-right: 0;
}


/**
 * @package		PickMeUp - jQuery datepicker plugin
 * @author		Nazar Mokrynskyi <nazar@mokrynskyi.com>
 * @author		Stefan Petre <www.eyecon.ro>
 * @copyright	Copyright (c) 2013-2015, Nazar Mokrynskyi
 * @copyright	Copyright (c) 2008-2009, Stefan Petre
 * @license		MIT License, see license.txt
 */
/**
 * @package		PickMeUp - jQuery datepicker plugin
 * @author		Nazar Mokrynskyi <nazar@mokrynskyi.com>
 * @author		Stefan Petre <www.eyecon.ro>
 * @copyright	Copyright (c) 2013-2015, Nazar Mokrynskyi
 * @copyright	Copyright (c) 2008-2009, Stefan Petre
 * @license		MIT License, see license.txt
 */
.pickmeup {
    background-color: #fff;
    border-radius: 4px;
    -moz-box-sizing: content-box;
    z-index: 10070 !important;
    box-sizing: content-box;
    display: none;
    position: absolute;
    font-size: 12px;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
    font-weight: 500;
    transform: translateY(20px);
}
.pickmeup:before {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6.5px 6px 6.5px;
    border-color: transparent transparent #fff transparent;
    content: '';
}
.pickmeup * {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.pickmeup .pmu-instance {
    display: inline-block;
    padding: 0 10px 10px;
    text-align: center;
    width: 260px;
}
.pickmeup .pmu-instance .pmu-button {
    color: #323A45;
    cursor: pointer;
    outline: none;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.4s ease-in-out;
    font-size: 11px;
}
.pickmeup .pmu-instance .pmu-today {
    background: rgba(56, 107, 242, 0.08);
    color: #475364;
}
.pickmeup .pmu-instance .pmu-saturday, .pickmeup .pmu-instance .pmu-sunday {
    color: #FF5943;
}
.pickmeup .pmu-instance .pmu-button:hover {
    background: #F4F9FB;
    color: #475364;
}
.pickmeup .pmu-instance .pmu-not-in-month, .pickmeup .pmu-instance .pmu-disabled, .pickmeup .pmu-instance .pmu-disabled:hover {
    color: rgba(50, 58, 69, 0.3);
}
.pickmeup .pmu-instance .pmu-not-in-month.pmu-saturday, .pickmeup .pmu-instance .pmu-disabled.pmu-saturday, .pickmeup .pmu-instance .pmu-disabled:hover.pmu-saturday, .pickmeup .pmu-instance .pmu-not-in-month.pmu-sunday, .pickmeup .pmu-instance .pmu-disabled.pmu-sunday, .pickmeup .pmu-instance .pmu-disabled:hover.pmu-sunday {
    color: rgba(255, 89, 67, 0.3);
}
.pickmeup .pmu-instance .pmu-selected {
    background: #386bf2;
    color: #fff;
}
.pickmeup .pmu-instance .pmu-not-in-month.pmu-selected {
    background: rgba(56, 107, 242, 0.08);
}
.pickmeup .pmu-instance nav {
    color: #323A45;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 1;
    border-bottom: 1px solid #E7F1F6;
    width: calc(100% + 20px);
    padding: 10px;
    margin-left: -10px;
    margin-bottom: 15px;
}
.pickmeup .pmu-instance nav.pmu-day-of-week {
    margin-left: 0;
    margin-bottom: 0;
    width: 100%;
    border: none;
    padding: 0;
}
.pickmeup .pmu-instance nav *:first-child :hover {
    color: #475364;
}
.pickmeup .pmu-instance nav .pmu-prev, .pickmeup .pmu-instance nav .pmu-next {
    display: none;
    width: 32px;
    height: 32px;
    border: 1px solid #E7F1F6;
    background-color: #fff;
    transition: all 0.2s ease;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}
.pickmeup .pmu-instance nav .pmu-prev:hover, .pickmeup .pmu-instance nav .pmu-next:hover {
    background-color: #E7F1F6;
}
.pickmeup .pmu-instance nav .pmu-month {
    font-size: 12px;
    width: auto;
    background-color: transparent !important;
    font-weight: bold;
}
.pickmeup .pmu-instance .pmu-years, .pickmeup .pmu-instance .pmu-months {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.pickmeup .pmu-instance .pmu-years *, .pickmeup .pmu-instance .pmu-months * {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
    width: calc(100% / 3 - 4px);
    height: 30px;
    margin: 2px;
    border-radius: 3px;
}
.pickmeup .pmu-instance .pmu-day-of-week {
    color: #475364;
    cursor: default;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 11px;
}
.pickmeup .pmu-instance .pmu-day-of-week, .pickmeup .pmu-instance .pmu-days {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.pickmeup .pmu-instance .pmu-day-of-week *, .pickmeup .pmu-instance .pmu-days * {
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin: 2px;
    border-radius: 3px;
}
.pickmeup .pmu-instance:first-child .pmu-prev, .pickmeup .pmu-instance:last-child .pmu-next {
    display: inline-flex;
}
.pickmeup .pmu-instance:first-child .pmu-month, .pickmeup .pmu-instance:last-child .pmu-month {
    width: 13em;
}
.pickmeup .pmu-instance:first-child:last-child .pmu-month {
    width: 12em;
}
.pickmeup:not(.pmu-view-days) .pmu-days, .pickmeup:not(.pmu-view-days) .pmu-day-of-week, .pickmeup:not(.pmu-view-months) .pmu-months, .pickmeup:not(.pmu-view-years) .pmu-years {
    display: none;
}


.b-binman-num {
    position: relative;
    max-width: 100%;
}

.b-binman-num__input {
    position: relative;
    z-index: 1;
    padding-right: 40px !important;
}

.b-binman-num {
    position: relative;
    max-width: 100%; }
.b-binman-num__input {
    position: relative;
    z-index: 1;
    padding-right: 40px !important; }
.b-binman-num__controls {
    position: absolute;
    z-index: 2;
    width: 31px;
    border-left: 1px solid #DCE5EA;
    height: 100%;
    right: 0;
    top: 0; }
.b-binman-num__label {
    position: absolute;
    top: calc(50% + 1px);
    transform: translateY(-50%);
    font-size: 11px;
    color: #8ea4b5;
    z-index: 3;
    font-weight: 400;
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    background-color: #f4f9fb; }
.b-binman-num__button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 18px;
    transition: all .25s ease-in-out; }
.b-binman-num__button svg {
    fill: #386bf2;
    transition: all .25s ease-in-out; }
.b-binman-num__button:first-child {
    border-bottom: 1px solid #DCE5EA;
    border-top-right-radius: 3px; }
.b-binman-num__button:last-child {
    border-bottom-right-radius: 3px; }
.b-binman-num__button:hover {
    background-color: #386bf2; }
.b-binman-num__button:hover svg {
    fill: #fff; }


.b-binman-num__label {
    position: absolute;
    top: calc(50% + 1px);
    transform: translateY(-50%);
    font-size: 11px;
    color: #8ea4b5;
    z-index: 3;
    font-weight: 400;
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    background-color: #f4f9fb;
}

.b-binman-num__button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 18px;
    transition: all .25s ease-in-out;
}

.b-binman-num__button:first-child {
    border-bottom: 1px solid #DCE5EA;
    border-top-right-radius: 3px;
}

.b-binman-num__button:last-child {
    border-bottom-right-radius: 3px;
}

.forms__calend {
    position: relative;
    transition: all .3s ease-in-out;
}
.b-map-popover__controls {
    position: absolute;
    top: 12px;
    left: 0;
    text-align: right;
    width: 30px;
}
.b-map-popover__control:hover {
    background-color: #DFE8EB;
}
.b-map-popover__control:last-child {
    margin-bottom: 0;
}
.b-map-popover__control {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    box-shadow: 0 0 4px 0 rgb(0 0 0 / 20%);
    border-radius: 3px;
    float: none;
    font-size: 1rem;
    line-height: 1;
    text-shadow: none;
    transition: all 0.2s ease;
    margin-bottom: 5px;
    opacity: 1 !important;
    cursor: pointer;
}
.title-h1, .title-h2, .title-h3 {
    padding: 0;
    margin: 0;
    font-weight: bold;
}
.title-h1 {
    font-size: 22px;
    line-height: 1.18;
}
.title-h2 {
    font-size: 16px;
    line-height: 1.18;
    margin-bottom: 5px;
}
.title-h3 {
    font-size: 14px;
    line-height: 1.18;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.hint-text {
    color: #8ea4b5;
    font-size: 12px;
}
.title-h4 {
    font-size: 11px;
    line-height: 1.5;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.warning-msg {
    display: flex;
    align-items: center;
    min-height: 24px;
    font-size: 12px;
    padding-left: 37px;
    background: url(/local/templates/cabinet/img/modals/warning.svg) left center no-repeat;
}
.sticker {
    display: inline-block;
    border-radius: 8px;
    min-width: 20px;
    height: 16px;
    padding: 0 2px;
    color: #ffffff;
    font-size: 10px;
    font-weight: bold;
    line-height: 17px;
    text-transform: uppercase;
    background-color: #386bf2;
    text-align: center;
    margin-left: 8px;
    transition: 0.3s;
}
.sticker--red {
    background-color: #ff5943;
}
.sticker--gray {
    color: #475364;
    background-color: #e2ebef;
}
.button {
    display: inline-block;
    height: 36px;
    line-height: 37px;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 0 15px;
    border: none;
    border-radius: 3px;
    background-color: #386bf2;
    transition: 0.3s;
    text-align: center;
    cursor: pointer;
}
.button:hover {
    background-color: #3b4656;
    color: #fff;
}
.button--disable {
    background-color: #d3e6ea !important;
    cursor: default;
}
.button--xs {
    height: 26px;
    line-height: 26px;
}
.button--lg {
    height: 36px;
    line-height: 36px;
}
.button--orange {
    background-color: #ff9433;
}
.button--green {
    background-color: #b2d170;
}
.button--lblue {
    color: #3b4656;
    background-color: #dce5ea;
}
.button--lblue:hover {
    color: #fff;
}
.button--vlblue {
    color: #3b4656;
    background-color: #f7fbfc;
}
.button--vlblue:hover {
    color: #fff;
}
.button--white {
    line-height: 35px;
    color: #3b4656;
    background-color: #fff;
    border: 1px solid #dbe4e7;
}
.button--white:hover {
    color: #fff;
    border-color: #3b4656;
}
.button--hover-gray:hover {
    color: #3b4656 !important;
    background-color: #f7fbfc !important;
}
.button--add {
    display: flex;
    align-items: center;
    padding: 0 15px;
}
.button--add::before {
    content: '';
    width: 12px;
    height: 12px;
    margin-right: 5px;
    background-image: url(/local/templates/cabinet/img/modals/icon-w-plus.svg);
}
.toggle-btn {
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: url(/local/templates/cabinet/img/modals/arrow-down.svg) #f4f9fb center no-repeat;
    cursor: pointer;
}
.toggle-btn.open {
    transform: rotate(180deg);
}
#contract-to-date {
    opacity: 0.5;
    transition: all 0.2s ease-in-out;
}
#contract-to-date.active {
    opacity: 1;
    background-color: transparent;
}
.forms {
    font-size: 12px;
}
.forms__label {
    display: block;
    font-size: 11px;
    color: #475364;
    margin-bottom: 7px;
    line-height: 1.1;
    font-weight: 700;
    text-transform: uppercase;
}

.forms__text textarea {
    padding: 10px;
    resize: none;
    height: 140px;
}
.forms__text--error textarea, .forms__text--error input {
    border-color: #ff5943;
    background-color: #fff;
}
.forms__text--error .forms__error-msg {
    display: block;
}
.forms__select .jq-selectbox {
    width: 100%;
}
.forms__field {
    margin-bottom: 20px;
}
.forms__field_small_margin {
    margin-bottom: 14px;
}
.forms__field:last-child {
    margin: 0;
}
.forms__checkbox, .forms__radio {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.forms__checkbox {
    font-size: 12px;
}
.forms__checkbox .jq-checkbox {
    margin-right: 10px;
}
.forms__calend {
    position: relative;
}
.forms__calend::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 11px;
    z-index: 10;
    width: 14px;
    height: 15px;
    margin-top: -7px;
    background: url(/local/templates/cabinet/img/modals/icon-blue-calend.svg) center no-repeat;
}
.forms__error-msg {
    color: #ff5943;
    font-size: 10px;
    display: none;
    padding-top: 5px;
}
.forms__disable {
    position: relative;
    opacity: 0.5;
}
.forms__disable::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
}
.forms__row {
    display: flex;
    align-items: flex-start;
    margin-left: -5px;
    margin-right: -5px;
}
.forms__col-1, .forms__col-2, .forms__col-3, .forms__col-4, .forms__col-5, .forms__col-6, .forms__col-7, .forms__col-8, .forms__col-9, .forms__col-10, .forms__col-11, .forms__col-12 {
    padding-left: 5px;
    padding-right: 5px;
}
.forms__col-1 {
    width: 8.333333%;
}
.forms__col-2 {
    width: 16.666667%;
}
.forms__col-3 {
    width: 25%;
}
.forms__col-4 {
    width: 33.333333%;
}
.forms__col-5 {
    width: 41.666667%;
}
.forms__col-6 {
    width: 50%;
}
.forms__col-7 {
    width: 58.333333%;
}
.forms__col-8 {
    width: 66.666667%;
}
.forms__col-9 {
    width: 75%;
}
.forms__col-10 {
    width: 83.333333%;
}
.forms__col-11 {
    width: 91.666667%;
}
.forms__col-12 {
    width: 100%;
}
/* custom correct */
.text-center {
    text-align: center;
}
.flex {
    display: flex;
}
.inline-block {
    display: inline-block;
}
.nowrap {
    white-space: nowrap;
}
.w1p {
    width: 1%;
}
.w10p {
    width: 10%;
}
.w20p {
    width: 20%;
}
.w30p {
    width: 30%;
}
.w40p {
    width: 40%;
}
.w50p {
    width: 50%;
}
.w60p {
    width: 60%;
}
.w70p {
    width: 70%;
}
.w80p {
    width: 80%;
}
.w90p {
    width: 90%;
}
.w100p {
    width: 100%;
}
.clr-red {
    color: #ff5943;
}
.hide {
    display: none;
}
/* tabs */
.tabs__item {
    display: flex;
    align-items: center;
    height: 30px;
    color: #5d6a7c;
    font-size: 11px;
    font-weight: bold;
    padding: 0 17px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    background: #fff;
    border: none;
}
.tabs__item:hover {
    color: #386bf2;
}
.tabs__item:hover .sticker--gray {
    background-color: #fff;
}
.tabs__item.active {
    color: #5d6a7c;
    background-color: #e7f1f6;
}
.tabs__item.active .sticker--gray {
    background-color: #fff;
}
.tabs__box {
    display: block;
    height: 0;
    overflow: hidden;
}
.tabs__box.visible {
    height: auto;
    overflow: visible;
}
.tabs-id__box {
    display: none;
}
.tabs-id__box.visible {
    display: block;
}
.tabs-header {
    overflow: hidden;
    margin-bottom: 20px;
}
.tabs-header__wrap {
    display: flex;
    float: left;
    height: 32px;
    border-radius: 3px;
    border: 1px solid #e7f1f6;
    background-color: #ffffff;
    overflow: hidden;
}
.tabs-header__wrap--stretch {
    display: table;
    width: 100%;
    text-align: center;
}
.tabs-header__wrap--stretch .tabs__item {
    display: table-cell;
    vertical-align: middle;
    width: 1%;
    white-space: nowrap;
    padding: 0 5px;
}
.tabs-header--tp2 {
    display: flex;
    border-bottom: 1px solid #dfeefa;
}
.tabs-header--tp2 .tabs-header__item {
    color: #8ea4b5;
    position: relative;
    overflow: hidden;
    padding: 0 0 10px;
    margin-right: 30px;
}
.tabs-header--tp2 .tabs-header__item::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 3px;
    transition: 0.3s;
    background-color: #386bf2;
}
.tabs-header--tp2 .tabs-header__item:hover {
    color: #5d6a7c;
}
.tabs-header--tp2 .tabs-header__item:hover .sticker--gray {
    background-color: #e2ebef;
}
.tabs-header--tp2 .tabs-header__item.active {
    color: #5d6a7c;
    background: none;
}
.tabs-header--tp2 .tabs-header__item.active::after {
    margin-top: -3px;
}
.tabs-header--tp2 .tabs-header__item.active .sticker--gray {
    background-color: #e2ebef;
}
/* contact list */
.contacts {
    margin-bottom: 20px;
}
.contacts__title {
    color: #475364;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.contacts__list {
    overflow: auto;
    max-height: 148px;
    padding-right: 10px;
    margin-right: -10px;
    position: relative;
}
.contacts__list ::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 10px;
    height: 1px;
    background-color: #eef5f9;
}
.contacts__list::-webkit-scrollbar {
    width: 3px;
}
.contacts__list::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.contacts__list::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid slategrey;
}
.contacts__item {
    border-bottom: 1px solid #eef5f9;
    padding: 9px 0;
}
.contacts-item {
    display: flex;
    justify-content: space-between;
}
.contacts-item__avatar {
    margin: 0 7px 0 0;
    padding: 0;
    width: 28px;
    height: 28px;
    border-radius: 3px;
    background-color: #3b4656;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #738092;
    font-size: 10px;
    font-weight: bold;
}
.contacts-item__avatar img {
    display: block;
}
.contacts-item__preson {
    display: flex;
    align-content: center;
}
.contacts-item__email {
    color: #475364;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 3px;
}
.contacts-item__name {
    color: #8ea4b5;
    font-size: 10px;
}
.contacts-item__button {
    width: 80px;
    padding: 0;
}
/* params */
.param-list {
    font-weight: bold;
    font-size: 12px;
}
.param-list__item {
    margin-bottom: 5px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.param-list__item .icon, .param-list__item svg {
    margin-right: 5px;
    fill: #475364;
}
.param-list__item .icon:last-child, .param-list__item svg:last-child {
    margin-right: 0;
}
.param-list__item_na {
    opacity: 0.5;
}
.param-list__item:last-child {
    margin-bottom: 0;
}
.param-item {
    display: flex;
    align-items: center;
}
.param-item__fixed {
    width: 30%;
    min-width: 30%;
    max-width: 30%;
}
.param-item__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    min-width: 36px;
    max-width: 36px;
    height: 36px;
    border-radius: 3px;
    background-color: #e8eff1;
    margin-right: 10px;
}
.param-item__icon--green {
    background-color: #b2d170;
}
.param-item__icon--orange {
    background-color: #ff9433;
}
.param-item__icon--red {
    background-color: #ff5943;
}
.param-item__icon--transparent {
    background-color: transparent;
}
.param-item__button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    margin-right: 10px;
}
.param-item__ttl {
    color: #475364;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 2px;
}
.param-item__ttl a {
    color: inherit;
}
.param-item__val {
    color: #8ea4b5;
    font-size: 10px;
    line-height: 1.5;
}
.param-item-icon {
    width: auto;
    min-width: 36px;
}
.param-item-icon__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
}
.param-item-icon__text {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 10px;
    min-width: 100px;
    height: 36px;
    padding: 0 10px;
    border-left: 1px solid rgba(0, 0, 0, 0.06);
}
.button-setting {
    display: inline-block;
    border: none;
    cursor: pointer;
    width: 16px;
    height: 16px;
    background: url(/local/templates/cabinet/img/modals/icon-settings.svg) center no-repeat;
    background-size: 16px;
    transition: 0.3s;
}
.button-setting:hover {
    transform: scale(1.2);
}
/* Slick gallery slider */
.slick-current img {
    opacity: 1;
}
.slick-current .slider-thumb__wrap::after {
    opacity: 1;
}
.slick-arrow {
    position: absolute;
    z-index: 10;
    border: none;
    top: 50%;
    margin-top: -19px;
    width: 36px;
    height: 36px;
    overflow: hidden;
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.3);
    background-repeat: no-repeat;
    background-position: center;
    text-indent: 1000px;
    transition: 0.3s;
    cursor: pointer;
}
.slick-arrow:hover {
    background-color: rgba(0, 0, 0, 0.6);
}
.slick-prev {
    left: 20px;
    background-image: url(/local/templates/cabinet/img/modals/chevron-left.svg);
}
.slick-next {
    right: 20px;
    background-image: url(/local/templates/cabinet/img/modals/chevron-right.svg);
}
/* popup */
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    border-radius: 4px;
    background: #fff;
    font-family: Roboto;
}
.popup.fancybox-content {
    height: auto;
    overflow: visible;
    visibility: visible;
}
.popup__title {
    height: 44px;
    padding: 0 20px;
    margin: -20px -20px 15px;
    line-height: 44px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px 4px 0 0;
    background-color: #e1edf4;
}
.fancybox-close-small {
    color: #475364;
}
.fancybox-close-small svg {
    opacity: 1;
}
/* icons */
.icon-dg {
    display: flex;
    align-items: center;
}
.icon-dg::before {
    content: '';
    width: 14px;
    height: 14px;
    margin-right: 4px;
    text-align: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    border: none;
}
.icon-dg-rub::before {
    background-image: url(/local/templates/cabinet/img/modals/icon-dg-rub.svg);
}
.icon-dg-geo::before {
    background-image: url(/local/templates/cabinet/img/modals/icon-dg-geo.svg);
}
.icon-dg-recycle::before {
    background-image: url(/local/templates/cabinet/img/modals/icon-dg-recycle.svg);
}
.icon-dg-trash::before {
    background-image: url(/local/templates/cabinet/img/modals/icon-dg-trash.svg);
}
.icon-dg-trash-big::before {
    background-image: url(/local/templates/cabinet/img/modals/icon-dg-trash-big.svg);
}
.icon-dg-build::before {
    background-image: url(/local/templates/cabinet/img/modals/icon-dg-build.svg);
}
.icon-dg-calend-from::before {
    background-image: url(/local/templates/cabinet/img/modals/icon-dg-calend-from.svg);
}
.icon-dg-calend-to::before {
    background-image: url(/local/templates/cabinet/img/modals/icon-dg-calend-to.svg);
}
.icon-dg-routes::before {
    background-image: url(/local/templates/cabinet/img/modals/icon-dg-routes.svg);
}
.icon-dg-calend::before {
    background-image: url(/local/templates/cabinet/img/modals/icon-dg-calend.svg);
}
.icon-dg-tile::before {
    background-image: url(/local/templates/cabinet/img/modals/icon-dg-tile.svg);
}
.icon-dg-loc::before {
    background-image: url(/local/templates/cabinet/img/modals/icon-dg-loc.svg);
}
.icon-dg-loc-circle::before {
    background-image: url(/local/templates/cabinet/img/modals/icon-dg-loc-circle.svg);
}
.icon-red-trash::before {
    background-image: url(/local/templates/cabinet/img/modals/icon-red-trash.svg);
}
.icon-dg-pencil::before {
    background-image: url(/local/templates/cabinet/img/modals/icon-dg-pencil.svg);
}
.icon-dg-rfid::before {
    background-image: url(/local/templates/cabinet/img/modals/icon-dg-rfid.svg);
}
.icon-dg-cross::before {
    background-image: url(/local/templates/cabinet/img/modals/icon-dg-cross.svg);
}
.icon-dg-container {
    background-image: url(/local/templates/cabinet/img/modals/icon-dg-container.svg);
}
.icon-dg-container-2 {
    background-image: url(/local/templates/cabinet/img/modals/icon-dg-container-2.svg);
}
.r-fix-side {
    position: fixed;
    right: -390px;
    top: 0;
    bottom: 0;
    width: 340px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    background-color: #fff;
    z-index: 10001;
    transition: all 0.45s ease-in-out;
}
.r-fix-side.active {
    right: 0;
}
.r-fix-side .hint-text {
    padding-top: 4px;
    color: #475364;
}
.r-fix-side .b-map-popover__controls {
    left: -40px;
}
.r-fix-side .title-h3 {
    margin-bottom: 0;
    line-height: 1;
}
.r-fix-side__wrap {
    padding: 20px 25px;
    overflow: auto;
    max-height: 100%;
}
.r-fix-side__sepor {
    height: 1px;
    margin: 20px -25px;
    background: #f7fbfc;
}
.page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 998;
    background-color: rgba(41, 49, 60, 0);
    display: none;
    transition: all 0.45s ease-in-out;
}
.page-overlay.active {
    background-color: rgba(41, 49, 60, 0.3);
}
.title-toggle {
    padding-left: 14px;
    transition: 0.3s;
    position: relative;
    cursor: pointer;
}
.title-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 8px;
    height: 5px;
    margin-top: -3px;
    background: url(/local/templates/cabinet/img/modals/arrow-down-lgray.svg) left center no-repeat;
}
.title-toggle--r {
    padding-left: 0;
}
.title-toggle--r::after {
    left: auto;
    right: 0;
}
.title-toggle.open::after {
    transform: rotate(180deg);
}
.button--hover-gray:hover {
    color: #3b4656 !important;
    background-color: #f7fbfc !important;
}
.filter-group-title {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    line-height: 18px;
    margin-bottom: 5px;
}
.filter-group-title__reset {
    color: #8EA4B5;
    font-size: 10px;
    line-height: 10px;
    text-transform: none;
    font-weight: normal;
}
.filter-group-title__reset:hover {
    color: #386bf2;
}
.i-alert {
    margin: 0;
    background-color: #fff;
    border-radius: 3px;
    padding: 20px 70px;
    position: relative;
    font-size: 11px;
    color: #8ea4b5;
    line-height: 1.27;
    border: none;
}
.i-alert .title {
    font-size: 14px;
    font-weight: bold;
    color: #475364;
    line-height: 1;
    margin-bottom: 4px;
}
.i-alert .icon, .i-alert svg {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.b-filter-selected-fields {
    border-top: 1px solid #F7FBFC;
    padding: 14px 20px 9px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.b-filter-selected-fields__field, .b-filter-selected-fields a.b-filter-selected-fields__field {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
    font-size: 10px;
    line-height: 1;
    color: #8ea4b5;
    border: 1px solid #DBE4E7;
    border-radius: 3px;
    text-decoration: none !important;
    cursor: pointer;
    background-color: #ffffff;
    transition: all 0.25s ease-in-out;
    margin-right: 5px;
    margin-bottom: 5px;
}
.b-filter-selected-fields__field svg, .b-filter-selected-fields a.b-filter-selected-fields__field svg {
    margin-left: 4px;
    fill: #8EA4B5;
    transition: all 0.25s ease-in-out;
}
.b-filter-selected-fields__field:hover, .b-filter-selected-fields a.b-filter-selected-fields__field:hover {
    background-color: #dbe4e7;
    color: #475364;
}
.b-filter-selected-fields__field:hover svg, .b-filter-selected-fields a.b-filter-selected-fields__field:hover svg {
    fill: #475364;
}
.b-filter-selected-fields__field span, .b-filter-selected-fields a.b-filter-selected-fields__field span {
    color: #475364;
    display: inline-flex;
    align-items: center;
    margin-left: 0.2em;
}
.form-group_inner {
    margin-bottom: 7px;
    padding-top: 8px;
}
.form-group_inner:last-child {
    margin-bottom: 0;
}
.small-label {
    margin-bottom: 7px;
    font-size: 10px;
    color: #475364;
    text-align: left;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1;
}
.runner-range {
    padding-top: 5px;
    position: relative;
}
.runner-range__wrap {
    padding: 20px 5px 0;
}
.runner-range__info {
    margin: 0 -5px;
    display: flex;
}
.runner-val {
    width: calc(50% - 10px);
    height: 34px;
    border-radius: 3px;
    background-color: #f4f9fb;
    margin: 0 5px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    font-size: 12px;
}
.runner-val input {
    width: auto;
    height: 34px;
    border: none;
    background: none;
    color: #475364;
    font-size: 12px;
    margin: 0 3px;
}
.runner-val span {
    color: #8a95a5;
}
.runner {
    height: 5px !important;
    border: none;
    background: #f4f9fb;
    border-radius: 3px;
    margin-bottom: 11px;
}
.runner .ui-slider-range {
    height: 5px;
    border: none;
    background: #386bf2;
    border-radius: 0;
}
.runner .ui-slider-handle {
    cursor: pointer;
    top: -5px !important;
    width: 17px !important;
    height: 17px !important;
    border: 1px solid #d9d9d9 !important;
    border-radius: 50% !important;
    background: #fff !important;
}
.runner .ui-slider-handle::after {
    content: '';
    position: absolute;
    margin: 4px 0 0 4px !important;
    width: 7px;
    height: 7px;
    background-color: #386bf2;
    border-radius: 50%;
}
.runner * {
    outline: none !important;
    color: transparent !important;
}
.fast-search-form {
    position: relative;
    height: 36px;
    font-size: 12px;
    padding: 0 10px;
    border-radius: 3px;
    background-color: #f4f9fb;
    margin-bottom: 15px;
}
.fast-search-form__text {
    width: 100%;
    height: 36px;
    font-size: 12px;
    border: none;
    background: none;
}
.fast-search-form__button {
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -7px;
    width: 14px;
    height: 14px;
    border: none;
    background: url(/local/templates/cabinet/img/modals/icon-gray-search.svg) center no-repeat;
    cursor: pointer;
}
.toggle-btn {
    display: inline-block;
    width: 24px;
    min-width: 24px;
    height: 24px;
    border-radius: 50%;
    background: url(/local/templates/cabinet/img/modals/arrow-down.svg) #f4f9fb center no-repeat;
    cursor: pointer;
}
.toggle-btn.open {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.drop-box {
    position: relative;
    text-align: left;
    border-radius: 3px;
    border: 1px solid #dce5ea;
    background-color: #fff;
    padding: 0 15px;
}
.drop-box__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 34px;
    padding-right: 20px;
    font-size: 11px;
    background: url(/local/templates/cabinet/img/modals/arrow-down.svg) right center no-repeat;
    cursor: pointer;
}
.drop-box__lbl {
    color: #8ea4b5;
    margin-right: 5px;
}
.drop-box__dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 5px;
    border-radius: 3px;
    border: 1px solid #dce5ea;
    background-color: #fff;
    font-size: 11px;
    z-index: 2;
}
.drop-box__dropdown li {
    display: block;
    padding: 5px 15px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
}
.drop-box__dropdown li:hover {
    color: #386bf2;
}
.drop-box__dropdown li.active {
    font-weight: bold;
}
.icon-ask, .icon-desc {
    position: relative;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.icon-ask::after, .icon-desc::after {
    content: '';
    width: 10px;
    height: 8px;
    margin-left: 5px;
}
.icon-ask::after {
    background: url(/local/templates/cabinet/img/modals/sort-asc.svg) right center no-repeat;
}
.icon-desc::after {
    background: url(/local/templates/cabinet/img/modals/sort-desc.svg) right center no-repeat;
}
div.modern-page-navigation a.b-pagination__loader {
    margin-top: 0 !important;
}
.data-filter__wrap {
    padding: 15px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    border-radius: 3px;
}
.data-filter__wrap_inner {
    padding: 0 !important;
}
.client-prop {
    display: none;
    padding-top: 5px;
}
.time-picker {
    padding: 4px 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.time-picker .form-group {
    width: 44%;
    min-width: 44%;
    max-width: 44%;
    margin: 0;
    position: relative;
}
.fast-search__list {
    max-height: 195px;
    overflow: auto;
}
#contract-to-date {
    opacity: 1;
}
.b-info-line .js-date {
    background-image: url("data:image/svg+xml;utf8,<svg width='15' height='14' viewBox='0 0 15 14' xmlns='http://www.w3.org/2000/svg'><path d='M0 0v4h15V0H0zm2 1h2v2H2V1zm9 0h2v2h-2V1zM0 5v9h15V5H0zm2 2h2v2H2V7zm3 0h2v2H5V7zm3 0h2v2H8V7zm3 0h2v2h-2V7zm-9 3h2v2H2v-2zm3 0h2v2H5v-2zm3 0h2v2H8v-2z' fill='#8EA4B5' fill-rule='nonzero'/></svg>");
    background-repeat: no-repeat;
    background-position: calc(100% - 12px) 50%;
}
.b-map-popover .js-date {
    background-image: url("data:image/svg+xml;utf8,<svg width='15' height='14' viewBox='0 0 15 14' xmlns='http://www.w3.org/2000/svg'><path d='M0 0v4h15V0H0zm2 1h2v2H2V1zm9 0h2v2h-2V1zM0 5v9h15V5H0zm2 2h2v2H2V7zm3 0h2v2H5V7zm3 0h2v2H8V7zm3 0h2v2h-2V7zm-9 3h2v2H2v-2zm3 0h2v2H5v-2zm3 0h2v2H8v-2z' fill='#8EA4B5' fill-rule='nonzero'/></svg>");
    background-repeat: no-repeat;
    background-position: calc(100% - 12px) 50%;
}

.b-binman-num__button:hover {
    background-color: #386bf2;
}
.b-binman-num__button:first-child {
    border-bottom: 1px solid #DCE5EA;
    border-top-right-radius: 3px;
}
a:hover {
    color: var(--hover-color);
    text-decoration: underline;
}
a:active, a:hover {
    outline-width: 0;
}
.b-binman-num__button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 18px;
    transition: all .25s ease-in-out;
}
.icon-arrow_top {
    width: 8px;
    height: 5px;
}
.icon-arrow_down {
    width: 8px;
    height: 5px;
}
textarea, button, input[type=text] {
    /* -webkit-appearance: none; */
    outline: none;
}


.b-map-popover .twitter-typeahead .typeahead-row:hover {
    background: #F8F8F8; }

.b-header .form-search input {
    background-image: none !important; }

.twitter-typeahead .typeahead-row:hover {
    background: #F8F8F8; }

.b-map-popover .twitter-typeahead {
    width: 100%; }

.twitter-typeahead .tt-menu {
    border: 1px solid #DCE5EA;
    width: 100%;
    margin-top: -1px;
    max-height: 250px;
    overflow: auto;
    background-color: #f4f9fb;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px; }
.twitter-typeahead .tt-menu .tt-dataset {
    padding: 0; }
.twitter-typeahead .tt-menu .empty-message {
    padding: 10px 12px; }
.twitter-typeahead .tt-menu .tt-suggestion {
    padding: 10px 12px;
    border-bottom: none;
    transition: all 0.2s ease;
    font-size: 12px;
    line-height: 14px;
    color: var(--body-color);
    font-weight: 400;
    border-bottom: 1px solid #DCE5EA; }
.twitter-typeahead .tt-menu .tt-suggestion:last-child {
    border-bottom: none; }
.twitter-typeahead .tt-menu .tt-suggestion:hover {
    background-color: #DCE5EA; }
.twitter-typeahead .tt-menu .tt-suggestion .tt-highlight {
    display: inline-flex;
    font-weight: bold;
    background-color: #dce5ea; }

.b-header .tt-menu {
    background: #3A4453;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    margin-top: -5px;
    max-height: 450px;
    border: none; }
.b-header .tt-menu .tt-suggestion {
    border-bottom: 1px solid #29313C; }
.b-header .tt-menu .tt-suggestion .tt-highlight {
    display: inline-flex;
    font-weight: bold;
    background-color: transparent; }

.twitter-typeahead .small {
    font-size: 10px;
    color: #8ea4b5;
    line-height: 1;
    padding-top: 4px; }
span.twitter-typeahead {
    width: 100%;
}
.data-row {
    font-size: 12px;
    margin-bottom: 2px;
    padding: 14px 20px;
    background: #fff;
    border-radius: 3px; }

.data-header {
    text-transform: uppercase;
    font-size: 11px;
    padding: 14px 20px;
    font-weight: bold;
    line-height: 1.1;
    border-radius: 3px; }
.tt-suggestion.tt-selectable {
    cursor: pointer;
}
.ceheck-list {
    padding-top: 6px;
}
.ceheck-list__item {
    margin-bottom: 10px;
}
.form-checkbox {
    display: none;
}
[type=checkbox], [type=radio] {
    box-sizing: border-box;
    padding: 0;
}
.form-checkbox + label {
    display: block;
    cursor: pointer;
    position: relative;
    padding-left: 24px;
    min-height: 16px;
    line-height: 16px;
    font-size: 12px;
    color: #475364;
    transition: all 0.2s ease;
    margin-bottom: 0;
}
.form-checkbox + label:before {
    position: absolute;
    background-color: #EAF1F6;
    border: 1px solid #DCE5EA;
    border-radius: 3px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    content: '';
    transition: all .2s ease;
    background-size: 0 0;
    background-position: 150% 50%;
}
.form-checkbox:checked + label:before {
    background-image: url(../img/check.svg);
    background-color: #386bf2;
    border-color: #386bf2;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: auto;
}
/**, ::after, ::before {*/
/*    box-sizing: inherit;*/
/*}*/

.form-checkbox:checked + label:before {
    background-image: url(../img/check.svg);
    background-color: #386bf2;
    border-color: #386bf2;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: auto;
}
.form-checkbox_radio + label:before, .form-checkbox[type="radio"] + label:before {
    border-radius: 50%;
    transition: background-color .2s ease-in-out;
}

.form-checkbox + label:before {
    position: absolute;
    background-color: #EAF1F6;
    border: 1px solid #DCE5EA;
    border-radius: 3px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    content: '';
    transition: all .2s ease;
    background-size: 0 0;
    background-position: 150% 50%;
}

.calendar-form {
    position: relative;
    transition: all 0.3s ease-in-out;
}
.calendar-form::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 18px;
    z-index: 10;
    width: 14px;
    height: 15px;
    margin-top: -7px;
    background: url(/local/templates/cabinet/img/modals/icon-blue-calend.svg) center no-repeat;
}
