@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,400;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,400;1,900&display=swap");
.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
    filter: blur(3px)
}

.remodal-overlay {
    background: rgba(43, 46, 56, 0.9)
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards
}

.remodal-overlay.remodal-is-opening {
    -webkit-animation-name: remodal-overlay-opening-keyframes;
    animation-name: remodal-overlay-opening-keyframes
}

.remodal-overlay.remodal-is-closing {
    -webkit-animation-name: remodal-overlay-closing-keyframes;
    animation-name: remodal-overlay-closing-keyframes
}

.remodal-wrapper {
    padding: 10px 10px 0
}

.remodal {
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 10px;
    padding: 35px;
    transform: translate3d(0, 0, 0);
    color: #2b2e38;
    background: #fff
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards
}

.remodal.remodal-is-opening {
    -webkit-animation-name: remodal-opening-keyframes;
    animation-name: remodal-opening-keyframes
}

.remodal.remodal-is-closing {
    -webkit-animation-name: remodal-closing-keyframes;
    animation-name: remodal-closing-keyframes
}

.remodal,
.remodal-wrapper:after {
    vertical-align: middle
}

.remodal-close {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    overflow: visible;
    width: 35px;
    height: 35px;
    margin: 0;
    padding: 0;
    cursor: pointer;
    transition: color 0.2s;
    text-decoration: none;
    color: #95979c;
    border: 0;
    outline: 0;
    background: transparent
}

.remodal-close:hover,
.remodal-close:focus {
    color: #2b2e38
}

.remodal-close:before {
    font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
    font-size: 25px;
    line-height: 35px;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 35px;
    content: "\00d7";
    text-align: center
}

.remodal-confirm,
.remodal-cancel {
    font: inherit;
    display: inline-block;
    overflow: visible;
    min-width: 110px;
    margin: 0;
    padding: 12px 0;
    cursor: pointer;
    transition: background 0.2s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    border: 0;
    outline: 0
}

.remodal-confirm {
    color: #fff;
    background: #81c784
}

.remodal-confirm:hover,
.remodal-confirm:focus {
    background: #66bb6a
}

.remodal-cancel {
    color: #fff;
    background: #e57373
}

.remodal-cancel:hover,
.remodal-cancel:focus {
    background: #ef5350
}

.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
    padding: 0;
    border: 0
}

@-webkit-keyframes remodal-opening-keyframes {
    from {
        transform: scale(1.05);
        opacity: 0
    }
    to {
        transform: none;
        opacity: 1;
        filter: blur(0)
    }
}

@keyframes remodal-opening-keyframes {
    from {
        transform: scale(1.05);
        opacity: 0
    }
    to {
        transform: none;
        opacity: 1;
        filter: blur(0)
    }
}

@-webkit-keyframes remodal-closing-keyframes {
    from {
        transform: scale(1);
        opacity: 1
    }
    to {
        transform: scale(0.95);
        opacity: 0;
        filter: blur(0)
    }
}

@keyframes remodal-closing-keyframes {
    from {
        transform: scale(1);
        opacity: 1
    }
    to {
        transform: scale(0.95);
        opacity: 0;
        filter: blur(0)
    }
}

@-webkit-keyframes remodal-overlay-opening-keyframes {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes remodal-overlay-opening-keyframes {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@-webkit-keyframes remodal-overlay-closing-keyframes {
    from {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

@keyframes remodal-overlay-closing-keyframes {
    from {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

@media only screen and (min-width: 641px) {
    .remodal {
        max-width: 340px
    }
}

.lt-ie9 .remodal-overlay {
    background: #2b2e38
}

.lt-ie9 .remodal {
    width: 340px
}

html.remodal-is-locked {
    overflow: hidden;
    touch-action: none
}

.remodal,
[data-remodal-id] {
    display: none
}

.remodal-overlay {
    position: fixed;
    z-index: 9999;
    top: -5000px;
    right: -5000px;
    bottom: -5000px;
    left: -5000px;
    display: none
}

.remodal-wrapper {
    position: fixed;
    z-index: 10000;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    overflow: auto;
    text-align: center;
    -webkit-overflow-scrolling: touch
}

.remodal-wrapper:after {
    display: inline-block;
    height: 100%;
    margin-left: -0.05em;
    content: ""
}

.remodal-overlay,
.remodal-wrapper {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.remodal {
    position: relative;
    outline: none;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%
}

.remodal-is-initialized {
    display: inline-block
}

.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: fixed;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: transparent;
    outline: none
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 1
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: .25
}

.slick-prev:before,
.slick-next:before {
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.slick-prev {
    left: -25px
}

[dir='rtl'] .slick-prev {
    right: -25px;
    left: auto
}

.slick-prev:before {
    content: '←'
}

[dir='rtl'] .slick-prev:before {
    content: '→'
}

.slick-next {
    right: -25px
}

[dir='rtl'] .slick-next {
    right: auto;
    left: -25px
}

.slick-next:before {
    content: '→'
}

[dir='rtl'] .slick-next:before {
    content: '←'
}

.slick-dotted.slick-slider {
    margin-bottom: 30px
}

.slick-dots {
    position: absolute;
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1
}

.slick-dots li button:before {
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .25;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.slick-dots li.slick-active button:before {
    opacity: .75;
    color: black
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0
}

.slick-list:focus {
    outline: none
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    transform: translate3d(0, 0, 0)
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
    display: flex
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: ''
}

.slick-track:after {
    clear: both
}

.slick-loading .slick-track {
    visibility: hidden
}

.slick-slide {
    display: none;
    float: left;
    min-height: 1px
}

.slick-slide>div,
.slick-slide>div>div {
    height: 100%
}

[dir='rtl'] .slick-slide {
    float: right
}

.slick-slide img {
    display: block
}

.slick-slide.slick-loading img {
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-loading .slick-slide {
    visibility: hidden
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent
}

.slick-arrow.slick-hidden {
    display: none
}

*,
*::before,
*::after,
*:focus {
    box-sizing: border-box;
    outline: none
}

body {
    margin: 0px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 16px;
    min-height: 100vh;
    height: auto
}

body::-webkit-scrollbar {
    width: 0
}

.main-nav::-webkit-scrollbar {
    width: 0;
}

.wrapper {
    overflow: hidden;
    min-height: 100vh;
    height: 100%;
    background: url(../img/bg1.jpg) no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    min-width: 960px;
    padding-top: 60px
}

a {
    color: #67779A
}

.rouble {
    font-family: 'rouble'
}

input,
textarea {
    font-family: 'Roboto', sans-serif
}

img {
    max-width: 100%
}

.-flex {
    display: flex
}

.-center {
    align-items: center
}

.-start {
    align-items: flex-start
}

.-end {
    align-items: flex-end
}

.-wrap {
    flex-wrap: wrap
}

.-justify-between {
    justify-content: space-between
}

.pt-0 {
    padding: 0px !important
}

.mt-12 {
    margin-top: 12px !important
}

.mt-20 {
    margin-top: 20px !important
}

.no-padding {
    padding: 0px !important
}

.btn {
    display: table;
    padding: 8px 24px;
    background: #9FBAF4;
    border-radius: 5px;
    font-size: 12px;
    color: #fff;
    text-decoration: none;
    transition: all .2s;
    white-space: nowrap;
    cursor: pointer
}

@media (max-width: 1100px) {
    .btn {
        padding: 10px 14px
    }
}

.btn:hover {
    background: #6091F8
}

.btn:active {
    background: #4C74C7
}

.btn.btn-pink {
    background: #C185AD;
    padding: 10px 24px;
    border-radius: 3px;
    font-size: 14px;
    line-height: 16px;
    padding: 10px 14px
}

@media (max-width: 1100px) {
    .btn.btn-pink {
        padding: 10px 14px
    }
}

.btn.btn-pink:hover {
    background: #ad85a0
}

.btn.btn-blue {
    background: #6091F8;
    color: #fff
}

@media (max-width: 1100px) {
    .btn.btn-blue {
        padding: 10px 14px
    }
}

.btn.btn-blue:hover {
    background: #9FBAF4
}

.btn.btn-fillblue {
    background: #6091F8;
    padding: 10px 24px;
    border-radius: 3px;
    font-size: 14px;
    line-height: 16px;
    color: #fff
}

@media (max-width: 1100px) {
    .btn.btn-fillblue {
        padding: 10px 14px
    }
}

.btn.btn-fillblue:hover {
    background: #9FBAF4
}

.btn.btn-red {
    background: #FF0000;
    padding: 10px 24px;
    border-radius: 3px;
    font-size: 14px;
    line-height: 16px
}

@media (max-width: 1100px) {
    .btn.btn-red {
        padding: 10px 14px
    }
}

.btn.btn-red:hover {
    background: #e73434
}

input,
button,
textarea,
label {
    outline: none;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    border: none
}

input:focus,
button:focus,
textarea:focus,
label:focus {
    outline: none;
    -webkit-appearance: none
}

input:active,
button:active,
textarea:active,
label:active {
    outline: none;
    -webkit-appearance: none
}

input:hover,
button:hover,
textarea:hover,
label:hover {
    outline: none;
    -webkit-appearance: none
}

input {
    background: #FFFFFF;
    border: 1px solid #DEE4F2;
    height: 30px;
    border-radius: 3px;
    padding: 0px 10px
}

.header {
    padding: 19px 40px 13px 40px;
    background: #fff;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    border-bottom: 1px solid #f2f2f2;
    z-index: 12
}

@media (max-width: 1070px) {
    .header {
        padding: 19px 10px 13px 20px
    }
}

.header__name {
    margin-right: 26px;
    color: #08235C;
    display: inline-block
}

.main-nav {
    width: 240px;
    background: #e9f0ff;
    min-height: calc(100vh - 64px);
    height: auto;
    top: 64px;
    left: 0px;
    font-size: 16px;
    line-height: 19px;
    color: #67779A;
    position: fixed;
    left: 0px;
    z-index: 9
}

@media (max-width: 1070px) {
    .main-nav {
        width: 210px
    }
}

.main-nav ul {
    margin: 0px;
    padding: 0px;
    padding-top: 40px;
    padding-right: 40px
}

@media (max-width: 1070px) {
    .main-nav ul {
        padding-right: 10px;
        padding-top: 20px
    }
}

.main-nav ul li {
    display: block;
    margin-bottom: 5px
}

.main-nav ul li:hover {
    background: #B1CAFF;
    border-radius: 0px 5px 5px 0px
}

.main-nav ul li.active {
    background: #6091F8;
    border-radius: 0px 5px 5px 0px
}

.main-nav ul li.active a {
    color: #fff
}

.main-nav ul li a {
    text-decoration: none;
    height: 63px;
    display: flex;
    align-items: center;
    padding-left: 40px
}

@media (max-width: 1070px) {
    .main-nav ul li a {
        padding-left: 25px
    }
}

.main-nav span {
    width: 30px;
    margin-right: 25px
}

.nav-tasks span {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url("data:image/svg+xml,%3Csvg width='21' height='24' viewBox='0 0 21 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.608076 23.3333C0.28787 23.1549 0.20166 22.8744 0.20166 22.5047C0.207818 15.2512 0.207818 7.99768 0.207818 0.744155C0.207818 0.476451 0.238607 0.234242 0.48492 0.100389C0.589603 0.043024 0.718917 0.00478044 0.835915 0.00478044C6.341 -0.00159348 11.8399 -0.00159348 17.345 0.00478044C17.733 0.00478044 17.9608 0.234242 17.967 0.635799C17.9731 2.03806 17.9731 3.4467 17.967 4.84896C17.967 5.2314 17.7391 5.47998 17.4128 5.47361C17.0926 5.47361 16.8647 5.21227 16.8586 4.83621C16.8524 3.70166 16.8586 2.57347 16.8586 1.43891C16.8586 1.34968 16.8586 1.26044 16.8586 1.15209C11.6737 1.15209 6.50726 1.15209 1.32238 1.15209C1.32238 8.15703 1.32238 15.1556 1.32238 22.1669C6.49495 22.1669 11.6614 22.1669 16.8586 22.1669C16.8586 22.0777 16.8586 21.9884 16.8586 21.8992C16.8586 19.7703 16.8586 17.6478 16.8586 15.5189C16.8586 15.0919 17.0802 14.8305 17.4312 14.8369C17.696 14.8433 17.9239 15.0536 17.9546 15.3277C17.967 15.4233 17.967 15.5253 17.967 15.6209C17.967 17.9219 17.9608 20.2229 17.9731 22.5238C17.9731 22.8872 17.8869 23.1612 17.5605 23.3206C11.9077 23.3333 6.26095 23.3333 0.608076 23.3333Z' fill='%2367779A'/%3E%3Cpath d='M9.27823 18.368C8.87797 18.368 8.61934 18.0748 8.68092 17.6797C8.82871 16.7363 8.97034 15.793 9.1366 14.8497C9.17355 14.6584 9.28439 14.4481 9.41986 14.3079C11.8891 11.7392 14.3646 9.17687 16.84 6.62094C17.191 6.25762 17.4804 6.25762 17.8376 6.62731C18.5642 7.37943 19.2908 8.13155 20.0174 8.88367C20.3869 9.26611 20.3869 9.55931 20.0236 9.93537C17.5543 12.4913 15.085 15.0472 12.6158 17.6096C12.4126 17.8199 12.1786 17.89 11.9138 17.9346C11.0825 18.0685 10.2512 18.2151 9.41986 18.3617C9.35828 18.3617 9.30902 18.368 9.27823 18.368ZM16.7969 11.6946C16.2242 11.1018 15.6947 10.5473 15.1405 9.96724C15.0974 10.0182 15.0481 10.0947 14.9865 10.1585C13.5148 11.6818 12.0431 13.2116 10.5652 14.7285C10.3251 14.9771 10.1711 15.2257 10.1342 15.5827C10.0787 16.0862 9.98638 16.577 9.90633 17.106C10.0049 17.0933 10.0787 17.0869 10.1465 17.0741C10.6391 16.9913 11.1317 16.9148 11.6182 16.8192C11.7537 16.7937 11.9015 16.7236 11.9938 16.6216C13.5517 15.0217 15.0974 13.4155 16.6491 11.8093C16.6984 11.7519 16.7661 11.7137 16.7969 11.6946ZM17.3511 7.78736C16.9078 8.23991 16.4582 8.69883 16.0395 9.13226C16.5568 9.67404 17.0925 10.2222 17.5974 10.7512C18.0285 10.3051 18.4718 9.84613 18.8967 9.40633C18.3856 8.87093 17.8561 8.3164 17.3511 7.78736Z' fill='%2367779A'/%3E%3Cpath d='M4.57994 5.45449C5.2881 4.72149 5.9593 4.01398 6.64897 3.31922C6.76597 3.20449 6.94455 3.11526 7.10465 3.08976C7.32018 3.05789 7.50491 3.179 7.59728 3.39571C7.69581 3.63155 7.67117 3.86101 7.4926 4.05223C7.2155 4.3518 6.92608 4.645 6.63666 4.93821C6.10709 5.48636 5.57751 6.03452 5.04794 6.58268C4.73389 6.90775 4.43216 6.90775 4.11195 6.58268C3.74248 6.20025 3.37301 5.82418 3.0097 5.44175C2.75107 5.16767 2.7326 4.80435 2.96044 4.57489C3.18212 4.3518 3.53311 4.37092 3.78559 4.63226C4.05653 4.88721 4.309 5.16129 4.57994 5.45449Z' fill='%2367779A'/%3E%3Cpath d='M4.57983 12.2555C5.28182 11.5288 5.95302 10.8277 6.63038 10.1329C6.71659 10.0437 6.82128 9.95446 6.93212 9.91622C7.17843 9.82061 7.43706 9.92259 7.56637 10.1393C7.69569 10.356 7.67721 10.6365 7.51095 10.8341C7.46785 10.8851 7.41858 10.9297 7.37548 10.9807C6.59959 11.7838 5.82371 12.5933 5.04167 13.3964C4.74609 13.7023 4.4382 13.7023 4.14263 13.3964C3.76084 13.0076 3.39137 12.6188 3.02191 12.23C2.76328 11.9559 2.7448 11.5926 2.97264 11.3631C3.19432 11.14 3.53916 11.1591 3.79779 11.4205C4.05026 11.6882 4.30273 11.9623 4.57983 12.2555Z' fill='%2367779A'/%3E%3Cpath d='M4.62287 19.0819C4.67829 18.9927 4.71523 18.9098 4.77065 18.8525C5.39875 18.2023 6.02069 17.5522 6.65495 16.902C6.91973 16.628 7.27073 16.6025 7.49241 16.8383C7.72025 17.0741 7.70178 17.4311 7.43083 17.7052C6.63647 18.5274 5.84212 19.3496 5.04776 20.1719C4.72755 20.497 4.43197 20.497 4.11177 20.1719C3.7423 19.7958 3.37283 19.4134 3.00952 19.0309C2.75705 18.7632 2.73242 18.4127 2.9541 18.1768C3.18194 17.9346 3.52677 17.9537 3.79156 18.2278C4.0625 18.4892 4.31498 18.7569 4.62287 19.0819Z' fill='%2367779A'/%3E%3C/svg%3E%0A") no-repeat center
}

.nav-tasks.active span {
    background: url("data:image/svg+xml,%3Csvg width='21' height='24' viewBox='0 0 21 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.608076 23.3333C0.28787 23.1549 0.20166 22.8744 0.20166 22.5047C0.207818 15.2512 0.207818 7.99768 0.207818 0.744155C0.207818 0.476451 0.238607 0.234242 0.48492 0.100389C0.589603 0.043024 0.718917 0.00478044 0.835915 0.00478044C6.341 -0.00159348 11.8399 -0.00159348 17.345 0.00478044C17.733 0.00478044 17.9608 0.234242 17.967 0.635799C17.9731 2.03806 17.9731 3.4467 17.967 4.84896C17.967 5.2314 17.7391 5.47998 17.4128 5.47361C17.0926 5.47361 16.8647 5.21227 16.8586 4.83621C16.8524 3.70166 16.8586 2.57347 16.8586 1.43891C16.8586 1.34968 16.8586 1.26044 16.8586 1.15209C11.6737 1.15209 6.50726 1.15209 1.32238 1.15209C1.32238 8.15703 1.32238 15.1556 1.32238 22.1669C6.49495 22.1669 11.6614 22.1669 16.8586 22.1669C16.8586 22.0777 16.8586 21.9884 16.8586 21.8992C16.8586 19.7703 16.8586 17.6478 16.8586 15.5189C16.8586 15.0919 17.0802 14.8305 17.4312 14.8369C17.696 14.8433 17.9239 15.0536 17.9546 15.3277C17.967 15.4233 17.967 15.5253 17.967 15.6209C17.967 17.9219 17.9608 20.2229 17.9731 22.5238C17.9731 22.8872 17.8869 23.1612 17.5605 23.3206C11.9077 23.3333 6.26095 23.3333 0.608076 23.3333Z' fill='white'/%3E%3Cpath d='M9.27823 18.368C8.87797 18.368 8.61934 18.0748 8.68092 17.6797C8.82871 16.7363 8.97034 15.793 9.1366 14.8497C9.17355 14.6584 9.28439 14.4481 9.41986 14.3079C11.8891 11.7392 14.3646 9.17687 16.84 6.62094C17.191 6.25762 17.4804 6.25762 17.8376 6.62731C18.5642 7.37943 19.2908 8.13155 20.0174 8.88367C20.3869 9.26611 20.3869 9.55931 20.0236 9.93537C17.5543 12.4913 15.085 15.0472 12.6158 17.6096C12.4126 17.8199 12.1786 17.89 11.9138 17.9346C11.0825 18.0685 10.2512 18.2151 9.41986 18.3617C9.35828 18.3617 9.30902 18.368 9.27823 18.368ZM16.7969 11.6946C16.2242 11.1018 15.6947 10.5473 15.1405 9.96724C15.0974 10.0182 15.0481 10.0947 14.9865 10.1585C13.5148 11.6818 12.0431 13.2116 10.5652 14.7285C10.3251 14.9771 10.1711 15.2257 10.1342 15.5827C10.0787 16.0862 9.98638 16.577 9.90633 17.106C10.0049 17.0933 10.0787 17.0869 10.1465 17.0741C10.6391 16.9913 11.1317 16.9148 11.6182 16.8192C11.7537 16.7937 11.9015 16.7236 11.9938 16.6216C13.5517 15.0217 15.0974 13.4155 16.6491 11.8093C16.6984 11.7519 16.7661 11.7137 16.7969 11.6946ZM17.3511 7.78736C16.9078 8.23991 16.4582 8.69883 16.0395 9.13226C16.5568 9.67404 17.0925 10.2222 17.5974 10.7512C18.0285 10.3051 18.4718 9.84613 18.8967 9.40633C18.3856 8.87093 17.8561 8.3164 17.3511 7.78736Z' fill='white'/%3E%3Cpath d='M4.57994 5.45449C5.2881 4.72149 5.9593 4.01398 6.64897 3.31922C6.76597 3.20449 6.94455 3.11526 7.10465 3.08976C7.32018 3.05789 7.50491 3.179 7.59728 3.39571C7.69581 3.63155 7.67117 3.86101 7.4926 4.05223C7.2155 4.3518 6.92608 4.645 6.63666 4.93821C6.10709 5.48636 5.57751 6.03452 5.04794 6.58268C4.73389 6.90775 4.43216 6.90775 4.11195 6.58268C3.74248 6.20025 3.37301 5.82418 3.0097 5.44175C2.75107 5.16767 2.7326 4.80435 2.96044 4.57489C3.18212 4.3518 3.53311 4.37092 3.78559 4.63226C4.05653 4.88721 4.309 5.16129 4.57994 5.45449Z' fill='white'/%3E%3Cpath d='M4.57983 12.2555C5.28182 11.5288 5.95302 10.8277 6.63038 10.1329C6.71659 10.0437 6.82128 9.95446 6.93212 9.91622C7.17843 9.82061 7.43706 9.92259 7.56637 10.1393C7.69569 10.356 7.67721 10.6365 7.51095 10.8341C7.46785 10.8851 7.41858 10.9297 7.37548 10.9807C6.59959 11.7838 5.82371 12.5933 5.04167 13.3964C4.74609 13.7023 4.4382 13.7023 4.14263 13.3964C3.76084 13.0076 3.39137 12.6188 3.02191 12.23C2.76328 11.9559 2.7448 11.5926 2.97264 11.3631C3.19432 11.14 3.53916 11.1591 3.79779 11.4205C4.05026 11.6882 4.30273 11.9623 4.57983 12.2555Z' fill='white'/%3E%3Cpath d='M4.62287 19.0819C4.67829 18.9927 4.71523 18.9098 4.77065 18.8525C5.39875 18.2023 6.02069 17.5522 6.65495 16.902C6.91973 16.628 7.27073 16.6025 7.49241 16.8383C7.72025 17.0741 7.70178 17.4311 7.43083 17.7052C6.63647 18.5274 5.84212 19.3496 5.04776 20.1719C4.72755 20.497 4.43197 20.497 4.11177 20.1719C3.7423 19.7958 3.37283 19.4134 3.00952 19.0309C2.75705 18.7632 2.73242 18.4127 2.9541 18.1768C3.18194 17.9346 3.52677 17.9537 3.79156 18.2278C4.0625 18.4892 4.31498 18.7569 4.62287 19.0819Z' fill='white'/%3E%3C/svg%3E%0A") no-repeat center
}

.nav-pay span {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url("data:image/svg+xml,%3Csvg width='27' height='25' viewBox='0 0 27 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.84044 24.2667C1.9586 21.3152 1.07676 18.3785 0.1875 15.427C1.49174 15.0369 2.79598 14.6468 4.10763 14.2568C4.1521 14.3966 4.19656 14.5291 4.24102 14.6763C4.31513 14.5659 4.38182 14.4628 4.44851 14.3672C5.53785 12.7037 6.62719 11.0403 7.70912 9.36957C8.04259 8.85435 8.4798 8.47898 9.05782 8.27289C9.38388 8.15513 9.72476 8.07417 10.0656 7.97113C11.0661 7.67672 12.0665 7.38231 13.0669 7.0879C13.1113 7.07318 13.1632 7.03638 13.1854 6.99958C13.6819 6.30035 14.171 5.59377 14.6601 4.89455C15.6902 3.42251 16.7202 1.95046 17.7503 0.471054C17.8614 0.31649 17.9652 0.154565 18.0689 0C20.8182 1.89158 23.5601 3.79052 26.3094 5.68209C22.9524 10.503 19.5955 15.3166 16.2386 20.1302C15.4456 19.5708 14.6453 19.0188 13.845 18.4521C13.7635 18.5551 13.6819 18.6508 13.6078 18.7465C12.852 19.6812 11.8812 20.2995 10.7178 20.616C10.0953 20.7853 9.4654 20.903 8.83551 21.0429C8.01295 21.2269 7.1978 21.4035 6.37523 21.5875C6.36041 21.5875 6.353 21.5949 6.33077 21.6023C6.47898 22.0954 6.62719 22.5812 6.78281 23.0669C5.45634 23.4718 4.14469 23.8692 2.84044 24.2667ZM4.55226 15.7067C5.04135 17.3407 5.53044 18.9747 6.01953 20.6013C6.04176 20.6013 6.05658 20.6013 6.0714 20.5939C7.16815 20.351 8.2649 20.1081 9.35424 19.8579C9.79887 19.7548 10.2583 19.6665 10.6881 19.5267C11.5181 19.2617 12.2147 18.7759 12.7631 18.0914C13.6745 16.9506 14.586 15.8098 15.4975 14.6689C15.9125 14.1464 16.3275 13.6238 16.7499 13.1012C16.9055 12.9025 17.0167 12.689 17.0315 12.4314C17.0611 12.0266 16.8833 11.7248 16.572 11.482C16.1496 11.1507 15.4753 11.1581 15.0455 11.6733C14.9862 11.7396 14.9047 11.7837 14.8306 11.8352C14.8083 11.85 14.7787 11.8647 14.7565 11.8794C13.8079 12.6449 12.852 13.4103 11.9034 14.1758C11.859 14.2126 11.8367 14.2126 11.7849 14.1832C11.1105 13.7783 10.4362 13.3735 9.7544 12.9761C9.64325 12.9098 9.53209 12.8436 9.40611 12.7774C10.3324 11.3274 11.2513 9.88478 12.185 8.4201C12.148 8.42746 12.1332 8.43482 12.1183 8.43482C11.2884 8.67771 10.4658 8.92795 9.63584 9.15612C9.16157 9.28861 8.79104 9.54621 8.53909 9.96575C8.42052 10.1645 8.28713 10.3558 8.16116 10.5472C7.10887 12.1591 6.05658 13.771 5.0043 15.3829C4.93019 15.5006 4.84868 15.5963 4.70047 15.6258C4.65601 15.6552 4.61154 15.6846 4.55226 15.7067ZM14.7639 6.55796L14.7713 6.56532C14.8232 6.53588 14.8676 6.50644 14.9195 6.48436C15.8606 5.98386 16.8462 5.94706 17.854 6.21939C18.5729 6.41076 19.2027 6.77877 19.7585 7.27926C20.3736 7.83128 20.8256 8.4937 21.0776 9.2886C21.248 9.84062 21.2925 10.4 21.1813 10.9741C21.1591 11.0698 21.1369 11.1728 21.1146 11.2685C21.122 11.2685 21.122 11.2685 21.1295 11.2759C22.367 9.50205 23.5971 7.72824 24.8347 5.95442C22.656 4.44558 20.4922 2.94409 18.3135 1.4426C17.1352 3.14282 15.9495 4.85039 14.7639 6.55796ZM18.0615 12.4756C18.2394 12.4461 18.4098 12.4314 18.5803 12.3946C19.3287 12.218 19.84 11.7616 20.0994 11.0477C20.3217 10.4221 20.2254 9.81118 19.9512 9.22236C19.5214 8.30233 18.8026 7.67672 17.8689 7.3087C17.15 7.02166 16.409 6.99221 15.6754 7.2719C15.1122 7.49271 14.6898 7.86808 14.4749 8.44218C14.297 8.92059 14.3192 9.40637 14.46 9.89214C14.5267 10.1277 14.6231 10.3485 14.7416 10.5546C16.1793 9.62718 18.1579 10.768 18.0615 12.4756ZM1.47692 16.1336C2.16609 18.4226 2.84786 20.697 3.53703 22.9786C4.18174 22.7799 4.81904 22.5885 5.46375 22.3972C4.77457 20.1008 4.09281 17.8191 3.40364 15.5301C2.75893 15.7288 2.12163 15.9275 1.47692 16.1336ZM14.4675 17.6425C14.9714 17.9958 15.4679 18.3417 15.9718 18.695C17.3279 16.7445 18.6766 14.8088 20.0253 12.8657C19.9957 12.8657 19.9808 12.8804 19.9586 12.8878C19.9364 12.9025 19.9216 12.9172 19.8993 12.9319C19.3065 13.322 18.647 13.4913 17.943 13.4987C17.8096 13.4987 17.7132 13.5134 17.654 13.6459C17.6391 13.6753 17.6095 13.6974 17.5873 13.7268C16.7276 14.8014 15.868 15.876 15.0084 16.9506C14.8306 17.1861 14.6527 17.4069 14.4675 17.6425ZM13.3633 8.52314C12.5333 9.8259 11.7034 11.1287 10.866 12.4314C11.1698 12.6154 11.4662 12.7921 11.7626 12.9687C12.4815 12.3873 13.1854 11.8132 13.9043 11.2317C13.4152 10.3853 13.1929 9.49469 13.3633 8.52314Z' fill='%2367779A'/%3E%3C/svg%3E%0A") no-repeat center
}

.nav-pay.active span {
    background: url("data:image/svg+xml,%3Csvg width='27' height='25' viewBox='0 0 27 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.84044 24.2667C1.9586 21.3152 1.07676 18.3785 0.1875 15.427C1.49174 15.0369 2.79598 14.6468 4.10763 14.2568C4.1521 14.3966 4.19656 14.5291 4.24102 14.6763C4.31513 14.5659 4.38182 14.4628 4.44851 14.3672C5.53785 12.7037 6.62719 11.0403 7.70912 9.36957C8.04259 8.85435 8.4798 8.47898 9.05782 8.27289C9.38388 8.15513 9.72476 8.07417 10.0656 7.97113C11.0661 7.67672 12.0665 7.38231 13.0669 7.0879C13.1113 7.07318 13.1632 7.03638 13.1854 6.99958C13.6819 6.30035 14.171 5.59377 14.6601 4.89455C15.6902 3.42251 16.7202 1.95046 17.7503 0.471054C17.8614 0.31649 17.9652 0.154565 18.0689 0C20.8182 1.89158 23.5601 3.79052 26.3094 5.68209C22.9524 10.503 19.5955 15.3166 16.2386 20.1302C15.4456 19.5708 14.6453 19.0188 13.845 18.4521C13.7635 18.5551 13.6819 18.6508 13.6078 18.7465C12.852 19.6812 11.8812 20.2995 10.7178 20.616C10.0953 20.7853 9.4654 20.903 8.83551 21.0429C8.01295 21.2269 7.1978 21.4035 6.37523 21.5875C6.36041 21.5875 6.353 21.5949 6.33077 21.6023C6.47898 22.0954 6.62719 22.5812 6.78281 23.0669C5.45634 23.4718 4.14469 23.8692 2.84044 24.2667ZM4.55226 15.7067C5.04135 17.3407 5.53044 18.9747 6.01953 20.6013C6.04176 20.6013 6.05658 20.6013 6.0714 20.5939C7.16815 20.351 8.2649 20.1081 9.35424 19.8579C9.79887 19.7548 10.2583 19.6665 10.6881 19.5267C11.5181 19.2617 12.2147 18.7759 12.7631 18.0914C13.6745 16.9506 14.586 15.8098 15.4975 14.6689C15.9125 14.1464 16.3275 13.6238 16.7499 13.1012C16.9055 12.9025 17.0167 12.689 17.0315 12.4314C17.0611 12.0266 16.8833 11.7248 16.572 11.482C16.1496 11.1507 15.4753 11.1581 15.0455 11.6733C14.9862 11.7396 14.9047 11.7837 14.8306 11.8352C14.8083 11.85 14.7787 11.8647 14.7565 11.8794C13.8079 12.6449 12.852 13.4103 11.9034 14.1758C11.859 14.2126 11.8367 14.2126 11.7849 14.1832C11.1105 13.7783 10.4362 13.3735 9.7544 12.9761C9.64325 12.9098 9.53209 12.8436 9.40611 12.7774C10.3324 11.3274 11.2513 9.88478 12.185 8.4201C12.148 8.42746 12.1332 8.43482 12.1183 8.43482C11.2884 8.67771 10.4658 8.92795 9.63584 9.15612C9.16157 9.28861 8.79104 9.54621 8.53909 9.96575C8.42052 10.1645 8.28713 10.3558 8.16116 10.5472C7.10887 12.1591 6.05658 13.771 5.0043 15.3829C4.93019 15.5006 4.84868 15.5963 4.70047 15.6258C4.65601 15.6552 4.61154 15.6846 4.55226 15.7067ZM14.7639 6.55796L14.7713 6.56532C14.8232 6.53588 14.8676 6.50644 14.9195 6.48436C15.8606 5.98386 16.8462 5.94706 17.854 6.21939C18.5729 6.41076 19.2027 6.77877 19.7585 7.27926C20.3736 7.83128 20.8256 8.4937 21.0776 9.2886C21.248 9.84062 21.2925 10.4 21.1813 10.9741C21.1591 11.0698 21.1369 11.1728 21.1146 11.2685C21.122 11.2685 21.122 11.2685 21.1295 11.2759C22.367 9.50205 23.5971 7.72824 24.8347 5.95442C22.656 4.44558 20.4922 2.94409 18.3135 1.4426C17.1352 3.14282 15.9495 4.85039 14.7639 6.55796ZM18.0615 12.4756C18.2394 12.4461 18.4098 12.4314 18.5803 12.3946C19.3287 12.218 19.84 11.7616 20.0994 11.0477C20.3217 10.4221 20.2254 9.81118 19.9512 9.22236C19.5214 8.30233 18.8026 7.67672 17.8689 7.3087C17.15 7.02166 16.409 6.99221 15.6754 7.2719C15.1122 7.49271 14.6898 7.86808 14.4749 8.44218C14.297 8.92059 14.3192 9.40637 14.46 9.89214C14.5267 10.1277 14.6231 10.3485 14.7416 10.5546C16.1793 9.62718 18.1579 10.768 18.0615 12.4756ZM1.47692 16.1336C2.16609 18.4226 2.84786 20.697 3.53703 22.9786C4.18174 22.7799 4.81904 22.5885 5.46375 22.3972C4.77457 20.1008 4.09281 17.8191 3.40364 15.5301C2.75893 15.7288 2.12163 15.9275 1.47692 16.1336ZM14.4675 17.6425C14.9714 17.9958 15.4679 18.3417 15.9718 18.695C17.3279 16.7445 18.6766 14.8088 20.0253 12.8657C19.9957 12.8657 19.9808 12.8804 19.9586 12.8878C19.9364 12.9025 19.9216 12.9172 19.8993 12.9319C19.3065 13.322 18.647 13.4913 17.943 13.4987C17.8096 13.4987 17.7132 13.5134 17.654 13.6459C17.6391 13.6753 17.6095 13.6974 17.5873 13.7268C16.7276 14.8014 15.868 15.876 15.0084 16.9506C14.8306 17.1861 14.6527 17.4069 14.4675 17.6425ZM13.3633 8.52314C12.5333 9.8259 11.7034 11.1287 10.866 12.4314C11.1698 12.6154 11.4662 12.7921 11.7626 12.9687C12.4815 12.3873 13.1854 11.8132 13.9043 11.2317C13.4152 10.3853 13.1929 9.49469 13.3633 8.52314Z' fill='white'/%3E%3C/svg%3E%0A") no-repeat center
}

.nav-acts span {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url("data:image/svg+xml,%3Csvg width='21' height='28' viewBox='0 0 21 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.716085 27.9921C0.295192 27.8496 0.20166 27.525 0.20166 27.1134C0.209454 21.6986 0.20166 16.2918 0.20166 10.877C0.20166 7.56008 0.20166 4.24314 0.20166 0.926209C0.20166 0.799548 0.209455 0.672887 0.225043 0.546226C0.264015 0.261238 0.427695 0.0870794 0.700497 0.0237489C0.794028 -6.13404e-08 0.895354 0 0.99668 0C7.16199 0 13.3195 0 19.4848 0C19.6095 0 19.7342 0.00791619 19.8589 0.0474978C20.085 0.118745 20.2253 0.277071 20.2642 0.51456C20.2876 0.657054 20.2876 0.807464 20.2876 0.949958C20.2876 8.17755 20.2876 15.3972 20.2954 22.6248C20.2954 23.0206 20.1863 23.3135 19.9057 23.5906C18.5651 24.9285 17.24 26.2901 15.8994 27.6438C15.7669 27.7783 15.611 27.8813 15.4629 28C10.5447 27.9921 5.6265 27.9921 0.716085 27.9921ZM1.46434 1.27453C1.46434 9.76081 1.46434 18.2313 1.46434 26.7096C5.86813 26.7096 10.2563 26.7096 14.6601 26.7096C14.6601 26.5909 14.6601 26.488 14.6601 26.3851C14.6601 25.2926 14.6601 24.2002 14.6601 23.1077C14.6601 22.5298 14.8862 22.3003 15.4629 22.3003C16.5463 22.3003 17.6375 22.3003 18.721 22.3003C18.8145 22.3003 18.908 22.3003 19.0093 22.3003C19.0093 15.2706 19.0093 8.28046 19.0093 1.28244C13.1558 1.27453 7.31787 1.27453 1.46434 1.27453ZM15.9384 23.5748C15.9384 24.3189 15.9384 25.0393 15.9384 25.6884C16.6243 24.9918 17.3336 24.2714 18.0195 23.5748C17.3647 23.5748 16.6633 23.5748 15.9384 23.5748Z' fill='%2367779A'/%3E%3Cpath d='M12.4467 6.71302C13.5768 6.71302 14.707 6.7051 15.8372 6.71302C16.3516 6.71302 16.6712 7.14842 16.4763 7.58381C16.3516 7.87671 16.0944 7.97171 15.7982 7.97171C14.9798 7.97171 14.1692 7.97171 13.3508 7.97171C11.9244 7.97171 10.4981 7.97171 9.07172 7.97171C8.77553 7.97171 8.51832 7.90046 8.37802 7.60756C8.17537 7.188 8.46376 6.72885 8.9548 6.71302C9.48482 6.69719 10.0148 6.7051 10.5448 6.7051C11.1762 6.71302 11.8153 6.71302 12.4467 6.71302Z' fill='%2367779A'/%3E%3Cpath d='M12.4151 12.4128C11.2849 12.4128 10.1547 12.4128 9.02453 12.4128C8.5101 12.4128 8.18274 12.017 8.36201 11.5816C8.43216 11.4153 8.62702 11.2887 8.7907 11.1778C8.86864 11.1224 9.00115 11.1462 9.11027 11.1462C11.3161 11.1462 13.5219 11.1462 15.7276 11.1462C15.8524 11.1462 15.9771 11.1541 16.1018 11.1858C16.359 11.257 16.5382 11.5182 16.5382 11.7795C16.5382 12.0407 16.359 12.294 16.094 12.3653C15.9771 12.3969 15.8446 12.4048 15.7198 12.4048C14.6208 12.4128 13.5141 12.4128 12.4151 12.4128Z' fill='%2367779A'/%3E%3Cpath d='M12.4232 16.8459C11.293 16.8459 10.1629 16.8459 9.03268 16.8459C8.51046 16.8459 8.21428 16.4739 8.35457 16.0226C8.44031 15.7535 8.66635 15.5952 9.0015 15.5873C9.43019 15.5793 9.85888 15.5873 10.2954 15.5873C12.127 15.5873 13.9509 15.5873 15.7826 15.5873C16.0943 15.5873 16.3516 15.6664 16.4919 15.9751C16.6711 16.3947 16.3827 16.8301 15.8995 16.8459C15.463 16.8618 15.0187 16.8538 14.5822 16.8538C13.8574 16.8459 13.1403 16.8459 12.4232 16.8459Z' fill='%2367779A'/%3E%3Cpath d='M4.96381 12.1832C5.47823 11.5103 5.97707 10.8533 6.4837 10.2042C6.74092 9.87167 6.99813 9.77667 7.29431 9.89541C7.62168 10.03 7.76977 10.4021 7.62168 10.7345C7.59829 10.79 7.56712 10.8533 7.52814 10.9008C6.88121 11.7478 6.23428 12.6028 5.57956 13.4419C5.32235 13.7744 4.98719 13.8061 4.65203 13.5448C4.29349 13.2678 3.94275 12.9907 3.5998 12.6978C3.29582 12.4366 3.24905 12.0566 3.47509 11.7795C3.69333 11.5103 4.04408 11.4787 4.36364 11.7083C4.5585 11.8507 4.74557 12.0091 4.96381 12.1832Z' fill='%2367779A'/%3E%3Cpath d='M4.96408 16.6164C5.46291 15.9672 5.94616 15.3339 6.42941 14.7006C6.77236 14.2494 7.1309 14.1544 7.45047 14.4157C7.75444 14.669 7.74665 15.049 7.41929 15.4764C6.83472 16.2364 6.25014 17.0043 5.66557 17.7642C5.30703 18.2234 5.00305 18.263 4.55098 17.8988C4.247 17.6534 3.94302 17.4159 3.64684 17.1705C3.30389 16.8855 3.24153 16.5056 3.47536 16.2127C3.7014 15.9277 4.06773 15.9039 4.41068 16.1731C4.58216 16.3076 4.75363 16.4581 4.96408 16.6164Z' fill='%2367779A'/%3E%3Cpath d='M4.96379 7.75C5.25997 7.3621 5.54836 6.99003 5.82896 6.61796C6.06279 6.31714 6.28882 6.0084 6.52265 5.7155C6.79545 5.38302 7.15399 5.31968 7.44238 5.54926C7.72297 5.77092 7.75415 6.15882 7.49694 6.49922C6.8656 7.33043 6.23426 8.16164 5.59513 8.97703C5.32233 9.33326 4.97938 9.37284 4.62864 9.10369C4.28569 8.84245 3.95053 8.56538 3.61538 8.28831C3.28802 8.01123 3.22566 7.63917 3.4517 7.35418C3.67773 7.06128 4.03627 7.03753 4.38701 7.29877C4.58187 7.44126 4.76114 7.59167 4.96379 7.75Z' fill='%2367779A'/%3E%3C/svg%3E%0A") no-repeat center
}

.nav-acts.active span {
    background: url("data:image/svg+xml,%3Csvg width='21' height='28' viewBox='0 0 21 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.716085 27.9921C0.295192 27.8496 0.20166 27.525 0.20166 27.1134C0.209454 21.6986 0.20166 16.2918 0.20166 10.877C0.20166 7.56008 0.20166 4.24314 0.20166 0.926209C0.20166 0.799548 0.209455 0.672887 0.225043 0.546226C0.264015 0.261238 0.427695 0.0870794 0.700497 0.0237489C0.794028 -6.13404e-08 0.895354 0 0.99668 0C7.16199 0 13.3195 0 19.4848 0C19.6095 0 19.7342 0.00791619 19.8589 0.0474978C20.085 0.118745 20.2253 0.277071 20.2642 0.51456C20.2876 0.657054 20.2876 0.807464 20.2876 0.949958C20.2876 8.17755 20.2876 15.3972 20.2954 22.6248C20.2954 23.0206 20.1863 23.3135 19.9057 23.5906C18.5651 24.9285 17.24 26.2901 15.8994 27.6438C15.7669 27.7783 15.611 27.8813 15.4629 28C10.5447 27.9921 5.6265 27.9921 0.716085 27.9921ZM1.46434 1.27453C1.46434 9.76081 1.46434 18.2313 1.46434 26.7096C5.86813 26.7096 10.2563 26.7096 14.6601 26.7096C14.6601 26.5909 14.6601 26.488 14.6601 26.3851C14.6601 25.2926 14.6601 24.2002 14.6601 23.1077C14.6601 22.5298 14.8862 22.3003 15.4629 22.3003C16.5463 22.3003 17.6375 22.3003 18.721 22.3003C18.8145 22.3003 18.908 22.3003 19.0093 22.3003C19.0093 15.2706 19.0093 8.28046 19.0093 1.28244C13.1558 1.27453 7.31787 1.27453 1.46434 1.27453ZM15.9384 23.5748C15.9384 24.3189 15.9384 25.0393 15.9384 25.6884C16.6243 24.9918 17.3336 24.2714 18.0195 23.5748C17.3647 23.5748 16.6633 23.5748 15.9384 23.5748Z' fill='white'/%3E%3Cpath d='M12.4467 6.71302C13.5768 6.71302 14.707 6.7051 15.8372 6.71302C16.3516 6.71302 16.6712 7.14842 16.4763 7.58381C16.3516 7.87671 16.0944 7.97171 15.7982 7.97171C14.9798 7.97171 14.1692 7.97171 13.3508 7.97171C11.9244 7.97171 10.4981 7.97171 9.07172 7.97171C8.77553 7.97171 8.51832 7.90046 8.37802 7.60756C8.17537 7.188 8.46376 6.72885 8.9548 6.71302C9.48482 6.69719 10.0148 6.7051 10.5448 6.7051C11.1762 6.71302 11.8153 6.71302 12.4467 6.71302Z' fill='white'/%3E%3Cpath d='M12.4151 12.4128C11.2849 12.4128 10.1547 12.4128 9.02453 12.4128C8.5101 12.4128 8.18274 12.017 8.36201 11.5816C8.43216 11.4153 8.62702 11.2887 8.7907 11.1778C8.86864 11.1224 9.00115 11.1462 9.11027 11.1462C11.3161 11.1462 13.5219 11.1462 15.7276 11.1462C15.8524 11.1462 15.9771 11.1541 16.1018 11.1858C16.359 11.257 16.5382 11.5182 16.5382 11.7795C16.5382 12.0407 16.359 12.294 16.094 12.3653C15.9771 12.3969 15.8446 12.4048 15.7198 12.4048C14.6208 12.4128 13.5141 12.4128 12.4151 12.4128Z' fill='white'/%3E%3Cpath d='M12.4232 16.8459C11.293 16.8459 10.1629 16.8459 9.03268 16.8459C8.51046 16.8459 8.21428 16.4739 8.35457 16.0226C8.44031 15.7535 8.66635 15.5952 9.0015 15.5873C9.43019 15.5793 9.85888 15.5873 10.2954 15.5873C12.127 15.5873 13.9509 15.5873 15.7826 15.5873C16.0943 15.5873 16.3516 15.6664 16.4919 15.9751C16.6711 16.3947 16.3827 16.8301 15.8995 16.8459C15.463 16.8618 15.0187 16.8538 14.5822 16.8538C13.8574 16.8459 13.1403 16.8459 12.4232 16.8459Z' fill='white'/%3E%3Cpath d='M4.96381 12.1832C5.47823 11.5103 5.97707 10.8533 6.4837 10.2042C6.74092 9.87167 6.99813 9.77667 7.29431 9.89541C7.62168 10.03 7.76977 10.4021 7.62168 10.7345C7.59829 10.79 7.56712 10.8533 7.52814 10.9008C6.88121 11.7478 6.23428 12.6028 5.57956 13.4419C5.32235 13.7744 4.98719 13.8061 4.65203 13.5448C4.29349 13.2678 3.94275 12.9907 3.5998 12.6978C3.29582 12.4366 3.24905 12.0566 3.47509 11.7795C3.69333 11.5103 4.04408 11.4787 4.36364 11.7083C4.5585 11.8507 4.74557 12.0091 4.96381 12.1832Z' fill='white'/%3E%3Cpath d='M4.96408 16.6164C5.46291 15.9672 5.94616 15.3339 6.42941 14.7006C6.77236 14.2494 7.1309 14.1544 7.45047 14.4157C7.75444 14.669 7.74665 15.049 7.41929 15.4764C6.83472 16.2364 6.25014 17.0043 5.66557 17.7642C5.30703 18.2234 5.00305 18.263 4.55098 17.8988C4.247 17.6534 3.94302 17.4159 3.64684 17.1705C3.30389 16.8855 3.24153 16.5056 3.47536 16.2127C3.7014 15.9277 4.06773 15.9039 4.41068 16.1731C4.58216 16.3076 4.75363 16.4581 4.96408 16.6164Z' fill='white'/%3E%3Cpath d='M4.96379 7.75C5.25997 7.3621 5.54836 6.99003 5.82896 6.61796C6.06279 6.31714 6.28882 6.0084 6.52265 5.7155C6.79545 5.38302 7.15399 5.31968 7.44238 5.54926C7.72297 5.77092 7.75415 6.15882 7.49694 6.49922C6.8656 7.33043 6.23426 8.16164 5.59513 8.97703C5.32233 9.33326 4.97938 9.37284 4.62864 9.10369C4.28569 8.84245 3.95053 8.56538 3.61538 8.28831C3.28802 8.01123 3.22566 7.63917 3.4517 7.35418C3.67773 7.06128 4.03627 7.03753 4.38701 7.29877C4.58187 7.44126 4.76114 7.59167 4.96379 7.75Z' fill='white'/%3E%3C/svg%3E%0A") no-repeat center
}

.nav-klients span {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url("data:image/svg+xml,%3Csvg width='27' height='23' viewBox='0 0 27 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.8118 0.0160736C18.8892 0.0723308 18.9821 0.112514 19.0441 0.184845C19.942 1.29392 20.8399 2.40299 21.7224 3.5201C23.1931 5.38462 24.6484 7.25718 26.1114 9.12975C26.3823 9.48336 26.3901 9.59588 26.0417 9.86913C25.3296 10.4317 24.6019 10.9702 23.8821 11.5167C23.7582 11.6131 23.6189 11.581 23.5105 11.4845C23.3944 11.38 23.286 11.2675 23.1776 11.147C23.0848 11.0425 22.9996 10.93 22.9067 10.8014C22.8525 10.9139 22.7983 11.0103 22.7519 11.0988C22.4268 11.7095 22.0088 12.2319 21.3973 12.5614C21.2889 12.6177 21.1728 12.6659 21.0567 12.7061C20.9328 12.7543 20.8554 12.8267 20.8012 12.9472C20.6077 13.3812 20.2903 13.6785 19.8723 13.8714C19.8336 13.8875 19.7949 13.9116 19.7485 13.9277C19.6556 13.9759 19.6246 14.0322 19.6633 14.1447C19.9342 15.0287 19.4698 16.0172 18.6415 16.3548C18.4248 16.4432 18.4403 16.4432 18.4558 16.6763C18.4712 16.9897 18.4867 17.3031 18.4558 17.6166C18.4093 18.0345 18.1539 18.3399 17.8442 18.581C17.7049 18.6935 17.5346 18.7819 17.3798 18.8703C17.2714 18.9265 17.2172 18.9908 17.2405 19.1355C17.2946 19.4891 17.3256 19.8427 17.2327 20.1964C17.0469 20.9116 16.3503 21.442 15.6304 21.442C15.2511 21.442 14.9027 21.3376 14.5699 21.1688C14.059 20.9116 13.5404 20.6544 13.0217 20.3973C13.014 20.3973 13.0062 20.3892 12.983 20.3892C12.9443 20.4535 12.9056 20.5178 12.8669 20.5821C12.6657 20.9116 12.4644 21.2411 12.2476 21.5706C11.9535 22.0207 11.5355 22.1895 11.0323 22.0689C10.1112 21.8519 9.3913 21.3456 8.98878 20.4375C8.89589 20.2205 8.78752 20.1642 8.57852 20.124C7.58769 19.9231 6.79039 19.4329 6.47302 18.3559C6.42658 18.1872 6.32594 18.1389 6.17887 18.1148C5.53638 18.0104 5.01775 17.6808 4.58427 17.1826C4.21271 16.7566 4.18175 16.2503 4.42171 15.7681C4.5533 15.4868 4.53782 15.318 4.3443 15.085C4.03467 14.7153 3.82567 14.2813 3.64763 13.8312C3.62441 13.775 3.60119 13.7187 3.56248 13.6303C3.52378 13.6866 3.5083 13.7268 3.48508 13.7589C3.43089 13.8473 3.39219 13.9438 3.33026 14.0161C3.129 14.2572 3.02837 14.2733 2.80389 14.1527C2.05303 13.7589 1.30217 13.3732 0.559058 12.9794C0.404242 12.899 0.257167 12.8025 0.1875 12.6257C0.1875 12.5695 0.1875 12.5132 0.1875 12.457C0.264908 12.3123 0.334575 12.1596 0.411983 12.0149C1.72018 9.65214 3.02837 7.28933 4.33656 4.93456C4.83971 4.02641 5.35835 3.11826 5.86924 2.21011C5.96987 2.0333 6.05502 1.99311 6.24854 2.04133C6.38013 2.07348 6.51172 2.1217 6.63558 2.186C7.23162 2.49139 7.81992 2.79679 8.40822 3.11022C8.55529 3.19059 8.69463 3.27899 8.82622 3.37544C9.012 3.51206 9.04296 3.68887 8.94233 3.89782C8.89589 3.98623 8.85718 4.08267 8.81074 4.17107C8.75655 4.28359 8.77203 4.35592 8.88815 4.42021C9.67771 4.87831 10.4595 5.3364 11.2413 5.80253C11.5123 5.96327 11.7832 6.11597 12.0541 6.2767C13.5868 5.11137 15.1272 3.98623 16.6444 2.79679C16.5747 2.69231 16.5128 2.61194 16.4586 2.52354C16.4045 2.43513 16.3348 2.33869 16.2961 2.24225C16.2032 2.02526 16.2419 1.88864 16.4199 1.74397C16.6522 1.55109 16.8921 1.36625 17.1321 1.18944C17.6662 0.787601 18.2003 0.393801 18.7344 0C18.7422 0.0160735 18.7809 0.0160736 18.8118 0.0160736ZM11.28 6.85535C10.2737 6.26063 9.29067 5.68198 8.30759 5.10334C8.2534 5.19174 8.20696 5.25603 8.16825 5.32837C6.86006 7.6751 5.55187 10.0218 4.24367 12.3766C4.22045 12.4168 4.20497 12.473 4.20497 12.5132C4.24367 13.2285 4.50686 13.8634 4.88616 14.4501C4.91712 14.4983 4.95583 14.5304 4.98679 14.5706C5.01001 14.5546 5.02549 14.5546 5.03323 14.5465C5.05646 14.5144 5.08742 14.4822 5.1029 14.4501C5.35835 14.0402 5.7299 13.8634 6.17887 13.8393C6.70524 13.8152 7.16195 14.0161 7.56447 14.3617C7.71155 14.4822 7.8354 14.6349 7.97473 14.7555C8.03666 14.8117 8.14503 14.8519 8.22244 14.8439C8.95007 14.7474 9.64674 14.8278 10.2892 15.2377C10.6917 15.4949 10.9936 15.8485 11.133 16.3066C11.1949 16.5075 11.2878 16.5557 11.4581 16.5879C12.1935 16.7245 12.8127 17.0861 13.3391 17.6407C13.8577 18.1872 13.8577 18.9908 13.5249 19.4811C13.4939 19.5293 13.4707 19.5856 13.4397 19.6338C13.4707 19.6579 13.4939 19.674 13.5171 19.69C14.0203 19.9472 14.5312 20.2044 15.0421 20.4535C15.2124 20.5339 15.3904 20.5902 15.5762 20.6143C15.9245 20.6544 16.2651 20.4053 16.4045 20.0437C16.5515 19.6659 16.4741 19.2239 16.1954 18.9908C16.0484 18.8623 15.8703 18.7578 15.7078 18.6533C15.313 18.4122 14.9182 18.1791 14.5312 17.922C14.4538 17.8737 14.3841 17.7693 14.3609 17.6728C14.3067 17.3835 14.6086 17.0942 14.8873 17.2469C15.2356 17.4317 15.5917 17.6166 15.9477 17.8014C16.1567 17.9059 16.3735 18.0184 16.5902 18.0907C16.9773 18.2193 17.372 18.0264 17.5733 17.6326C17.7823 17.2308 17.7126 16.7647 17.3953 16.4994C17.2637 16.3869 17.1166 16.2905 16.9618 16.2021C16.4045 15.8967 15.8394 15.5993 15.282 15.2939C14.9027 15.085 14.5312 14.876 14.1596 14.659C13.9661 14.5385 13.9274 14.3295 14.0435 14.1366C14.1596 13.9357 14.3299 13.8714 14.5389 13.9759C15.1969 14.3054 15.8471 14.643 16.4973 14.9725C16.9076 15.1814 17.3179 15.3904 17.7359 15.5833C17.8365 15.6315 17.9604 15.6476 18.0687 15.6315C18.5099 15.5752 18.7654 15.2939 18.8815 14.868C18.9744 14.5304 18.7809 14.0322 18.4712 13.8634C17.9216 13.566 17.372 13.2767 16.8302 12.9794C16.3503 12.7222 15.8781 12.465 15.3981 12.2078C15.282 12.1435 15.2046 12.0471 15.1891 11.9024C15.1659 11.5729 15.4369 11.3559 15.731 11.4926C16.2961 11.7658 16.8612 12.0551 17.4262 12.3364C17.9216 12.5856 18.4171 12.8427 18.9202 13.0678C19.2608 13.2205 19.5782 13.132 19.8414 12.8668C20.1045 12.5936 20.1897 12.2641 20.0813 11.8864C19.9962 11.581 19.764 11.4202 19.5008 11.2997C17.8752 10.5764 16.2496 9.85306 14.6163 9.12171C14.5312 9.08153 14.477 9.0976 14.4073 9.14582C13.9197 9.48337 13.4397 9.81287 12.9443 10.1424C12.4799 10.4558 12.0232 10.7612 11.5432 11.0505C11.3652 11.155 11.1562 11.2354 10.9549 11.2514C10.1963 11.3238 9.43 10.8416 9.17456 10.1343C8.92685 9.45122 8.98878 8.62343 9.70093 8.03675C9.99508 7.79565 10.3047 7.56258 10.6066 7.32148C10.8311 7.19289 11.0401 7.04019 11.28 6.85535ZM20.9793 11.8462C21.0102 11.8301 21.0257 11.8221 21.0412 11.814C21.6527 11.4363 22.001 10.8496 22.241 10.1745C22.2565 10.1263 22.2333 10.054 22.21 10.0138C22.1017 9.84502 21.9856 9.66821 21.8617 9.50747C20.3755 7.60277 18.8815 5.69806 17.3953 3.79335C17.3256 3.70494 17.2482 3.61654 17.1708 3.52813C17.0934 3.58439 17.0392 3.62457 16.9773 3.66476C15.2588 4.95064 13.5404 6.23652 11.8219 7.53043C11.2723 7.94031 10.7537 8.38233 10.2118 8.80828C9.94863 9.01723 9.85574 9.28245 9.90219 9.61999C9.94863 9.94146 10.2196 10.3192 10.506 10.3594C10.8388 10.4076 11.1794 10.4638 11.4581 10.1826C11.5123 10.1263 11.5819 10.0942 11.6439 10.0459C12.5031 9.45925 13.3623 8.88061 14.2138 8.28589C14.3609 8.18141 14.5002 8.16534 14.6705 8.23767C15.4369 8.57521 16.2187 8.88865 16.985 9.22619C17.9526 9.65214 18.9125 10.0942 19.8801 10.5281C20.329 10.7291 20.6541 11.0586 20.8399 11.5327C20.8786 11.6533 20.9328 11.7417 20.9793 11.8462ZM25.2831 9.41907C23.0847 6.61424 20.9096 3.83353 18.7189 1.0287C18.2158 1.4225 17.7359 1.80023 17.2637 2.16992C17.4959 2.57176 23.6343 10.3835 23.8279 10.5281C24.3001 10.1665 24.78 9.80483 25.2831 9.41907ZM6.35691 3.01378C4.62297 6.13204 2.89678 9.23422 1.16284 12.3444C1.21702 12.3766 1.25573 12.4087 1.29443 12.4248C1.72792 12.6579 2.16914 12.899 2.61037 13.132C2.7884 13.2285 2.79615 13.2205 2.89678 13.0436C4.56105 10.054 6.21757 7.07234 7.88184 4.08267C7.91281 4.02641 7.94377 3.96212 7.98247 3.87371C7.43288 3.59243 6.9065 3.3031 6.35691 3.01378ZM11.3188 21.2894C11.4968 21.2652 11.5665 21.1286 11.6361 21.0081C12.0386 20.341 12.4334 19.6659 12.8282 18.9908C13.014 18.6774 12.9908 18.5086 12.7508 18.2273C12.6966 18.1631 12.6424 18.1068 12.5805 18.0505C12.2244 17.7371 11.8064 17.5523 11.3652 17.4237C11.2026 17.3755 11.0788 17.4237 10.9704 17.5523C10.9162 17.6166 10.8698 17.6809 10.8233 17.7532C10.4363 18.4122 10.0493 19.0632 9.66997 19.7222C9.64674 19.7704 9.639 19.8427 9.65448 19.899C9.8093 20.4535 10.1963 20.7991 10.6685 21.0483C10.8775 21.1608 11.102 21.217 11.3188 21.2894ZM8.84944 15.6315C8.48563 15.6074 8.35403 15.6797 8.27662 15.8645C8.17599 16.1056 8.0831 16.3468 7.96699 16.5798C7.77347 16.9656 7.55673 17.3433 7.37095 17.7371C7.21614 18.0586 7.27806 18.4363 7.53351 18.6774C7.85088 18.9828 8.23018 19.1837 8.65592 19.2802C8.81074 19.3123 8.94233 19.2721 9.03522 19.1194C9.38356 18.5327 9.73963 17.9541 10.0802 17.3674C10.1809 17.1986 10.266 17.0218 10.3512 16.845C10.3744 16.7888 10.3976 16.7084 10.3744 16.6521C10.2892 16.3789 10.1499 16.1378 9.90219 15.9851C9.54611 15.7601 9.15907 15.6476 8.84944 15.6315ZM6.26402 14.6912C6.06276 14.6831 5.90794 14.7474 5.80731 14.9403C5.62927 15.2618 5.45124 15.5752 5.2732 15.8967C5.21127 16.0172 5.16483 16.1458 5.11838 16.2825C5.07194 16.4191 5.1029 16.5477 5.19579 16.6602C5.5209 17.0299 5.93117 17.2308 6.40335 17.3031C6.53495 17.3192 6.63558 17.271 6.70524 17.1504C6.92973 16.7325 7.14647 16.3146 7.37095 15.8887C7.4561 15.7199 7.44062 15.5591 7.35547 15.3984C7.11551 14.9644 6.74395 14.7314 6.26402 14.6912Z' fill='%2367779A'/%3E%3C/svg%3E%0A") no-repeat center
}

.nav-klients.active span {
    background: url("data:image/svg+xml,%3Csvg width='27' height='23' viewBox='0 0 27 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.8118 0.0160736C18.8892 0.0723308 18.9821 0.112514 19.0441 0.184845C19.942 1.29392 20.8399 2.40299 21.7224 3.5201C23.1931 5.38462 24.6484 7.25718 26.1114 9.12975C26.3823 9.48336 26.3901 9.59588 26.0417 9.86913C25.3296 10.4317 24.6019 10.9702 23.8821 11.5167C23.7582 11.6131 23.6189 11.581 23.5105 11.4845C23.3944 11.38 23.286 11.2675 23.1776 11.147C23.0848 11.0425 22.9996 10.93 22.9067 10.8014C22.8525 10.9139 22.7983 11.0103 22.7519 11.0988C22.4268 11.7095 22.0088 12.2319 21.3973 12.5614C21.2889 12.6177 21.1728 12.6659 21.0567 12.7061C20.9328 12.7543 20.8554 12.8267 20.8012 12.9472C20.6077 13.3812 20.2903 13.6785 19.8723 13.8714C19.8336 13.8875 19.7949 13.9116 19.7485 13.9277C19.6556 13.9759 19.6246 14.0322 19.6633 14.1447C19.9342 15.0287 19.4698 16.0172 18.6415 16.3548C18.4248 16.4432 18.4403 16.4432 18.4558 16.6763C18.4712 16.9897 18.4867 17.3031 18.4558 17.6166C18.4093 18.0345 18.1539 18.3399 17.8442 18.581C17.7049 18.6935 17.5346 18.7819 17.3798 18.8703C17.2714 18.9265 17.2172 18.9908 17.2405 19.1355C17.2946 19.4891 17.3256 19.8427 17.2327 20.1964C17.0469 20.9116 16.3503 21.442 15.6304 21.442C15.2511 21.442 14.9027 21.3376 14.5699 21.1688C14.059 20.9116 13.5404 20.6544 13.0217 20.3973C13.014 20.3973 13.0062 20.3892 12.983 20.3892C12.9443 20.4535 12.9056 20.5178 12.8669 20.5821C12.6657 20.9116 12.4644 21.2411 12.2476 21.5706C11.9535 22.0207 11.5355 22.1895 11.0323 22.0689C10.1112 21.8519 9.3913 21.3456 8.98878 20.4375C8.89589 20.2205 8.78752 20.1642 8.57852 20.124C7.58769 19.9231 6.79039 19.4329 6.47302 18.3559C6.42658 18.1872 6.32594 18.1389 6.17887 18.1148C5.53638 18.0104 5.01775 17.6808 4.58427 17.1826C4.21271 16.7566 4.18175 16.2503 4.42171 15.7681C4.5533 15.4868 4.53782 15.318 4.3443 15.085C4.03467 14.7153 3.82567 14.2813 3.64763 13.8312C3.62441 13.775 3.60119 13.7187 3.56248 13.6303C3.52378 13.6866 3.5083 13.7268 3.48508 13.7589C3.43089 13.8473 3.39219 13.9438 3.33026 14.0161C3.129 14.2572 3.02837 14.2733 2.80389 14.1527C2.05303 13.7589 1.30217 13.3732 0.559058 12.9794C0.404242 12.899 0.257167 12.8025 0.1875 12.6257C0.1875 12.5695 0.1875 12.5132 0.1875 12.457C0.264908 12.3123 0.334575 12.1596 0.411983 12.0149C1.72018 9.65214 3.02837 7.28933 4.33656 4.93456C4.83971 4.02641 5.35835 3.11826 5.86924 2.21011C5.96987 2.0333 6.05502 1.99311 6.24854 2.04133C6.38013 2.07348 6.51172 2.1217 6.63558 2.186C7.23162 2.49139 7.81992 2.79679 8.40822 3.11022C8.55529 3.19059 8.69463 3.27899 8.82622 3.37544C9.012 3.51206 9.04296 3.68887 8.94233 3.89782C8.89589 3.98623 8.85718 4.08267 8.81074 4.17107C8.75655 4.28359 8.77203 4.35592 8.88815 4.42021C9.67771 4.87831 10.4595 5.3364 11.2413 5.80253C11.5123 5.96327 11.7832 6.11597 12.0541 6.2767C13.5868 5.11137 15.1272 3.98623 16.6444 2.79679C16.5747 2.69231 16.5128 2.61194 16.4586 2.52354C16.4045 2.43513 16.3348 2.33869 16.2961 2.24225C16.2032 2.02526 16.2419 1.88864 16.4199 1.74397C16.6522 1.55109 16.8921 1.36625 17.1321 1.18944C17.6662 0.787601 18.2003 0.393801 18.7344 0C18.7422 0.0160735 18.7809 0.0160736 18.8118 0.0160736ZM11.28 6.85535C10.2737 6.26063 9.29067 5.68198 8.30759 5.10334C8.2534 5.19174 8.20696 5.25603 8.16825 5.32837C6.86006 7.6751 5.55187 10.0218 4.24367 12.3766C4.22045 12.4168 4.20497 12.473 4.20497 12.5132C4.24367 13.2285 4.50686 13.8634 4.88616 14.4501C4.91712 14.4983 4.95583 14.5304 4.98679 14.5706C5.01001 14.5546 5.02549 14.5546 5.03323 14.5465C5.05646 14.5144 5.08742 14.4822 5.1029 14.4501C5.35835 14.0402 5.7299 13.8634 6.17887 13.8393C6.70524 13.8152 7.16195 14.0161 7.56447 14.3617C7.71155 14.4822 7.8354 14.6349 7.97473 14.7555C8.03666 14.8117 8.14503 14.8519 8.22244 14.8439C8.95007 14.7474 9.64674 14.8278 10.2892 15.2377C10.6917 15.4949 10.9936 15.8485 11.133 16.3066C11.1949 16.5075 11.2878 16.5557 11.4581 16.5879C12.1935 16.7245 12.8127 17.0861 13.3391 17.6407C13.8577 18.1872 13.8577 18.9908 13.5249 19.4811C13.4939 19.5293 13.4707 19.5856 13.4397 19.6338C13.4707 19.6579 13.4939 19.674 13.5171 19.69C14.0203 19.9472 14.5312 20.2044 15.0421 20.4535C15.2124 20.5339 15.3904 20.5902 15.5762 20.6143C15.9245 20.6544 16.2651 20.4053 16.4045 20.0437C16.5515 19.6659 16.4741 19.2239 16.1954 18.9908C16.0484 18.8623 15.8703 18.7578 15.7078 18.6533C15.313 18.4122 14.9182 18.1791 14.5312 17.922C14.4538 17.8737 14.3841 17.7693 14.3609 17.6728C14.3067 17.3835 14.6086 17.0942 14.8873 17.2469C15.2356 17.4317 15.5917 17.6166 15.9477 17.8014C16.1567 17.9059 16.3735 18.0184 16.5902 18.0907C16.9773 18.2193 17.372 18.0264 17.5733 17.6326C17.7823 17.2308 17.7126 16.7647 17.3953 16.4994C17.2637 16.3869 17.1166 16.2905 16.9618 16.2021C16.4045 15.8967 15.8394 15.5993 15.282 15.2939C14.9027 15.085 14.5312 14.876 14.1596 14.659C13.9661 14.5385 13.9274 14.3295 14.0435 14.1366C14.1596 13.9357 14.3299 13.8714 14.5389 13.9759C15.1969 14.3054 15.8471 14.643 16.4973 14.9725C16.9076 15.1814 17.3179 15.3904 17.7359 15.5833C17.8365 15.6315 17.9604 15.6476 18.0687 15.6315C18.5099 15.5752 18.7654 15.2939 18.8815 14.868C18.9744 14.5304 18.7809 14.0322 18.4712 13.8634C17.9216 13.566 17.372 13.2767 16.8302 12.9794C16.3503 12.7222 15.8781 12.465 15.3981 12.2078C15.282 12.1435 15.2046 12.0471 15.1891 11.9024C15.1659 11.5729 15.4369 11.3559 15.731 11.4926C16.2961 11.7658 16.8612 12.0551 17.4262 12.3364C17.9216 12.5856 18.4171 12.8427 18.9202 13.0678C19.2608 13.2205 19.5782 13.132 19.8414 12.8668C20.1045 12.5936 20.1897 12.2641 20.0813 11.8864C19.9962 11.581 19.764 11.4202 19.5008 11.2997C17.8752 10.5764 16.2496 9.85306 14.6163 9.12171C14.5312 9.08153 14.477 9.0976 14.4073 9.14582C13.9197 9.48337 13.4397 9.81287 12.9443 10.1424C12.4799 10.4558 12.0232 10.7612 11.5432 11.0505C11.3652 11.155 11.1562 11.2354 10.9549 11.2514C10.1963 11.3238 9.43 10.8416 9.17456 10.1343C8.92685 9.45122 8.98878 8.62343 9.70093 8.03675C9.99508 7.79565 10.3047 7.56258 10.6066 7.32148C10.8311 7.19289 11.0401 7.04019 11.28 6.85535ZM20.9793 11.8462C21.0102 11.8301 21.0257 11.8221 21.0412 11.814C21.6527 11.4363 22.001 10.8496 22.241 10.1745C22.2565 10.1263 22.2333 10.054 22.21 10.0138C22.1017 9.84502 21.9856 9.66821 21.8617 9.50747C20.3755 7.60277 18.8815 5.69806 17.3953 3.79335C17.3256 3.70494 17.2482 3.61654 17.1708 3.52813C17.0934 3.58439 17.0392 3.62457 16.9773 3.66476C15.2588 4.95064 13.5404 6.23652 11.8219 7.53043C11.2723 7.94031 10.7537 8.38233 10.2118 8.80828C9.94863 9.01723 9.85574 9.28245 9.90219 9.61999C9.94863 9.94146 10.2196 10.3192 10.506 10.3594C10.8388 10.4076 11.1794 10.4638 11.4581 10.1826C11.5123 10.1263 11.5819 10.0942 11.6439 10.0459C12.5031 9.45925 13.3623 8.88061 14.2138 8.28589C14.3609 8.18141 14.5002 8.16534 14.6705 8.23767C15.4369 8.57521 16.2187 8.88865 16.985 9.22619C17.9526 9.65214 18.9125 10.0942 19.8801 10.5281C20.329 10.7291 20.6541 11.0586 20.8399 11.5327C20.8786 11.6533 20.9328 11.7417 20.9793 11.8462ZM25.2831 9.41907C23.0847 6.61424 20.9096 3.83353 18.7189 1.0287C18.2158 1.4225 17.7359 1.80023 17.2637 2.16992C17.4959 2.57176 23.6343 10.3835 23.8279 10.5281C24.3001 10.1665 24.78 9.80483 25.2831 9.41907ZM6.35691 3.01378C4.62297 6.13204 2.89678 9.23422 1.16284 12.3444C1.21702 12.3766 1.25573 12.4087 1.29443 12.4248C1.72792 12.6579 2.16914 12.899 2.61037 13.132C2.7884 13.2285 2.79615 13.2205 2.89678 13.0436C4.56105 10.054 6.21757 7.07234 7.88184 4.08267C7.91281 4.02641 7.94377 3.96212 7.98247 3.87371C7.43288 3.59243 6.9065 3.3031 6.35691 3.01378ZM11.3188 21.2894C11.4968 21.2652 11.5665 21.1286 11.6361 21.0081C12.0386 20.341 12.4334 19.6659 12.8282 18.9908C13.014 18.6774 12.9908 18.5086 12.7508 18.2273C12.6966 18.1631 12.6424 18.1068 12.5805 18.0505C12.2244 17.7371 11.8064 17.5523 11.3652 17.4237C11.2026 17.3755 11.0788 17.4237 10.9704 17.5523C10.9162 17.6166 10.8698 17.6809 10.8233 17.7532C10.4363 18.4122 10.0493 19.0632 9.66997 19.7222C9.64674 19.7704 9.639 19.8427 9.65448 19.899C9.8093 20.4535 10.1963 20.7991 10.6685 21.0483C10.8775 21.1608 11.102 21.217 11.3188 21.2894ZM8.84944 15.6315C8.48563 15.6074 8.35403 15.6797 8.27662 15.8645C8.17599 16.1056 8.0831 16.3468 7.96699 16.5798C7.77347 16.9656 7.55673 17.3433 7.37095 17.7371C7.21614 18.0586 7.27806 18.4363 7.53351 18.6774C7.85088 18.9828 8.23018 19.1837 8.65592 19.2802C8.81074 19.3123 8.94233 19.2721 9.03522 19.1194C9.38356 18.5327 9.73963 17.9541 10.0802 17.3674C10.1809 17.1986 10.266 17.0218 10.3512 16.845C10.3744 16.7888 10.3976 16.7084 10.3744 16.6521C10.2892 16.3789 10.1499 16.1378 9.90219 15.9851C9.54611 15.7601 9.15907 15.6476 8.84944 15.6315ZM6.26402 14.6912C6.06276 14.6831 5.90794 14.7474 5.80731 14.9403C5.62927 15.2618 5.45124 15.5752 5.2732 15.8967C5.21127 16.0172 5.16483 16.1458 5.11838 16.2825C5.07194 16.4191 5.1029 16.5477 5.19579 16.6602C5.5209 17.0299 5.93117 17.2308 6.40335 17.3031C6.53495 17.3192 6.63558 17.271 6.70524 17.1504C6.92973 16.7325 7.14647 16.3146 7.37095 15.8887C7.4561 15.7199 7.44062 15.5591 7.35547 15.3984C7.11551 14.9644 6.74395 14.7314 6.26402 14.6912Z' fill='white'/%3E%3C/svg%3E%0A") no-repeat center
}

.nav-team span {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url("data:image/svg+xml,%3Csvg width='27' height='24' viewBox='0 0 27 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.1875 21.2175C0.326312 20.8265 0.427266 20.411 0.591316 20.0322C0.831082 19.5068 1.24752 19.0913 1.75229 18.7858C2.74921 18.1748 3.74613 17.5638 4.75567 16.965C5.19735 16.7084 5.38664 16.354 5.39926 15.853C5.41187 15.2665 5.32354 14.7655 4.88187 14.3133C4.36448 13.7757 4.06161 13.1158 3.83447 12.407C3.80923 12.3215 3.74613 12.2237 3.67042 12.1626C3.39279 11.8816 3.22874 11.5394 3.22874 11.1484C3.21612 10.6352 3.2035 10.1219 3.24136 9.62091C3.2666 9.36429 3.41803 9.1199 3.50637 8.86328C3.55684 8.71664 3.64518 8.57 3.64518 8.41114C3.67042 7.99567 3.6578 7.59241 3.64518 7.17694C3.60732 5.29508 4.9071 3.40101 7.29214 3.04663C8.54145 2.86333 9.7529 2.93665 10.9139 3.44988C10.9517 3.47432 11.0022 3.47432 10.9896 3.47432C11.2041 2.96109 11.3555 2.42342 11.6332 1.97128C12.2389 0.969253 13.2232 0.45602 14.3589 0.211623C15.8228 -0.0938731 17.274 -0.0816533 18.7252 0.333822C20.5045 0.847055 21.5771 2.30122 21.5393 4.09754C21.5267 4.84295 21.5267 5.60058 21.5393 6.34599C21.5393 6.43153 21.5771 6.52929 21.6276 6.59039C21.88 6.92032 21.981 7.29914 21.981 7.70239C21.981 8.19119 21.981 8.6922 21.981 9.18099C21.981 9.8653 21.6907 10.3908 21.085 10.7451C21.0093 10.794 20.9336 10.8796 20.9083 10.9651C20.555 11.8938 20.0755 12.7492 19.4571 13.5313C19.4066 13.5924 19.3688 13.6779 19.3688 13.7512C19.3562 14.1911 19.3562 14.6188 19.3688 15.0587C19.3814 15.572 19.6716 15.9141 20.1259 16.1341C21.4257 16.7573 22.7255 17.3927 24.0253 18.0159C25.2241 18.5903 25.9939 19.5068 26.2589 20.7899C26.2841 20.8998 26.3094 21.022 26.3094 21.132C26.3094 21.8041 26.3094 22.4762 26.3094 23.1972C26.2084 23.1972 26.0822 23.1972 25.9687 23.1972C17.5011 23.1972 9.02098 23.1972 0.55346 23.1972C0.439886 23.1972 0.313693 23.2094 0.20012 23.2094C0.187501 22.5373 0.1875 21.8774 0.1875 21.2175ZM7.19119 22.3173C13.2737 22.3173 19.3562 22.3173 25.426 22.3173C25.426 21.8896 25.4639 21.4864 25.4134 21.0831C25.2998 20.1422 24.8077 19.4212 23.9622 18.9324C23.5584 18.7003 23.1167 18.5047 22.7003 18.297C21.7033 17.8082 20.7064 17.3316 19.7095 16.8551C18.9523 16.4885 18.5233 15.9019 18.498 15.0832C18.4728 14.5333 18.4854 13.9834 18.498 13.4335C18.498 13.3602 18.5485 13.2746 18.5864 13.2135C19.3183 12.3459 19.8483 11.3806 20.2016 10.3174C20.2521 10.183 20.3152 10.0975 20.4667 10.0608C20.8705 9.93863 21.0976 9.66979 21.1102 9.25431C21.1229 8.67998 21.1355 8.10565 21.0976 7.53131C21.085 7.3358 20.9209 7.1525 20.8326 6.95698C20.7821 6.83478 20.6812 6.71259 20.6812 6.59039C20.6686 5.71056 20.6812 4.83073 20.6812 3.9509C20.6938 2.70447 19.9997 1.66579 18.7883 1.22587C17.2487 0.66376 15.6713 0.663758 14.1065 1.12811C12.7058 1.55581 11.9234 2.63115 11.9487 3.9509C11.9613 4.84295 11.9613 5.735 11.9613 6.61482C11.9613 6.7248 11.8982 6.847 11.8225 6.93254C11.6584 7.11584 11.5322 7.32358 11.5322 7.56798C11.5322 8.11787 11.5322 8.66776 11.5322 9.22988C11.5322 9.52315 11.671 9.74311 11.8982 9.9264C11.9991 10.0119 12.1001 10.1464 12.1379 10.2686C12.4156 11.3317 12.9203 12.2971 13.6018 13.1769C13.6649 13.2624 13.7027 13.3846 13.7027 13.4946C13.7153 13.9467 13.7027 14.3989 13.7027 14.851C13.7153 15.7308 13.3115 16.3785 12.5039 16.794C11.3051 17.4172 10.1189 18.0526 8.92003 18.6758C7.31738 19.5312 7.02714 20.8143 7.19119 22.3173ZM6.24475 22.3296C6.25736 22.2929 6.26998 22.2807 6.26998 22.2562C6.26998 22.0118 6.26998 21.7674 6.2826 21.5108C6.29522 20.0322 6.92619 18.8713 8.25121 18.1015C8.73074 17.8204 9.22289 17.5638 9.72766 17.3194C10.2198 17.075 10.6615 16.7695 11.1663 16.5496C11.5322 16.3907 11.8729 16.1952 12.2137 15.9997C12.6301 15.7675 12.832 15.4009 12.8194 14.9365C12.8194 14.5699 12.832 14.1911 12.8194 13.8245C12.8194 13.7023 12.7689 13.5679 12.7058 13.4702C12.1001 12.627 11.6332 11.7105 11.3429 10.7207C11.3177 10.6229 11.2546 10.5252 11.1789 10.4519C10.8508 10.1341 10.6741 9.75533 10.6615 9.30319C10.6489 8.70442 10.6236 8.09343 10.6741 7.49466C10.6993 7.20138 10.8634 6.9081 10.9644 6.61482C11.0022 6.49263 11.0779 6.37043 11.0779 6.24823C11.0905 5.78387 11.0527 5.3073 11.0905 4.84295C11.1158 4.52523 10.9896 4.36637 10.712 4.24417C9.63933 3.74316 8.51621 3.69428 7.38048 3.87758C5.70212 4.14642 4.55377 5.46616 4.55377 7.10362C4.55377 7.67795 4.56638 8.25229 4.55377 8.83884C4.55377 8.94882 4.49067 9.08324 4.41495 9.15656C4.21304 9.35207 4.11209 9.55981 4.12471 9.84087C4.13733 10.2441 4.13733 10.6474 4.12471 11.0506C4.12471 11.3195 4.23828 11.515 4.45281 11.6861C4.52853 11.7472 4.60424 11.8449 4.62948 11.9305C4.88187 12.908 5.43711 13.7146 6.13117 14.4478C6.20689 14.5211 6.25736 14.6555 6.26998 14.7655C6.2826 15.1687 6.26998 15.572 6.2826 15.9752C6.29522 16.6962 5.97974 17.2339 5.34878 17.6249C4.33924 18.2237 3.34232 18.8469 2.34539 19.4457C1.26014 20.1055 0.944656 21.1198 1.10871 22.3418C2.79969 22.3296 4.51591 22.3296 6.24475 22.3296Z' fill='%2367779A'/%3E%3C/svg%3E%0A") no-repeat center
}

.nav-team.active span {
    background: url("data:image/svg+xml,%3Csvg width='27' height='24' viewBox='0 0 27 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.1875 21.2175C0.326312 20.8265 0.427266 20.411 0.591316 20.0322C0.831082 19.5068 1.24752 19.0913 1.75229 18.7858C2.74921 18.1748 3.74613 17.5638 4.75567 16.965C5.19735 16.7084 5.38664 16.354 5.39926 15.853C5.41187 15.2665 5.32354 14.7655 4.88187 14.3133C4.36448 13.7757 4.06161 13.1158 3.83447 12.407C3.80923 12.3215 3.74613 12.2237 3.67042 12.1626C3.39279 11.8816 3.22874 11.5394 3.22874 11.1484C3.21612 10.6352 3.2035 10.1219 3.24136 9.62091C3.2666 9.36429 3.41803 9.1199 3.50637 8.86328C3.55684 8.71664 3.64518 8.57 3.64518 8.41114C3.67042 7.99567 3.6578 7.59241 3.64518 7.17694C3.60732 5.29508 4.9071 3.40101 7.29214 3.04663C8.54145 2.86333 9.7529 2.93665 10.9139 3.44988C10.9517 3.47432 11.0022 3.47432 10.9896 3.47432C11.2041 2.96109 11.3555 2.42342 11.6332 1.97128C12.2389 0.969253 13.2232 0.45602 14.3589 0.211623C15.8228 -0.0938731 17.274 -0.0816533 18.7252 0.333822C20.5045 0.847055 21.5771 2.30122 21.5393 4.09754C21.5267 4.84295 21.5267 5.60058 21.5393 6.34599C21.5393 6.43153 21.5771 6.52929 21.6276 6.59039C21.88 6.92032 21.981 7.29914 21.981 7.70239C21.981 8.19119 21.981 8.6922 21.981 9.18099C21.981 9.8653 21.6907 10.3908 21.085 10.7451C21.0093 10.794 20.9336 10.8796 20.9083 10.9651C20.555 11.8938 20.0755 12.7492 19.4571 13.5313C19.4066 13.5924 19.3688 13.6779 19.3688 13.7512C19.3562 14.1911 19.3562 14.6188 19.3688 15.0587C19.3814 15.572 19.6716 15.9141 20.1259 16.1341C21.4257 16.7573 22.7255 17.3927 24.0253 18.0159C25.2241 18.5903 25.9939 19.5068 26.2589 20.7899C26.2841 20.8998 26.3094 21.022 26.3094 21.132C26.3094 21.8041 26.3094 22.4762 26.3094 23.1972C26.2084 23.1972 26.0822 23.1972 25.9687 23.1972C17.5011 23.1972 9.02098 23.1972 0.55346 23.1972C0.439886 23.1972 0.313693 23.2094 0.20012 23.2094C0.187501 22.5373 0.1875 21.8774 0.1875 21.2175ZM7.19119 22.3173C13.2737 22.3173 19.3562 22.3173 25.426 22.3173C25.426 21.8896 25.4639 21.4864 25.4134 21.0831C25.2998 20.1422 24.8077 19.4212 23.9622 18.9324C23.5584 18.7003 23.1167 18.5047 22.7003 18.297C21.7033 17.8082 20.7064 17.3316 19.7095 16.8551C18.9523 16.4885 18.5233 15.9019 18.498 15.0832C18.4728 14.5333 18.4854 13.9834 18.498 13.4335C18.498 13.3602 18.5485 13.2746 18.5864 13.2135C19.3183 12.3459 19.8483 11.3806 20.2016 10.3174C20.2521 10.183 20.3152 10.0975 20.4667 10.0608C20.8705 9.93863 21.0976 9.66979 21.1102 9.25431C21.1229 8.67998 21.1355 8.10565 21.0976 7.53131C21.085 7.3358 20.9209 7.1525 20.8326 6.95698C20.7821 6.83478 20.6812 6.71259 20.6812 6.59039C20.6686 5.71056 20.6812 4.83073 20.6812 3.9509C20.6938 2.70447 19.9997 1.66579 18.7883 1.22587C17.2487 0.66376 15.6713 0.663758 14.1065 1.12811C12.7058 1.55581 11.9234 2.63115 11.9487 3.9509C11.9613 4.84295 11.9613 5.735 11.9613 6.61482C11.9613 6.7248 11.8982 6.847 11.8225 6.93254C11.6584 7.11584 11.5322 7.32358 11.5322 7.56798C11.5322 8.11787 11.5322 8.66776 11.5322 9.22988C11.5322 9.52315 11.671 9.74311 11.8982 9.9264C11.9991 10.0119 12.1001 10.1464 12.1379 10.2686C12.4156 11.3317 12.9203 12.2971 13.6018 13.1769C13.6649 13.2624 13.7027 13.3846 13.7027 13.4946C13.7153 13.9467 13.7027 14.3989 13.7027 14.851C13.7153 15.7308 13.3115 16.3785 12.5039 16.794C11.3051 17.4172 10.1189 18.0526 8.92003 18.6758C7.31738 19.5312 7.02714 20.8143 7.19119 22.3173ZM6.24475 22.3296C6.25736 22.2929 6.26998 22.2807 6.26998 22.2562C6.26998 22.0118 6.26998 21.7674 6.2826 21.5108C6.29522 20.0322 6.92619 18.8713 8.25121 18.1015C8.73074 17.8204 9.22289 17.5638 9.72766 17.3194C10.2198 17.075 10.6615 16.7695 11.1663 16.5496C11.5322 16.3907 11.8729 16.1952 12.2137 15.9997C12.6301 15.7675 12.832 15.4009 12.8194 14.9365C12.8194 14.5699 12.832 14.1911 12.8194 13.8245C12.8194 13.7023 12.7689 13.5679 12.7058 13.4702C12.1001 12.627 11.6332 11.7105 11.3429 10.7207C11.3177 10.6229 11.2546 10.5252 11.1789 10.4519C10.8508 10.1341 10.6741 9.75533 10.6615 9.30319C10.6489 8.70442 10.6236 8.09343 10.6741 7.49466C10.6993 7.20138 10.8634 6.9081 10.9644 6.61482C11.0022 6.49263 11.0779 6.37043 11.0779 6.24823C11.0905 5.78387 11.0527 5.3073 11.0905 4.84295C11.1158 4.52523 10.9896 4.36637 10.712 4.24417C9.63933 3.74316 8.51621 3.69428 7.38048 3.87758C5.70212 4.14642 4.55377 5.46616 4.55377 7.10362C4.55377 7.67795 4.56638 8.25229 4.55377 8.83884C4.55377 8.94882 4.49067 9.08324 4.41495 9.15656C4.21304 9.35207 4.11209 9.55981 4.12471 9.84087C4.13733 10.2441 4.13733 10.6474 4.12471 11.0506C4.12471 11.3195 4.23828 11.515 4.45281 11.6861C4.52853 11.7472 4.60424 11.8449 4.62948 11.9305C4.88187 12.908 5.43711 13.7146 6.13117 14.4478C6.20689 14.5211 6.25736 14.6555 6.26998 14.7655C6.2826 15.1687 6.26998 15.572 6.2826 15.9752C6.29522 16.6962 5.97974 17.2339 5.34878 17.6249C4.33924 18.2237 3.34232 18.8469 2.34539 19.4457C1.26014 20.1055 0.944656 21.1198 1.10871 22.3418C2.79969 22.3296 4.51591 22.3296 6.24475 22.3296Z' fill='white'/%3E%3C/svg%3E%0A") no-repeat center
}

.nav-money span {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url("data:image/svg+xml,%3Csvg width='27' height='26' viewBox='0 0 27 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M26.3023 6.8613C26.147 7.0343 26.0199 7.23875 25.8434 7.36456C24.5092 8.31603 23.1609 9.25963 21.8125 10.1954C21.6642 10.2976 21.4878 10.3684 21.3183 10.3841C21.0642 10.4077 20.8877 10.2426 20.7959 9.98306C20.7042 9.72357 20.7536 9.49553 20.923 9.30681C21.0077 9.21245 21.1065 9.14168 21.2054 9.07091C22.229 8.34748 23.2597 7.63192 24.2833 6.90848C24.361 6.85344 24.4386 6.7984 24.5374 6.71976C24.4386 6.64899 24.361 6.60181 24.2833 6.54677C21.6431 4.87187 19.0028 3.20483 16.3626 1.52994C16.2143 1.43558 16.1014 1.43558 15.9531 1.5378C14.4283 2.61508 12.8964 3.6845 11.3645 4.76178C11.3009 4.80896 11.2374 4.85614 11.1527 4.91905C11.2586 4.98982 11.3433 5.04486 11.428 5.09991C14.1812 6.84558 16.9273 8.59125 19.6876 10.3212C20.0194 10.5256 20.1535 10.793 20.1465 11.2098C20.1394 13.6946 20.1394 16.1873 20.1465 18.6721C20.1465 19.0731 20.0264 19.3483 19.7158 19.5607C18.784 20.1976 17.8592 20.8502 16.9344 21.5029C16.7014 21.668 16.4614 21.7703 16.1932 21.613C15.9249 21.4479 15.8825 21.1726 15.8825 20.8581C15.8896 18.5148 15.8825 16.1637 15.8896 13.8204C15.8896 13.6002 15.819 13.4901 15.6566 13.3879C12.8187 11.6029 9.98788 9.81007 7.16409 8.00936C6.9876 7.89927 6.87465 7.90713 6.71228 8.02508C5.20861 9.08664 3.69789 10.1482 2.18716 11.2019C2.10951 11.2569 2.03891 11.312 1.94008 11.3827C2.04597 11.4535 2.12363 11.5086 2.20128 11.5557C4.83446 13.2228 7.46764 14.8898 10.1008 16.5647C10.2773 16.6748 10.3903 16.6591 10.5526 16.5411C11.781 15.6683 13.0234 14.8033 14.2589 13.9383C14.4565 13.7968 14.6542 13.6789 14.9013 13.7889C15.3037 13.9541 15.4237 14.5045 15.1201 14.8505C15.0495 14.9291 14.9648 14.9999 14.8801 15.0549C13.5176 16.0143 12.1481 16.9657 10.7927 17.9329C10.4962 18.1452 10.2279 18.1531 9.91728 17.9565C6.82523 15.9907 3.72613 14.0327 0.627017 12.0669C0.0481408 11.6973 0.0410813 11.1547 0.605839 10.7537C5.6463 7.23088 10.6726 3.70023 15.699 0.169572C15.9955 -0.0427387 16.2637 -0.0584652 16.5744 0.138119C19.6664 2.10396 22.7726 4.06194 25.8646 6.03565C26.0411 6.14574 26.1611 6.35805 26.3023 6.52318C26.3023 6.63327 26.3023 6.75122 26.3023 6.8613ZM8.08888 7.06575C8.20183 7.14439 8.2936 7.19943 8.37832 7.25447C11.1245 8.99228 13.8635 10.7301 16.6097 12.46C16.9415 12.6723 17.0897 12.9318 17.0897 13.3643C17.0756 15.4088 17.0826 17.4533 17.0826 19.4899C17.0826 19.5921 17.0826 19.6865 17.0826 19.8359C17.1956 19.7651 17.2733 19.7258 17.3368 19.6786C17.8098 19.3483 18.2828 19.0024 18.7628 18.6878C18.9181 18.5856 18.9816 18.4676 18.9746 18.2632C18.9675 16.3524 18.9675 14.4416 18.9675 12.5308C18.9675 12.4364 18.9675 12.3499 18.9675 12.2084C18.7416 12.3657 18.5581 12.4915 18.3675 12.6173C18.0357 12.8375 17.6898 12.7824 17.5133 12.4836C17.3156 12.1534 17.4003 11.7602 17.7392 11.5086C17.951 11.3513 18.1627 11.2019 18.4028 11.0368C18.3039 10.9739 18.2263 10.9188 18.1486 10.8638C17.1674 10.2426 16.1861 9.62135 15.2048 9.00014C13.5388 7.94645 11.8728 6.88489 10.1997 5.83907C10.1149 5.78402 9.9667 5.76043 9.88904 5.81548C9.30311 6.20864 8.71717 6.6254 8.08888 7.06575Z' fill='%2367779A'/%3E%3Cpath d='M26.3023 12.1455C26.1187 12.3342 25.9564 12.5544 25.7516 12.6959C24.4527 13.6238 23.1467 14.5281 21.8407 15.4481C21.7489 15.511 21.6501 15.5818 21.5512 15.629C21.2971 15.7469 21.0006 15.6368 20.8594 15.3852C20.7041 15.1178 20.7324 14.8033 20.93 14.5831C21.0006 14.5045 21.0853 14.4337 21.17 14.3708C22.5325 13.4115 23.895 12.46 25.2575 11.5007C25.7446 11.1625 26.034 11.249 26.3093 11.7995C26.3023 11.9174 26.3023 12.0275 26.3023 12.1455Z' fill='%2367779A'/%3E%3Cpath d='M26.3023 9.47203C26.147 9.65289 26.0129 9.87306 25.8293 9.99887C24.4739 10.9661 23.1114 11.9175 21.7419 12.869C21.3254 13.1599 20.9301 13.0341 20.7889 12.578C20.7112 12.3421 20.7606 12.1298 20.9089 11.949C20.9795 11.8625 21.0783 11.7917 21.1701 11.7209C22.5255 10.7695 23.8809 9.81802 25.2363 8.86656C25.7376 8.51271 26.0341 8.60707 26.3023 9.18109C26.3023 9.28331 26.3023 9.37767 26.3023 9.47203Z' fill='%2367779A'/%3E%3Cpath d='M26.3025 14.7562C26.126 14.9449 25.9777 15.1651 25.7801 15.3066C24.467 16.2423 23.1398 17.1702 21.8197 18.0902C21.6926 18.1767 21.5514 18.2554 21.4032 18.2868C21.149 18.3419 20.9231 18.1924 20.8243 17.9408C20.7114 17.6735 20.7467 17.4218 20.9302 17.2095C21.0079 17.123 21.0996 17.0523 21.1914 16.9894C22.5398 16.0379 23.8881 15.0943 25.2435 14.1507C25.7236 13.8126 26.0201 13.8912 26.3095 14.4259C26.3025 14.5281 26.3025 14.6382 26.3025 14.7562Z' fill='%2367779A'/%3E%3Cpath d='M15.3034 19.655C15.3104 19.9223 15.1904 20.1111 14.9998 20.2448C13.5668 21.2513 12.1266 22.2578 10.6936 23.2643C10.4253 23.453 10.1853 23.3744 9.93113 23.2171C7.7074 21.8017 5.47661 20.3942 3.25288 18.9866C2.3775 18.4283 1.49507 17.8778 0.619696 17.3195C0.259663 17.0915 0.139652 16.8084 0.245544 16.4703C0.351436 16.1322 0.647934 15.9513 0.951491 16.0614C1.07856 16.1086 1.19857 16.1793 1.31858 16.2501C4.25532 18.1059 7.185 19.9617 10.1147 21.8253C10.277 21.9275 10.39 21.9197 10.5453 21.8096C11.7807 20.9289 13.0232 20.0639 14.2656 19.191C14.4704 19.0495 14.6822 18.9316 14.9363 19.0574C15.1763 19.1753 15.2963 19.3719 15.3034 19.655Z' fill='%2367779A'/%3E%3Cpath d='M15.3034 22.2814C15.3175 22.5487 15.1905 22.7375 14.9999 22.8711C13.5668 23.8855 12.1267 24.8842 10.6936 25.8907C10.4253 26.0794 10.1853 26.0008 9.93117 25.8356C8.11688 24.6797 6.3026 23.5395 4.48832 22.3836C3.21761 21.5815 1.95397 20.7795 0.683262 19.9696C0.598549 19.9145 0.506775 19.8516 0.429121 19.7808C0.203218 19.5685 0.153802 19.2383 0.294991 18.9631C0.429121 18.7036 0.7115 18.5777 0.97976 18.6721C1.09271 18.7114 1.1986 18.7743 1.29744 18.8451C4.24124 20.7087 7.18503 22.5723 10.1218 24.4438C10.2841 24.546 10.39 24.546 10.5524 24.4359C11.7878 23.5552 13.0373 22.6903 14.2798 21.8174C14.4845 21.6759 14.6963 21.558 14.9504 21.6759C15.1764 21.8017 15.2964 21.9983 15.3034 22.2814Z' fill='%2367779A'/%3E%3Cpath d='M10.3688 20.7795C10.2206 20.7166 10.0935 20.6773 9.97351 20.5986C6.85323 18.6249 3.73294 16.6512 0.612653 14.6775C0.365571 14.5203 0.189084 14.3158 0.217322 13.9777C0.238501 13.7182 0.372631 13.5216 0.598534 13.4272C0.831496 13.3329 1.02916 13.4272 1.22683 13.5531C2.89286 14.6068 4.5589 15.6604 6.22493 16.722C7.52388 17.5398 8.82282 18.3654 10.1147 19.1911C10.2771 19.2933 10.39 19.3012 10.5453 19.1832C11.7737 18.3104 13.0091 17.4454 14.2516 16.5805C14.3998 16.4782 14.5763 16.4075 14.7457 16.3917C14.9857 16.3681 15.1622 16.5254 15.254 16.777C15.3458 17.0287 15.3175 17.2646 15.1481 17.4611C15.0705 17.5476 14.9787 17.6263 14.8869 17.6892C13.5244 18.6485 12.1619 19.6078 10.7924 20.5593C10.6653 20.6458 10.51 20.7008 10.3688 20.7795Z' fill='%2367779A'/%3E%3C/svg%3E%0A") no-repeat center
}

.nav-money.active span {
    background: url("data:image/svg+xml,%3Csvg width='27' height='26' viewBox='0 0 27 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M26.3023 6.8613C26.147 7.0343 26.0199 7.23875 25.8434 7.36456C24.5092 8.31603 23.1609 9.25963 21.8125 10.1954C21.6642 10.2976 21.4878 10.3684 21.3183 10.3841C21.0642 10.4077 20.8877 10.2426 20.7959 9.98306C20.7042 9.72357 20.7536 9.49553 20.923 9.30681C21.0077 9.21245 21.1065 9.14168 21.2054 9.07091C22.229 8.34748 23.2597 7.63192 24.2833 6.90848C24.361 6.85344 24.4386 6.7984 24.5374 6.71976C24.4386 6.64899 24.361 6.60181 24.2833 6.54677C21.6431 4.87187 19.0028 3.20483 16.3626 1.52994C16.2143 1.43558 16.1014 1.43558 15.9531 1.5378C14.4283 2.61508 12.8964 3.6845 11.3645 4.76178C11.3009 4.80896 11.2374 4.85614 11.1527 4.91905C11.2586 4.98982 11.3433 5.04486 11.428 5.09991C14.1812 6.84558 16.9273 8.59125 19.6876 10.3212C20.0194 10.5256 20.1535 10.793 20.1465 11.2098C20.1394 13.6946 20.1394 16.1873 20.1465 18.6721C20.1465 19.0731 20.0264 19.3483 19.7158 19.5607C18.784 20.1976 17.8592 20.8502 16.9344 21.5029C16.7014 21.668 16.4614 21.7703 16.1932 21.613C15.9249 21.4479 15.8825 21.1726 15.8825 20.8581C15.8896 18.5148 15.8825 16.1637 15.8896 13.8204C15.8896 13.6002 15.819 13.4901 15.6566 13.3879C12.8187 11.6029 9.98788 9.81007 7.16409 8.00936C6.9876 7.89927 6.87465 7.90713 6.71228 8.02508C5.20861 9.08664 3.69789 10.1482 2.18716 11.2019C2.10951 11.2569 2.03891 11.312 1.94008 11.3827C2.04597 11.4535 2.12363 11.5086 2.20128 11.5557C4.83446 13.2228 7.46764 14.8898 10.1008 16.5647C10.2773 16.6748 10.3903 16.6591 10.5526 16.5411C11.781 15.6683 13.0234 14.8033 14.2589 13.9383C14.4565 13.7968 14.6542 13.6789 14.9013 13.7889C15.3037 13.9541 15.4237 14.5045 15.1201 14.8505C15.0495 14.9291 14.9648 14.9999 14.8801 15.0549C13.5176 16.0143 12.1481 16.9657 10.7927 17.9329C10.4962 18.1452 10.2279 18.1531 9.91728 17.9565C6.82523 15.9907 3.72613 14.0327 0.627017 12.0669C0.0481408 11.6973 0.0410813 11.1547 0.605839 10.7537C5.6463 7.23088 10.6726 3.70023 15.699 0.169572C15.9955 -0.0427387 16.2637 -0.0584652 16.5744 0.138119C19.6664 2.10396 22.7726 4.06194 25.8646 6.03565C26.0411 6.14574 26.1611 6.35805 26.3023 6.52318C26.3023 6.63327 26.3023 6.75122 26.3023 6.8613ZM8.08888 7.06575C8.20183 7.14439 8.2936 7.19943 8.37832 7.25447C11.1245 8.99228 13.8635 10.7301 16.6097 12.46C16.9415 12.6723 17.0897 12.9318 17.0897 13.3643C17.0756 15.4088 17.0826 17.4533 17.0826 19.4899C17.0826 19.5921 17.0826 19.6865 17.0826 19.8359C17.1956 19.7651 17.2733 19.7258 17.3368 19.6786C17.8098 19.3483 18.2828 19.0024 18.7628 18.6878C18.9181 18.5856 18.9816 18.4676 18.9746 18.2632C18.9675 16.3524 18.9675 14.4416 18.9675 12.5308C18.9675 12.4364 18.9675 12.3499 18.9675 12.2084C18.7416 12.3657 18.5581 12.4915 18.3675 12.6173C18.0357 12.8375 17.6898 12.7824 17.5133 12.4836C17.3156 12.1534 17.4003 11.7602 17.7392 11.5086C17.951 11.3513 18.1627 11.2019 18.4028 11.0368C18.3039 10.9739 18.2263 10.9188 18.1486 10.8638C17.1674 10.2426 16.1861 9.62135 15.2048 9.00014C13.5388 7.94645 11.8728 6.88489 10.1997 5.83907C10.1149 5.78402 9.9667 5.76043 9.88904 5.81548C9.30311 6.20864 8.71717 6.6254 8.08888 7.06575Z' fill='white'/%3E%3Cpath d='M26.3023 12.1455C26.1187 12.3342 25.9564 12.5544 25.7516 12.6959C24.4527 13.6238 23.1467 14.5281 21.8407 15.4481C21.7489 15.511 21.6501 15.5818 21.5512 15.629C21.2971 15.7469 21.0006 15.6368 20.8594 15.3852C20.7041 15.1178 20.7324 14.8033 20.93 14.5831C21.0006 14.5045 21.0853 14.4337 21.17 14.3708C22.5325 13.4115 23.895 12.46 25.2575 11.5007C25.7446 11.1625 26.034 11.249 26.3093 11.7995C26.3023 11.9174 26.3023 12.0275 26.3023 12.1455Z' fill='white'/%3E%3Cpath d='M26.3023 9.47203C26.147 9.65289 26.0129 9.87306 25.8293 9.99887C24.4739 10.9661 23.1114 11.9175 21.7419 12.869C21.3254 13.1599 20.9301 13.0341 20.7889 12.578C20.7112 12.3421 20.7606 12.1298 20.9089 11.949C20.9795 11.8625 21.0783 11.7917 21.1701 11.7209C22.5255 10.7695 23.8809 9.81802 25.2363 8.86656C25.7376 8.51271 26.0341 8.60707 26.3023 9.18109C26.3023 9.28331 26.3023 9.37767 26.3023 9.47203Z' fill='white'/%3E%3Cpath d='M26.3025 14.7562C26.126 14.9449 25.9777 15.1651 25.7801 15.3066C24.467 16.2423 23.1398 17.1702 21.8197 18.0902C21.6926 18.1767 21.5514 18.2554 21.4032 18.2868C21.149 18.3419 20.9231 18.1924 20.8243 17.9408C20.7114 17.6735 20.7467 17.4218 20.9302 17.2095C21.0079 17.123 21.0996 17.0523 21.1914 16.9894C22.5398 16.0379 23.8881 15.0943 25.2435 14.1507C25.7236 13.8126 26.0201 13.8912 26.3095 14.4259C26.3025 14.5281 26.3025 14.6382 26.3025 14.7562Z' fill='white'/%3E%3Cpath d='M15.3034 19.655C15.3104 19.9223 15.1904 20.1111 14.9998 20.2448C13.5668 21.2513 12.1266 22.2578 10.6936 23.2643C10.4253 23.453 10.1853 23.3744 9.93113 23.2171C7.7074 21.8017 5.47661 20.3942 3.25288 18.9866C2.3775 18.4283 1.49507 17.8778 0.619696 17.3195C0.259663 17.0915 0.139652 16.8084 0.245544 16.4703C0.351436 16.1322 0.647934 15.9513 0.951491 16.0614C1.07856 16.1086 1.19857 16.1793 1.31858 16.2501C4.25532 18.1059 7.185 19.9617 10.1147 21.8253C10.277 21.9275 10.39 21.9197 10.5453 21.8096C11.7807 20.9289 13.0232 20.0639 14.2656 19.191C14.4704 19.0495 14.6822 18.9316 14.9363 19.0574C15.1763 19.1753 15.2963 19.3719 15.3034 19.655Z' fill='white'/%3E%3Cpath d='M15.3034 22.2814C15.3175 22.5487 15.1905 22.7375 14.9999 22.8711C13.5668 23.8855 12.1267 24.8842 10.6936 25.8907C10.4253 26.0794 10.1853 26.0008 9.93117 25.8356C8.11688 24.6797 6.3026 23.5395 4.48832 22.3836C3.21761 21.5815 1.95397 20.7795 0.683262 19.9696C0.598549 19.9145 0.506775 19.8516 0.429121 19.7808C0.203218 19.5685 0.153802 19.2383 0.294991 18.9631C0.429121 18.7036 0.7115 18.5777 0.97976 18.6721C1.09271 18.7114 1.1986 18.7743 1.29744 18.8451C4.24124 20.7087 7.18503 22.5723 10.1218 24.4438C10.2841 24.546 10.39 24.546 10.5524 24.4359C11.7878 23.5552 13.0373 22.6903 14.2798 21.8174C14.4845 21.6759 14.6963 21.558 14.9504 21.6759C15.1764 21.8017 15.2964 21.9983 15.3034 22.2814Z' fill='white'/%3E%3Cpath d='M10.3688 20.7795C10.2206 20.7166 10.0935 20.6773 9.97351 20.5986C6.85323 18.6249 3.73294 16.6512 0.612653 14.6775C0.365571 14.5203 0.189084 14.3158 0.217322 13.9777C0.238501 13.7182 0.372631 13.5216 0.598534 13.4272C0.831496 13.3329 1.02916 13.4272 1.22683 13.5531C2.89286 14.6068 4.5589 15.6604 6.22493 16.722C7.52388 17.5398 8.82282 18.3654 10.1147 19.1911C10.2771 19.2933 10.39 19.3012 10.5453 19.1832C11.7737 18.3104 13.0091 17.4454 14.2516 16.5805C14.3998 16.4782 14.5763 16.4075 14.7457 16.3917C14.9857 16.3681 15.1622 16.5254 15.254 16.777C15.3458 17.0287 15.3175 17.2646 15.1481 17.4611C15.0705 17.5476 14.9787 17.6263 14.8869 17.6892C13.5244 18.6485 12.1619 19.6078 10.7924 20.5593C10.6653 20.6458 10.51 20.7008 10.3688 20.7795Z' fill='white'/%3E%3C/svg%3E%0A") no-repeat center
}

.nav-debet span {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url("data:image/svg+xml,%3Csvg width='26' height='26' viewBox='0 0 26 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath d='M7.75552 17.0636C8.72533 17.0636 9.51125 16.2887 9.51125 15.333C9.51125 14.3771 8.72513 13.6023 7.75513 13.6023H6.66591C6.49432 13.6023 6.35547 13.7411 6.35547 13.9127V16.7531C6.35547 16.9245 6.49432 17.0636 6.66591 17.0636H7.75552ZM6.97635 14.1978H7.75513C8.38216 14.1978 8.89037 14.706 8.89037 15.3328C8.89037 15.9597 8.38216 16.4679 7.75513 16.4679H6.97635V14.1978Z' fill='%2367779A'/%3E%3Cpath d='M12.4208 14.1978C12.5853 14.1978 12.7186 14.0645 12.7186 13.9C12.7186 13.7356 12.5853 13.6023 12.4208 13.6023H10.484C10.3124 13.6023 10.1733 13.7411 10.1733 13.9127V16.7531C10.1733 16.9245 10.3124 17.0636 10.484 17.0636H12.4208C12.5853 17.0636 12.7186 16.9303 12.7186 16.7658C12.7186 16.6014 12.5853 16.4681 12.4208 16.4681H10.7944V15.7325H12.1153C12.2798 15.7325 12.4131 15.5992 12.4131 15.4348C12.4131 15.2703 12.2798 15.137 12.1153 15.137H10.7944V14.1978H12.4208Z' fill='%2367779A'/%3E%3Cpath d='M14.8667 13.6023H13.6908C13.5194 13.6023 13.3804 13.7411 13.3804 13.9127V16.7531C13.3804 16.9245 13.5194 17.0636 13.6908 17.0636H14.9939C16.0061 17.0636 16.4021 15.8224 15.5951 15.2717C16.2168 14.6576 15.775 13.6023 14.8667 13.6023ZM14.0013 14.1978H14.8667C15.0865 14.1978 15.2636 14.3819 15.2636 14.6092C15.2636 14.8383 15.0865 15.0224 14.8667 15.0224H14.0013V14.1978ZM14.9939 16.4681H14.0013V15.6181H14.9939C15.2224 15.6181 15.4063 15.8077 15.4063 16.0422C15.4063 16.2768 15.221 16.4681 14.9939 16.4681Z' fill='%2367779A'/%3E%3Cpath d='M18.089 17.0636C18.2606 17.0636 18.3995 16.9245 18.3995 16.7531V14.1978H19.3437C19.5083 14.1978 19.6416 14.0645 19.6416 13.9C19.6416 13.7356 19.5083 13.6023 19.3437 13.6023H16.8344C16.6697 13.6023 16.5366 13.7356 16.5366 13.9C16.5366 14.0645 16.6697 14.1978 16.8344 14.1978H17.7786V16.7531C17.7786 16.9245 17.9176 17.0636 18.089 17.0636Z' fill='%2367779A'/%3E%3Cpath d='M25.6164 21.0365C25.8266 21.0365 25.997 20.8661 25.997 20.6557C25.9518 19.5914 26.1285 19.0517 25.7501 18.3539L21.0899 9.75913C20.5791 8.8169 19.596 8.23172 18.5242 8.23172H18.1408V6.63667C18.1408 5.70992 17.3868 4.95573 16.4601 4.95573H15.7725V4.09424C15.7725 2.56465 14.5282 1.32031 12.9986 1.32031C11.469 1.32031 10.2247 2.56465 10.2247 4.09424V4.95573H9.53716C8.6104 4.95573 7.85641 5.70992 7.85641 6.63667V8.23172H7.47298C6.40121 8.23172 5.41812 8.8169 4.90733 9.75913L0.246963 18.3541C0.085495 18.652 0 18.9886 0 19.3276V22.8256C0 23.8614 0.84285 24.7043 1.87871 24.7043H24.1183C25.1544 24.7043 25.997 23.8614 25.997 22.8256V22.0775C25.997 21.8671 25.8266 21.6967 25.6164 21.6967C25.4059 21.6967 25.2355 21.8671 25.2355 22.0775V22.8256C25.2355 23.4415 24.7344 23.9426 24.1183 23.9426H1.87871C1.26279 23.9426 0.761719 23.4415 0.761719 22.8256V19.3276C0.761719 18.7476 0.691895 19.2453 5.57661 10.1221C5.9543 9.42587 6.68071 8.99344 7.47278 8.99344H18.5242C19.3163 8.99344 20.0429 9.42607 20.4204 10.1221C25.3202 19.2731 25.2355 18.7472 25.2355 19.3276V20.6557C25.2355 20.8659 25.4059 21.0365 25.6164 21.0365ZM8.61794 8.23172V6.63667C8.61794 6.12985 9.03033 5.71745 9.53716 5.71745H12.2877C12.4981 5.71745 12.6685 5.54706 12.6685 5.33659C12.6685 5.12633 12.4981 4.95573 12.2877 4.95573H10.9864V4.09424C10.9864 2.98459 11.889 2.08203 12.9986 2.08203C14.1081 2.08203 15.0108 2.98459 15.0108 4.09424V4.95573H13.7094C13.4991 4.95573 13.3287 5.12633 13.3287 5.33659C13.3287 5.54706 13.4991 5.71745 13.7094 5.71745H16.4599C16.9667 5.71745 17.3791 6.12985 17.3791 6.63667V8.23172H8.61794Z' fill='%2367779A'/%3E%3Cpath d='M2.91943 19.3276C2.91943 19.5379 3.09003 19.7083 3.30029 19.7083H22.6965C22.907 19.7083 23.0774 19.5379 23.0774 19.3276C23.0774 19.1172 22.907 18.9468 22.6965 18.9468H3.30029C3.09003 18.9468 2.91943 19.1172 2.91943 19.3276Z' fill='%2367779A'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0'%3E%3Crect width='26' height='26' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A") no-repeat center
}

.nav-debet.active span {
    background: url("data:image/svg+xml,%3Csvg width='26' height='26' viewBox='0 0 26 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath d='M7.75552 17.0636C8.72533 17.0636 9.51125 16.2887 9.51125 15.333C9.51125 14.3771 8.72513 13.6023 7.75513 13.6023H6.66591C6.49432 13.6023 6.35547 13.7411 6.35547 13.9127V16.7531C6.35547 16.9245 6.49432 17.0636 6.66591 17.0636H7.75552ZM6.97635 14.1978H7.75513C8.38216 14.1978 8.89037 14.706 8.89037 15.3328C8.89037 15.9597 8.38216 16.4679 7.75513 16.4679H6.97635V14.1978Z' fill='white'/%3E%3Cpath d='M12.4208 14.1978C12.5853 14.1978 12.7186 14.0645 12.7186 13.9C12.7186 13.7356 12.5853 13.6023 12.4208 13.6023H10.484C10.3124 13.6023 10.1733 13.7411 10.1733 13.9127V16.7531C10.1733 16.9245 10.3124 17.0636 10.484 17.0636H12.4208C12.5853 17.0636 12.7186 16.9303 12.7186 16.7658C12.7186 16.6014 12.5853 16.4681 12.4208 16.4681H10.7944V15.7325H12.1153C12.2798 15.7325 12.4131 15.5992 12.4131 15.4348C12.4131 15.2703 12.2798 15.137 12.1153 15.137H10.7944V14.1978H12.4208Z' fill='white'/%3E%3Cpath d='M14.8667 13.6023H13.6908C13.5194 13.6023 13.3804 13.7411 13.3804 13.9127V16.7531C13.3804 16.9245 13.5194 17.0636 13.6908 17.0636H14.9939C16.0061 17.0636 16.4021 15.8224 15.5951 15.2717C16.2168 14.6576 15.775 13.6023 14.8667 13.6023ZM14.0013 14.1978H14.8667C15.0865 14.1978 15.2636 14.3819 15.2636 14.6092C15.2636 14.8383 15.0865 15.0224 14.8667 15.0224H14.0013V14.1978ZM14.9939 16.4681H14.0013V15.6181H14.9939C15.2224 15.6181 15.4063 15.8077 15.4063 16.0422C15.4063 16.2768 15.221 16.4681 14.9939 16.4681Z' fill='white'/%3E%3Cpath d='M18.089 17.0636C18.2606 17.0636 18.3995 16.9245 18.3995 16.7531V14.1978H19.3437C19.5083 14.1978 19.6416 14.0645 19.6416 13.9C19.6416 13.7356 19.5083 13.6023 19.3437 13.6023H16.8344C16.6697 13.6023 16.5366 13.7356 16.5366 13.9C16.5366 14.0645 16.6697 14.1978 16.8344 14.1978H17.7786V16.7531C17.7786 16.9245 17.9176 17.0636 18.089 17.0636Z' fill='white'/%3E%3Cpath d='M25.6164 21.0365C25.8266 21.0365 25.997 20.8661 25.997 20.6557C25.9518 19.5914 26.1285 19.0517 25.7501 18.3539L21.0899 9.75913C20.5791 8.8169 19.596 8.23172 18.5242 8.23172H18.1408V6.63667C18.1408 5.70992 17.3868 4.95573 16.4601 4.95573H15.7725V4.09424C15.7725 2.56465 14.5282 1.32031 12.9986 1.32031C11.469 1.32031 10.2247 2.56465 10.2247 4.09424V4.95573H9.53716C8.6104 4.95573 7.85641 5.70992 7.85641 6.63667V8.23172H7.47298C6.40121 8.23172 5.41812 8.8169 4.90733 9.75913L0.246963 18.3541C0.085495 18.652 0 18.9886 0 19.3276V22.8256C0 23.8614 0.84285 24.7043 1.87871 24.7043H24.1183C25.1544 24.7043 25.997 23.8614 25.997 22.8256V22.0775C25.997 21.8671 25.8266 21.6967 25.6164 21.6967C25.4059 21.6967 25.2355 21.8671 25.2355 22.0775V22.8256C25.2355 23.4415 24.7344 23.9426 24.1183 23.9426H1.87871C1.26279 23.9426 0.761719 23.4415 0.761719 22.8256V19.3276C0.761719 18.7476 0.691895 19.2453 5.57661 10.1221C5.9543 9.42587 6.68071 8.99344 7.47278 8.99344H18.5242C19.3163 8.99344 20.0429 9.42607 20.4204 10.1221C25.3202 19.2731 25.2355 18.7472 25.2355 19.3276V20.6557C25.2355 20.8659 25.4059 21.0365 25.6164 21.0365ZM8.61794 8.23172V6.63667C8.61794 6.12985 9.03033 5.71745 9.53716 5.71745H12.2877C12.4981 5.71745 12.6685 5.54706 12.6685 5.33659C12.6685 5.12633 12.4981 4.95573 12.2877 4.95573H10.9864V4.09424C10.9864 2.98459 11.889 2.08203 12.9986 2.08203C14.1081 2.08203 15.0108 2.98459 15.0108 4.09424V4.95573H13.7094C13.4991 4.95573 13.3287 5.12633 13.3287 5.33659C13.3287 5.54706 13.4991 5.71745 13.7094 5.71745H16.4599C16.9667 5.71745 17.3791 6.12985 17.3791 6.63667V8.23172H8.61794Z' fill='white'/%3E%3Cpath d='M2.91943 19.3276C2.91943 19.5379 3.09003 19.7083 3.30029 19.7083H22.6965C22.907 19.7083 23.0774 19.5379 23.0774 19.3276C23.0774 19.1172 22.907 18.9468 22.6965 18.9468H3.30029C3.09003 18.9468 2.91943 19.1172 2.91943 19.3276Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0'%3E%3Crect width='26' height='26' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A") no-repeat center
}

.nav-otch span {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url("data:image/svg+xml,%3Csvg width='20' height='28' viewBox='0 0 20 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.0001 27C19.9996 27.5485 19.5564 28 19.008 28C13.0014 28 6.99483 28 0.988262 28C0.441344 28 0.000560441 27.56 4.14345e-05 27.0131C3.53861e-05 27.0067 3.22446e-05 27.0023 3.22446e-05 27C-5.06202e-05 18.5117 5.2391e-05 11.4883 5.2391e-05 3C5.2391e-05 2.44771 0.447768 2 1.00005 2C2.41779 2 3.01677 1.99803 4.43448 2.00341C4.55847 2.00388 4.62167 1.96149 4.68316 1.86008L5.88972 0.127484C5.94306 0.0398438 5.99822 -0.000138539 6.10666 0C8.70276 0.00346347 11.2989 0.00326952 13.895 0.00049874C13.996 0.000387909 14.0497 0.0354383 14.1013 0.120335C14.5061 0.785959 14.9187 1.20808 15.3222 1.87454C15.3806 1.97107 15.4441 2.00022 15.5518 2C16.9788 1.99673 17.5731 2 19.0001 2C19.5524 2 20.0001 2.44768 20.0001 3C20.0001 11.4559 20.0001 18.5441 20.0001 27ZM1.00005 27C6.78777 27 13.2248 26.9991 19.0001 26.9991C19.0001 19.3069 19.0001 10.6837 19.0001 3C18.0525 3 16.7793 3.00094 15.8255 3.00094C15.8255 3.4942 15.8255 4.22416 15.8255 4.88576C15.8255 5.43804 15.3778 5.88563 14.8255 5.88563C11.6035 5.88563 8.38957 5.88563 5.16758 5.88563C4.61529 5.88563 4.16757 5.43804 4.16757 4.88575C4.16757 4.2209 4.16757 3.48978 4.16757 3C3.21358 3 1.94391 3 1.00005 3C1.00005 10.6895 1.00005 19.309 1.00005 27ZM5.16781 5.00036C8.17931 5.00036 11.7822 5 14.7846 5C14.7846 4.59364 14.7886 3.39722 14.7846 3.00094C14.7843 2.96628 14.5236 2.53821 14.5001 2.5C14.1332 1.90317 14.0513 1.7004 13.6869 1.10205C13.6398 1.02455 13.5887 0.999917 13.5001 1C11.3924 1.0026 8.6078 1.0023 6.50011 1C6.41257 0.999916 6.36012 1.022 6.3122 1.10088L5.50011 2.5L5.16781 3C5.16781 3 5.16781 4.59369 5.16781 5.00036Z' fill='%2367779A'/%3E%3Cpath d='M16.5 9C16.7761 9 17 9.22513 17 9.50127C17 9.77741 16.7761 10 16.5 10C13.8328 10 11.1703 10 8.5 10C8.22386 10 8 9.77748 8 9.50134C8 9.2252 8.22386 9 8.5 9C11.1659 9 13.8285 9 16.5 9Z' fill='%2367779A'/%3E%3Cpath d='M8.5 14C8.22386 14 8 13.7771 8 13.5009C8 13.2248 8.22386 13 8.5 13C11.166 13 13.8286 13 16.5 13C16.7761 13 17 13.2204 17 13.4965C17 13.7726 16.7761 14 16.5 14C13.8362 14 11.171 14 8.5 14Z' fill='%2367779A'/%3E%3Cpath d='M8.50001 18C8.22387 18 8 17.7774 8 17.5013C8 17.2251 8.22386 17 8.5 17C11.1659 17 13.8295 17 16.5 17C16.7761 17 17 17.2202 17 17.4964C17 17.7725 16.7761 18 16.5 18C13.8397 18 11.176 18 8.50001 18Z' fill='%2367779A'/%3E%3Cpath d='M8.50001 22C8.22387 22 8 21.7778 8 21.5017C8 21.2255 8.22386 21 8.5 21C11.166 21 13.8289 21 16.5 21C16.7761 21 17 21.2201 17 21.4963C17 21.7724 16.7761 22 16.5 22C13.8399 22 11.1769 22 8.50001 22Z' fill='%2367779A'/%3E%3Cpath d='M4 9.50427C4 9.22813 4.22386 9 4.5 9C4.83377 9 5.1662 9 5.5 9C5.77614 9 6 9.22229 6 9.49843C6 9.77458 5.77614 10 5.5 10C5.16751 10 4.8347 10 4.5 10C4.22386 10 4 9.78041 4 9.50427Z' fill='%2367779A'/%3E%3Cpath d='M4 13.5052C4 13.2291 4.22386 13 4.5 13C4.83379 13 5.1663 13 5.5 13C5.77614 13 6 13.2222 6 13.4984C6 13.7745 5.77614 14 5.5 14C5.16814 14 4.83525 14 4.5 14C4.22386 14 4 13.7814 4 13.5052Z' fill='%2367779A'/%3E%3Cpath d='M4.5 18C4.22386 18 4 17.7765 4 17.5003C4 17.2242 4.22386 17 4.5 17C4.83344 17 5.16612 17 5.5 17C5.77614 17 6 17.2225 6 17.4986C6 17.7748 5.77614 18 5.5 18C5.16802 18 4.83537 18 4.5 18Z' fill='%2367779A'/%3E%3Cpath d='M6 21.498C6 21.7742 5.77614 22 5.5 22C5.16651 22 4.8341 22 4.5 22C4.22386 22 4 21.7779 4 21.5018C4 21.2256 4.22386 21 4.5 21C4.83326 21 5.16604 21 5.5 21C5.77614 21 6 21.2219 6 21.498Z' fill='%2367779A'/%3E%3C/svg%3E%0A") no-repeat center
}

.nav-otch.active span {
    background: url("data:image/svg+xml,%3Csvg width='20' height='28' viewBox='0 0 20 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.0001 27C19.9996 27.5485 19.5564 28 19.008 28C13.0014 28 6.99483 28 0.988262 28C0.441344 28 0.000560441 27.56 4.14345e-05 27.0131C3.53861e-05 27.0067 3.22446e-05 27.0023 3.22446e-05 27C-5.06202e-05 18.5117 5.2391e-05 11.4883 5.2391e-05 3C5.2391e-05 2.44771 0.447768 2 1.00005 2C2.41779 2 3.01677 1.99803 4.43448 2.00341C4.55847 2.00388 4.62167 1.96149 4.68316 1.86008L5.88972 0.127484C5.94306 0.0398438 5.99822 -0.000138539 6.10666 0C8.70276 0.00346347 11.2989 0.00326952 13.895 0.00049874C13.996 0.000387909 14.0497 0.0354383 14.1013 0.120335C14.5061 0.785959 14.9187 1.20808 15.3222 1.87454C15.3806 1.97107 15.4441 2.00022 15.5518 2C16.9788 1.99673 17.5731 2 19.0001 2C19.5524 2 20.0001 2.44768 20.0001 3C20.0001 11.4559 20.0001 18.5441 20.0001 27ZM1.00005 27C6.78777 27 13.2248 26.9991 19.0001 26.9991C19.0001 19.3069 19.0001 10.6837 19.0001 3C18.0525 3 16.7793 3.00094 15.8255 3.00094C15.8255 3.4942 15.8255 4.22416 15.8255 4.88576C15.8255 5.43804 15.3778 5.88563 14.8255 5.88563C11.6035 5.88563 8.38957 5.88563 5.16758 5.88563C4.61529 5.88563 4.16757 5.43804 4.16757 4.88575C4.16757 4.2209 4.16757 3.48978 4.16757 3C3.21358 3 1.94391 3 1.00005 3C1.00005 10.6895 1.00005 19.309 1.00005 27ZM5.16781 5.00036C8.17931 5.00036 11.7822 5 14.7846 5C14.7846 4.59364 14.7886 3.39722 14.7846 3.00094C14.7843 2.96628 14.5236 2.53821 14.5001 2.5C14.1332 1.90317 14.0513 1.7004 13.6869 1.10205C13.6398 1.02455 13.5887 0.999917 13.5001 1C11.3924 1.0026 8.6078 1.0023 6.50011 1C6.41257 0.999916 6.36012 1.022 6.3122 1.10088L5.50011 2.5L5.16781 3C5.16781 3 5.16781 4.59369 5.16781 5.00036Z' fill='white'/%3E%3Cpath d='M16.5 9C16.7761 9 17 9.22513 17 9.50127C17 9.77741 16.7761 10 16.5 10C13.8328 10 11.1703 10 8.5 10C8.22386 10 8 9.77748 8 9.50134C8 9.2252 8.22386 9 8.5 9C11.1659 9 13.8285 9 16.5 9Z' fill='white'/%3E%3Cpath d='M8.5 14C8.22386 14 8 13.7771 8 13.5009C8 13.2248 8.22386 13 8.5 13C11.166 13 13.8286 13 16.5 13C16.7761 13 17 13.2204 17 13.4965C17 13.7726 16.7761 14 16.5 14C13.8362 14 11.171 14 8.5 14Z' fill='white'/%3E%3Cpath d='M8.50001 18C8.22387 18 8 17.7774 8 17.5013C8 17.2251 8.22386 17 8.5 17C11.1659 17 13.8295 17 16.5 17C16.7761 17 17 17.2202 17 17.4964C17 17.7725 16.7761 18 16.5 18C13.8397 18 11.176 18 8.50001 18Z' fill='white'/%3E%3Cpath d='M8.50001 22C8.22387 22 8 21.7778 8 21.5017C8 21.2255 8.22386 21 8.5 21C11.166 21 13.8289 21 16.5 21C16.7761 21 17 21.2201 17 21.4963C17 21.7724 16.7761 22 16.5 22C13.8399 22 11.1769 22 8.50001 22Z' fill='white'/%3E%3Cpath d='M4 9.50427C4 9.22813 4.22386 9 4.5 9C4.83377 9 5.1662 9 5.5 9C5.77614 9 6 9.22229 6 9.49843C6 9.77458 5.77614 10 5.5 10C5.16751 10 4.8347 10 4.5 10C4.22386 10 4 9.78041 4 9.50427Z' fill='white'/%3E%3Cpath d='M4 13.5052C4 13.2291 4.22386 13 4.5 13C4.83379 13 5.1663 13 5.5 13C5.77614 13 6 13.2222 6 13.4984C6 13.7745 5.77614 14 5.5 14C5.16814 14 4.83525 14 4.5 14C4.22386 14 4 13.7814 4 13.5052Z' fill='white'/%3E%3Cpath d='M4.5 18C4.22386 18 4 17.7765 4 17.5003C4 17.2242 4.22386 17 4.5 17C4.83344 17 5.16612 17 5.5 17C5.77614 17 6 17.2225 6 17.4986C6 17.7748 5.77614 18 5.5 18C5.16802 18 4.83537 18 4.5 18Z' fill='white'/%3E%3Cpath d='M6 21.498C6 21.7742 5.77614 22 5.5 22C5.16651 22 4.8341 22 4.5 22C4.22386 22 4 21.7779 4 21.5018C4 21.2256 4.22386 21 4.5 21C4.83326 21 5.16604 21 5.5 21C5.77614 21 6 21.2219 6 21.498Z' fill='white'/%3E%3C/svg%3E%0A") no-repeat center
}

.nav-settings span {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url("data:image/svg+xml,%3Csvg width='25' height='24' viewBox='0 0 25 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.20166 16.0697C0.376523 15.4675 0.544661 14.8586 0.719524 14.2563C0.739701 14.1827 0.753152 14.1024 0.780054 14.0288C0.894387 13.6675 1.14996 13.527 1.52658 13.6206C1.99064 13.7411 2.4547 13.8615 2.91204 13.9887C3.04655 14.0288 3.12726 14.0021 3.22814 13.895C3.60477 13.5002 3.98812 13.1121 4.39165 12.7441C4.49253 12.6504 4.52616 12.5768 4.48581 12.4496C4.35802 11.9946 4.23024 11.5329 4.11591 11.0712C4.0083 10.6564 4.14953 10.4155 4.57324 10.3017C5.22561 10.121 5.87126 9.94706 6.52364 9.77978C6.91372 9.6794 7.16929 9.82662 7.27689 10.208C7.40468 10.663 7.53246 11.1247 7.6468 11.5865C7.68042 11.7337 7.74768 11.7872 7.90237 11.8207C8.42023 11.9344 8.93137 12.0749 9.44251 12.2288C9.59047 12.2757 9.6779 12.2824 9.79223 12.1619C10.1083 11.8273 10.4446 11.5062 10.7742 11.185C11.097 10.8638 11.3862 10.8705 11.709 11.185C12.1731 11.64 12.6304 12.1017 13.0877 12.5567C13.4106 12.8779 13.4106 13.1656 13.0877 13.4868C12.7649 13.8147 12.4354 14.1426 12.1058 14.4638C12.0049 14.5641 11.9646 14.6444 12.0318 14.785C12.2739 15.2868 12.4152 15.8221 12.4555 16.3842C12.469 16.5314 12.5497 16.5582 12.664 16.5916C13.1214 16.7121 13.572 16.8325 14.0293 16.953C14.4732 17.0734 14.6077 17.3143 14.4934 17.7559C14.3252 18.3916 14.1571 19.0206 13.9822 19.6496C13.8679 20.0645 13.6258 20.2117 13.2088 20.1046C12.7447 19.9842 12.2874 19.8637 11.8233 19.7366C11.6955 19.7031 11.6216 19.7299 11.5274 19.8303C11.1508 20.2251 10.7674 20.6132 10.3706 20.9879C10.2563 21.095 10.2361 21.1686 10.2765 21.3024C10.4043 21.7507 10.5253 22.2057 10.6396 22.6607C10.7473 23.0756 10.5993 23.3232 10.189 23.4369C9.59719 23.5975 9.00535 23.7514 8.42023 23.912C8.33952 23.9321 8.26554 23.9723 8.18484 23.999C8.07723 23.999 7.96289 23.999 7.85529 23.999C7.60644 23.8585 7.49883 23.631 7.43158 23.3633C7.3307 22.9485 7.20964 22.5336 7.10203 22.1187C7.0684 21.9983 7.02805 21.9381 6.88681 21.9247C6.33532 21.8778 5.80401 21.744 5.30632 21.5098C5.15836 21.4362 5.07093 21.4697 4.96332 21.5834C4.64049 21.918 4.31095 22.2392 3.9814 22.5604C3.6653 22.8749 3.3761 22.8749 3.06 22.5604C2.58922 22.0987 2.12515 21.637 1.6611 21.1686C1.33827 20.8407 1.33827 20.5663 1.66782 20.2385C1.98392 19.9173 2.30674 19.5961 2.63629 19.2816C2.75735 19.1678 2.76408 19.0808 2.717 18.9202C2.55559 18.4117 2.42108 17.8898 2.30674 17.3678C2.27312 17.2273 2.22604 17.1738 2.09825 17.1403C1.6611 17.0266 1.22394 16.8994 0.780054 16.7924C0.517759 16.7322 0.322719 16.5983 0.221837 16.3507C0.20166 16.2571 0.20166 16.1634 0.20166 16.0697ZM1.3988 15.8556C1.86959 15.9827 2.31347 16.0965 2.75735 16.2169C3.18779 16.3307 3.30212 16.4444 3.3223 16.8994C3.35592 17.582 3.51061 18.2243 3.84016 18.8266C4.05538 19.2214 4.02175 19.3953 3.69892 19.7165C3.3761 20.0377 3.04655 20.3656 2.7439 20.6667C3.01965 20.941 3.28194 21.1953 3.55096 21.463C3.86706 21.1485 4.20334 20.8072 4.54634 20.4727C4.81536 20.205 5.01712 20.1648 5.34667 20.3455C5.95197 20.6734 6.59089 20.8474 7.27689 20.8808C7.80821 20.9009 7.89564 20.9946 8.03015 21.5031C8.14448 21.9314 8.26554 22.3529 8.3866 22.8013C8.75651 22.7009 9.10623 22.6072 9.46941 22.5135C9.34162 22.0317 9.21384 21.5634 9.09278 21.095C8.99862 20.7403 9.05915 20.5396 9.36852 20.3589C10.0007 19.9775 10.4984 19.4756 10.8818 18.8533C11.0634 18.5589 11.2651 18.492 11.6081 18.5857C12.0184 18.6927 12.4286 18.8065 12.8322 18.9136C12.8994 18.9336 12.9667 18.9403 13.0407 18.9537C13.1348 18.5924 13.229 18.2444 13.3231 17.8831C12.8456 17.7559 12.3883 17.6355 11.9377 17.5084C11.5274 17.3946 11.4198 17.2675 11.3996 16.8526C11.3727 16.1634 11.218 15.5143 10.8818 14.9054C10.6665 14.5039 10.7002 14.3366 11.0297 14.0154C11.3525 13.6876 11.6821 13.3664 11.9847 13.0653C11.7157 12.7909 11.4602 12.5366 11.1911 12.269C10.8683 12.5902 10.5388 12.918 10.2025 13.2526C9.90657 13.547 9.72498 13.5805 9.3618 13.3864C8.76323 13.0653 8.13103 12.898 7.45176 12.8578C6.90699 12.8311 6.83301 12.7508 6.68505 12.2155C6.57071 11.7939 6.45638 11.379 6.33532 10.9374C5.96542 11.0378 5.62242 11.1248 5.25924 11.2251C5.27942 11.3121 5.28614 11.379 5.30632 11.4459C5.41393 11.8541 5.52826 12.2623 5.63587 12.6638C5.7233 12.9917 5.65605 13.1924 5.37357 13.3664C4.72793 13.7545 4.21679 14.2697 3.82671 14.9054C3.65857 15.1797 3.45008 15.24 3.14071 15.1664C2.88514 15.0994 2.62957 15.0258 2.36727 14.9589C2.14533 14.8987 1.91666 14.8452 1.68127 14.785C1.58711 15.1463 1.49968 15.4875 1.3988 15.8556Z' fill='%2367779A'/%3E%3Cpath d='M16.4571 14.2429C16.3158 14.2095 16.1141 14.1559 15.9056 14.1024C15.3877 13.9686 14.8766 13.8281 14.3587 13.6875C13.9283 13.5671 13.787 13.3262 13.9014 12.8979C14.0157 12.4496 14.13 12.008 14.2578 11.5664C14.2982 11.4191 14.2713 11.3388 14.1569 11.2318C13.7601 10.8638 13.3835 10.4823 13.0136 10.0942C12.9194 9.99387 12.8455 9.95372 12.7177 9.99387C12.2603 10.121 11.7963 10.2415 11.3322 10.3619C10.9152 10.469 10.6731 10.3284 10.5588 9.91358C10.3772 9.26451 10.2023 8.62213 10.0342 7.97307C9.93332 7.59165 10.0813 7.33069 10.4646 7.22363C10.922 7.09649 11.386 6.96935 11.8501 6.8556C11.9981 6.81545 12.0519 6.75523 12.0855 6.59464C12.1998 6.0794 12.3411 5.57085 12.4957 5.0623C12.5428 4.91509 12.5428 4.8281 12.4285 4.72104C12.0922 4.40654 11.7694 4.07197 11.4398 3.74409C11.1305 3.4296 11.1237 3.14187 11.4331 2.82737C11.9039 2.35228 12.3747 1.88388 12.8455 1.41548C13.1548 1.11437 13.4373 1.12106 13.7467 1.42217C14.0897 1.75674 14.426 2.09131 14.7622 2.43258C14.8497 2.52626 14.9236 2.54633 15.0514 2.48611C15.5693 2.24522 16.1141 2.09801 16.679 2.05786C16.8135 2.04448 16.8471 1.97756 16.874 1.8705C16.9951 1.40879 17.1162 0.953775 17.2439 0.492067C17.365 0.0705085 17.6071 -0.0767026 18.0376 0.0370514C18.6832 0.204337 19.3289 0.378313 19.9678 0.55229C20.3713 0.659353 20.5193 0.913626 20.4117 1.30842C20.2906 1.77013 20.1695 2.23183 20.0418 2.68685C20.0014 2.82068 20.035 2.90098 20.1426 3.00135C20.5394 3.36937 20.9228 3.74409 21.286 4.13889C21.3936 4.25933 21.4743 4.27941 21.6222 4.23926C22.0594 4.11212 22.4966 3.99837 22.9404 3.88461C23.3978 3.76417 23.6399 3.90469 23.7677 4.35301C23.9358 4.96862 24.104 5.58423 24.2721 6.20653C24.3932 6.67493 24.2586 6.90913 23.7811 7.03627C23.3373 7.15671 22.8866 7.27716 22.4428 7.39091C22.3284 7.41768 22.2612 7.45783 22.2477 7.60504C22.2006 8.15373 22.0661 8.68236 21.8307 9.17752C21.7568 9.32473 21.7904 9.41172 21.9047 9.51878C22.241 9.83997 22.5638 10.1678 22.8866 10.4957C23.196 10.8102 23.2027 11.098 22.8866 11.4125C22.4226 11.8809 21.9585 12.3426 21.4877 12.8043C21.1716 13.1121 20.8824 13.1121 20.5663 12.8043C20.2301 12.4764 19.8938 12.1485 19.571 11.8072C19.4634 11.7002 19.3759 11.6868 19.2414 11.747C18.737 11.9812 18.2124 12.1217 17.6609 12.1619C17.5264 12.1753 17.4793 12.2355 17.4457 12.3559C17.3247 12.8243 17.1969 13.2927 17.0691 13.7544C16.9816 14.0756 16.7866 14.2362 16.4571 14.2429ZM20.9631 11.7069C21.2389 11.4325 21.5012 11.1716 21.7769 10.8972C21.4608 10.5894 21.1178 10.2548 20.7816 9.91358C20.5193 9.65261 20.4789 9.45187 20.6538 9.13737C20.9901 8.52176 21.1716 7.87269 21.1985 7.1701C21.2187 6.68162 21.3196 6.58125 21.8106 6.45412C22.241 6.34036 22.6714 6.22661 23.1288 6.09947C23.0279 5.73813 22.9337 5.38349 22.8396 5.01546C22.3822 5.13591 21.9518 5.24966 21.5214 5.37011C21.0237 5.50393 20.8757 5.4504 20.6067 5.01546C20.2704 4.48015 19.8467 4.04521 19.3087 3.71064C18.8177 3.40283 18.7774 3.28239 18.932 2.72031C19.0464 2.30544 19.154 1.89726 19.2683 1.46232C18.8917 1.36195 18.542 1.26827 18.1788 1.17459C18.1048 1.44225 18.0376 1.67645 17.977 1.90396C17.9098 2.14485 17.8492 2.38574 17.782 2.62663C17.6946 2.92774 17.5466 3.06826 17.2574 3.07495C16.484 3.10172 15.7576 3.27569 15.0783 3.65711C14.8429 3.79093 14.6075 3.74409 14.4058 3.56343C14.3184 3.48313 14.2376 3.39614 14.1569 3.31584C13.8745 3.0348 13.5987 2.75376 13.3566 2.51287C13.0741 2.79391 12.8186 3.04819 12.5495 3.31584C12.8522 3.61696 13.1817 3.93814 13.5113 4.26602C13.8207 4.57383 13.8543 4.74781 13.6525 5.11583C13.3163 5.72475 13.1548 6.37382 13.1212 7.06303C13.101 7.50467 12.9867 7.6385 12.563 7.75225C12.1191 7.87269 11.6685 7.98645 11.1977 8.11359C11.2986 8.48161 11.386 8.82957 11.4869 9.19759C11.9442 9.07715 12.3747 8.9634 12.8051 8.84964C13.3028 8.71581 13.4575 8.76934 13.7265 9.20429C14.0628 9.74629 14.4999 10.1812 15.0447 10.5225C15.502 10.8102 15.5491 10.9507 15.4079 11.4727C15.2935 11.8942 15.1792 12.3158 15.0649 12.7574C15.4415 12.8578 15.7912 12.9448 16.1544 13.0452C16.2956 12.5366 16.4167 12.0615 16.5512 11.5931C16.6454 11.2719 16.7933 11.1515 17.1229 11.1381C17.856 11.1113 18.5487 10.9441 19.1943 10.5894C19.5239 10.4087 19.7189 10.4489 19.9947 10.7232C20.3242 11.0578 20.6538 11.3991 20.9631 11.7069Z' fill='%2367779A'/%3E%3Cpath d='M7.35757 13.9618C8.95824 13.9551 10.2697 15.2533 10.2764 16.8458C10.2832 18.4451 8.95824 19.7633 7.35757 19.7566C5.7569 19.7499 4.45215 18.4451 4.45215 16.8592C4.45215 15.2667 5.7569 13.9685 7.35757 13.9618ZM9.20036 16.8525C9.19364 15.8555 8.35967 15.0325 7.3643 15.0391C6.36219 15.0458 5.53496 15.8689 5.53496 16.8659C5.53496 17.8696 6.3891 18.7128 7.38447 18.6927C8.3933 18.6659 9.20709 17.8429 9.20036 16.8525Z' fill='%2367779A'/%3E%3Cpath d='M14.2447 7.12334C14.2379 5.53747 15.5628 4.21926 17.1702 4.21926C18.7507 4.21257 20.0757 5.54416 20.0689 7.12334C20.0622 8.7159 18.7306 10.0274 17.1299 10.0207C15.5561 10.0073 14.2514 8.70252 14.2447 7.12334ZM17.1433 8.94341C18.1589 8.94341 18.9928 8.12036 18.9928 7.11665C18.9928 6.11963 18.1656 5.28989 17.1702 5.28989C16.1547 5.28989 15.3207 6.11294 15.3275 7.11665C15.3275 8.12036 16.148 8.93672 17.1433 8.94341Z' fill='%2367779A'/%3E%3C/svg%3E%0A") no-repeat center
}

.nav-settings.active span {
    background: url("data:image/svg+xml,%3Csvg width='25' height='24' viewBox='0 0 25 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.20166 16.0697C0.376523 15.4675 0.544661 14.8586 0.719524 14.2563C0.739701 14.1827 0.753152 14.1024 0.780054 14.0288C0.894387 13.6675 1.14996 13.527 1.52658 13.6206C1.99064 13.7411 2.4547 13.8615 2.91204 13.9887C3.04655 14.0288 3.12726 14.0021 3.22814 13.895C3.60477 13.5002 3.98812 13.1121 4.39165 12.7441C4.49253 12.6504 4.52616 12.5768 4.48581 12.4496C4.35802 11.9946 4.23024 11.5329 4.11591 11.0712C4.0083 10.6564 4.14953 10.4155 4.57324 10.3017C5.22561 10.121 5.87126 9.94706 6.52364 9.77978C6.91372 9.6794 7.16929 9.82662 7.27689 10.208C7.40468 10.663 7.53246 11.1247 7.6468 11.5865C7.68042 11.7337 7.74768 11.7872 7.90237 11.8207C8.42023 11.9344 8.93137 12.0749 9.44251 12.2288C9.59047 12.2757 9.6779 12.2824 9.79223 12.1619C10.1083 11.8273 10.4446 11.5062 10.7742 11.185C11.097 10.8638 11.3862 10.8705 11.709 11.185C12.1731 11.64 12.6304 12.1017 13.0877 12.5567C13.4106 12.8779 13.4106 13.1656 13.0877 13.4868C12.7649 13.8147 12.4354 14.1426 12.1058 14.4638C12.0049 14.5641 11.9646 14.6444 12.0318 14.785C12.2739 15.2868 12.4152 15.8221 12.4555 16.3842C12.469 16.5314 12.5497 16.5582 12.664 16.5916C13.1214 16.7121 13.572 16.8325 14.0293 16.953C14.4732 17.0734 14.6077 17.3143 14.4934 17.7559C14.3252 18.3916 14.1571 19.0206 13.9822 19.6496C13.8679 20.0645 13.6258 20.2117 13.2088 20.1046C12.7447 19.9842 12.2874 19.8637 11.8233 19.7366C11.6955 19.7031 11.6216 19.7299 11.5274 19.8303C11.1508 20.2251 10.7674 20.6132 10.3706 20.9879C10.2563 21.095 10.2361 21.1686 10.2765 21.3024C10.4043 21.7507 10.5253 22.2057 10.6396 22.6607C10.7473 23.0756 10.5993 23.3232 10.189 23.4369C9.59719 23.5975 9.00535 23.7514 8.42023 23.912C8.33952 23.9321 8.26554 23.9723 8.18484 23.999C8.07723 23.999 7.96289 23.999 7.85529 23.999C7.60644 23.8585 7.49883 23.631 7.43158 23.3633C7.3307 22.9485 7.20964 22.5336 7.10203 22.1187C7.0684 21.9983 7.02805 21.9381 6.88681 21.9247C6.33532 21.8778 5.80401 21.744 5.30632 21.5098C5.15836 21.4362 5.07093 21.4697 4.96332 21.5834C4.64049 21.918 4.31095 22.2392 3.9814 22.5604C3.6653 22.8749 3.3761 22.8749 3.06 22.5604C2.58922 22.0987 2.12515 21.637 1.6611 21.1686C1.33827 20.8407 1.33827 20.5663 1.66782 20.2385C1.98392 19.9173 2.30674 19.5961 2.63629 19.2816C2.75735 19.1678 2.76408 19.0808 2.717 18.9202C2.55559 18.4117 2.42108 17.8898 2.30674 17.3678C2.27312 17.2273 2.22604 17.1738 2.09825 17.1403C1.6611 17.0266 1.22394 16.8994 0.780054 16.7924C0.517759 16.7322 0.322719 16.5983 0.221837 16.3507C0.20166 16.2571 0.20166 16.1634 0.20166 16.0697ZM1.3988 15.8556C1.86959 15.9827 2.31347 16.0965 2.75735 16.2169C3.18779 16.3307 3.30212 16.4444 3.3223 16.8994C3.35592 17.582 3.51061 18.2243 3.84016 18.8266C4.05538 19.2214 4.02175 19.3953 3.69892 19.7165C3.3761 20.0377 3.04655 20.3656 2.7439 20.6667C3.01965 20.941 3.28194 21.1953 3.55096 21.463C3.86706 21.1485 4.20334 20.8072 4.54634 20.4727C4.81536 20.205 5.01712 20.1648 5.34667 20.3455C5.95197 20.6734 6.59089 20.8474 7.27689 20.8808C7.80821 20.9009 7.89564 20.9946 8.03015 21.5031C8.14448 21.9314 8.26554 22.3529 8.3866 22.8013C8.75651 22.7009 9.10623 22.6072 9.46941 22.5135C9.34162 22.0317 9.21384 21.5634 9.09278 21.095C8.99862 20.7403 9.05915 20.5396 9.36852 20.3589C10.0007 19.9775 10.4984 19.4756 10.8818 18.8533C11.0634 18.5589 11.2651 18.492 11.6081 18.5857C12.0184 18.6927 12.4286 18.8065 12.8322 18.9136C12.8994 18.9336 12.9667 18.9403 13.0407 18.9537C13.1348 18.5924 13.229 18.2444 13.3231 17.8831C12.8456 17.7559 12.3883 17.6355 11.9377 17.5084C11.5274 17.3946 11.4198 17.2675 11.3996 16.8526C11.3727 16.1634 11.218 15.5143 10.8818 14.9054C10.6665 14.5039 10.7002 14.3366 11.0297 14.0154C11.3525 13.6876 11.6821 13.3664 11.9847 13.0653C11.7157 12.7909 11.4602 12.5366 11.1911 12.269C10.8683 12.5902 10.5388 12.918 10.2025 13.2526C9.90657 13.547 9.72498 13.5805 9.3618 13.3864C8.76323 13.0653 8.13103 12.898 7.45176 12.8578C6.90699 12.8311 6.83301 12.7508 6.68505 12.2155C6.57071 11.7939 6.45638 11.379 6.33532 10.9374C5.96542 11.0378 5.62242 11.1248 5.25924 11.2251C5.27942 11.3121 5.28614 11.379 5.30632 11.4459C5.41393 11.8541 5.52826 12.2623 5.63587 12.6638C5.7233 12.9917 5.65605 13.1924 5.37357 13.3664C4.72793 13.7545 4.21679 14.2697 3.82671 14.9054C3.65857 15.1797 3.45008 15.24 3.14071 15.1664C2.88514 15.0994 2.62957 15.0258 2.36727 14.9589C2.14533 14.8987 1.91666 14.8452 1.68127 14.785C1.58711 15.1463 1.49968 15.4875 1.3988 15.8556Z' fill='white'/%3E%3Cpath d='M16.4571 14.2429C16.3158 14.2095 16.1141 14.1559 15.9056 14.1024C15.3877 13.9686 14.8766 13.8281 14.3587 13.6875C13.9283 13.5671 13.787 13.3262 13.9014 12.8979C14.0157 12.4496 14.13 12.008 14.2578 11.5664C14.2982 11.4191 14.2713 11.3388 14.1569 11.2318C13.7601 10.8638 13.3835 10.4823 13.0136 10.0942C12.9194 9.99387 12.8455 9.95372 12.7177 9.99387C12.2603 10.121 11.7963 10.2415 11.3322 10.3619C10.9152 10.469 10.6731 10.3284 10.5588 9.91358C10.3772 9.26451 10.2023 8.62213 10.0342 7.97307C9.93332 7.59165 10.0813 7.33069 10.4646 7.22363C10.922 7.09649 11.386 6.96935 11.8501 6.8556C11.9981 6.81545 12.0519 6.75523 12.0855 6.59464C12.1998 6.0794 12.3411 5.57085 12.4957 5.0623C12.5428 4.91509 12.5428 4.8281 12.4285 4.72104C12.0922 4.40654 11.7694 4.07197 11.4398 3.74409C11.1305 3.4296 11.1237 3.14187 11.4331 2.82737C11.9039 2.35228 12.3747 1.88388 12.8455 1.41548C13.1548 1.11437 13.4373 1.12106 13.7467 1.42217C14.0897 1.75674 14.426 2.09131 14.7622 2.43258C14.8497 2.52626 14.9236 2.54633 15.0514 2.48611C15.5693 2.24522 16.1141 2.09801 16.679 2.05786C16.8135 2.04448 16.8471 1.97756 16.874 1.8705C16.9951 1.40879 17.1162 0.953775 17.2439 0.492067C17.365 0.0705085 17.6071 -0.0767026 18.0376 0.0370514C18.6832 0.204337 19.3289 0.378313 19.9678 0.55229C20.3713 0.659353 20.5193 0.913626 20.4117 1.30842C20.2906 1.77013 20.1695 2.23183 20.0418 2.68685C20.0014 2.82068 20.035 2.90098 20.1426 3.00135C20.5394 3.36937 20.9228 3.74409 21.286 4.13889C21.3936 4.25933 21.4743 4.27941 21.6222 4.23926C22.0594 4.11212 22.4966 3.99837 22.9404 3.88461C23.3978 3.76417 23.6399 3.90469 23.7677 4.35301C23.9358 4.96862 24.104 5.58423 24.2721 6.20653C24.3932 6.67493 24.2586 6.90913 23.7811 7.03627C23.3373 7.15671 22.8866 7.27716 22.4428 7.39091C22.3284 7.41768 22.2612 7.45783 22.2477 7.60504C22.2006 8.15373 22.0661 8.68236 21.8307 9.17752C21.7568 9.32473 21.7904 9.41172 21.9047 9.51878C22.241 9.83997 22.5638 10.1678 22.8866 10.4957C23.196 10.8102 23.2027 11.098 22.8866 11.4125C22.4226 11.8809 21.9585 12.3426 21.4877 12.8043C21.1716 13.1121 20.8824 13.1121 20.5663 12.8043C20.2301 12.4764 19.8938 12.1485 19.571 11.8072C19.4634 11.7002 19.3759 11.6868 19.2414 11.747C18.737 11.9812 18.2124 12.1217 17.6609 12.1619C17.5264 12.1753 17.4793 12.2355 17.4457 12.3559C17.3247 12.8243 17.1969 13.2927 17.0691 13.7544C16.9816 14.0756 16.7866 14.2362 16.4571 14.2429ZM20.9631 11.7069C21.2389 11.4325 21.5012 11.1716 21.7769 10.8972C21.4608 10.5894 21.1178 10.2548 20.7816 9.91358C20.5193 9.65261 20.4789 9.45187 20.6538 9.13737C20.9901 8.52176 21.1716 7.87269 21.1985 7.1701C21.2187 6.68162 21.3196 6.58125 21.8106 6.45412C22.241 6.34036 22.6714 6.22661 23.1288 6.09947C23.0279 5.73813 22.9337 5.38349 22.8396 5.01546C22.3822 5.13591 21.9518 5.24966 21.5214 5.37011C21.0237 5.50393 20.8757 5.4504 20.6067 5.01546C20.2704 4.48015 19.8467 4.04521 19.3087 3.71064C18.8177 3.40283 18.7774 3.28239 18.932 2.72031C19.0464 2.30544 19.154 1.89726 19.2683 1.46232C18.8917 1.36195 18.542 1.26827 18.1788 1.17459C18.1048 1.44225 18.0376 1.67645 17.977 1.90396C17.9098 2.14485 17.8492 2.38574 17.782 2.62663C17.6946 2.92774 17.5466 3.06826 17.2574 3.07495C16.484 3.10172 15.7576 3.27569 15.0783 3.65711C14.8429 3.79093 14.6075 3.74409 14.4058 3.56343C14.3184 3.48313 14.2376 3.39614 14.1569 3.31584C13.8745 3.0348 13.5987 2.75376 13.3566 2.51287C13.0741 2.79391 12.8186 3.04819 12.5495 3.31584C12.8522 3.61696 13.1817 3.93814 13.5113 4.26602C13.8207 4.57383 13.8543 4.74781 13.6525 5.11583C13.3163 5.72475 13.1548 6.37382 13.1212 7.06303C13.101 7.50467 12.9867 7.6385 12.563 7.75225C12.1191 7.87269 11.6685 7.98645 11.1977 8.11359C11.2986 8.48161 11.386 8.82957 11.4869 9.19759C11.9442 9.07715 12.3747 8.9634 12.8051 8.84964C13.3028 8.71581 13.4575 8.76934 13.7265 9.20429C14.0628 9.74629 14.4999 10.1812 15.0447 10.5225C15.502 10.8102 15.5491 10.9507 15.4079 11.4727C15.2935 11.8942 15.1792 12.3158 15.0649 12.7574C15.4415 12.8578 15.7912 12.9448 16.1544 13.0452C16.2956 12.5366 16.4167 12.0615 16.5512 11.5931C16.6454 11.2719 16.7933 11.1515 17.1229 11.1381C17.856 11.1113 18.5487 10.9441 19.1943 10.5894C19.5239 10.4087 19.7189 10.4489 19.9947 10.7232C20.3242 11.0578 20.6538 11.3991 20.9631 11.7069Z' fill='white'/%3E%3Cpath d='M7.35757 13.9618C8.95824 13.9551 10.2697 15.2533 10.2764 16.8458C10.2832 18.4451 8.95824 19.7633 7.35757 19.7566C5.7569 19.7499 4.45215 18.4451 4.45215 16.8592C4.45215 15.2667 5.7569 13.9685 7.35757 13.9618ZM9.20036 16.8525C9.19364 15.8555 8.35967 15.0325 7.3643 15.0391C6.36219 15.0458 5.53496 15.8689 5.53496 16.8659C5.53496 17.8696 6.3891 18.7128 7.38447 18.6927C8.3933 18.6659 9.20709 17.8429 9.20036 16.8525Z' fill='white'/%3E%3Cpath d='M14.2447 7.12334C14.2379 5.53747 15.5628 4.21926 17.1702 4.21926C18.7507 4.21257 20.0757 5.54416 20.0689 7.12334C20.0622 8.7159 18.7306 10.0274 17.1299 10.0207C15.5561 10.0073 14.2514 8.70252 14.2447 7.12334ZM17.1433 8.94341C18.1589 8.94341 18.9928 8.12036 18.9928 7.11665C18.9928 6.11963 18.1656 5.28989 17.1702 5.28989C16.1547 5.28989 15.3207 6.11294 15.3275 7.11665C15.3275 8.12036 16.148 8.93672 17.1433 8.94341Z' fill='white'/%3E%3C/svg%3E%0A") no-repeat center
}

.content {
    min-height: 100%;
    padding: 40px;
    width: calc(100% - 240px);
    overflow: hidden;
    margin-left: 240px
}

@media (max-width: 1070px) {
    .content {
        padding: 20px 10px;
        width: calc(100% - 210px);
        margin-left: 210px
    }
}

.title {
    font-size: 24px;
    line-height: 28px
}

select {
    color: #000000;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background: url(../img/select.svg) no-repeat 95% 50% #fff;
    border: 1px solid #DEE4F2;
    box-sizing: border-box;
    border-radius: 3px;
    padding: 0px 10px;
    width: 244px;
    height: 30px
}

@media (max-width: 1170px) {
    select {
        width: 200px
    }
}

.status {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex
}

.status span {
    border-radius: 50px;
    padding: 3px 8px;
    display: inline-block;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.status__inwork span {
    background: #FF6240
}

.status__assept span {
    background: #FF9900
}

.status__init span {
    background: #CA88FE
}

.ts__header {
    background: #FFFFFF;
    border-radius: 5px;
    padding: 16px 10px;
    margin-bottom: 20px
}

.ts__header select {
    margin-left: 20px
}

.ts__vertical-view {
    width: 22px;
    position: relative
}

.ts__vertical-view span {
    background: #DEE4F2;
    border-radius: 5px;
    height: 22px;
    width: 4px;
    display: block;
    margin: 0 auto
}

.ts__vertical-view span:after,
.ts__vertical-view span:before {
    content: '';
    background: #DEE4F2;
    border-radius: 5px;
    height: 22px;
    width: 4px;
    display: block;
    position: absolute
}

.ts__vertical-view span:after {
    left: 0px
}

.ts__vertical-view span:before {
    right: 0px
}

.ts__vertical-view:hover span,
.ts__vertical-view.active span {
    background: #6091F8
}

.ts__vertical-view:hover span:after,
.ts__vertical-view:hover span:before,
.ts__vertical-view.active span:after,
.ts__vertical-view.active span:before {
    background: #6091F8
}

.ts__horizontal-view {
    width: 22px;
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 14px
}

.ts__horizontal-view span {
    background: #DEE4F2;
    border-radius: 5px;
    width: 22px;
    height: 4px;
    display: block;
    margin: 0 auto
}

.ts__horizontal-view span:after,
.ts__horizontal-view span:before {
    content: '';
    background: #DEE4F2;
    border-radius: 5px;
    width: 22px;
    height: 4px;
    display: block;
    position: absolute
}

.ts__horizontal-view span:after {
    top: 0px
}

.ts__horizontal-view span:before {
    bottom: 0px
}

.ts__horizontal-view:hover span,
.ts__horizontal-view.active span {
    background: #6091F8
}

.ts__horizontal-view:hover span:after,
.ts__horizontal-view:hover span:before,
.ts__horizontal-view.active span:after,
.ts__horizontal-view.active span:before {
    background: #6091F8
}

.ts__view {
    margin-left: 28px
}

.ts__filter {
    padding: 12px 10px 15px 10px;
    background: #FFFFFF;
    border-radius: 5px;
    margin: 20px 0px
}

.ts__filter__title {
    margin-right: 7px;
    height: 28px;
    line-height: 28px
}

.ts__filter__col {
    margin-right: 20px
}

.ts__filter__col a {
    color: #6091F8;
    text-decoration: underline
}

.ts__filter__col a:hover {
    text-decoration: none
}

.ts__filter__col span {
    display: block;
    color: #706F6F;
    margin-bottom: 4px
}

.ts__list {
    background: #FFFFFF;
    border-radius: 5px;
    padding-bottom: 17px
}

.ts__list .ts__table {
    border-collapse: collapse;
    width: 100%;
    text-align: left;
    display: block
}

.ts__list .ts__table a {
    color: #000000;
    text-decoration: none;
    transition: all .2s;
    position: relative
}

.ts__list .ts__table a:hover {
    background: #FFFFFF;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.12)
}

.ts__list .ts__table a:hover>div {
    background: #fff !important
}

.ts__list .ts__table a:hover::after {
    content: "";
    position: absolute;
    left: 0px;
    height: 100%;
    border-left: 2px solid #6091F8;
    width: 2px
}

.ts__list .ts__table a:active {
    background: #F3F6FC;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.12)
}

.ts__list .ts__table a:active>div {
    background: #F3F6FC !important
}

.ts__list .ts__table a:active::after {
    content: "";
    position: absolute;
    left: 0px;
    height: 100%;
    border-left: 2px solid #6091F8;
    width: 2px
}

.ts__list .ts__table-row {
    display: flex
}

.ts__list .ts__table__item:first-child .ts__table-row {
    display: flex;
    width: 100%
}

.ts__list .ts__table__item:first-child .ts__table-row .ts__table-col {
    color: #6091F8;
    font-style: normal;
    font-weight: normal;
    padding: 20px 10px 11px 10px;
    display: block;
    width: 100%
}

.ts__list .ts__table__item:first-child .ts__table-row .ts__table-col:first-child {
    padding-left: 20px;
    max-width: 30%
}

@media (max-width: 1070px) {
    .ts__list .ts__table__item:first-child .ts__table-row .ts__table-col:first-child {
        max-width: 140px;
        width: 25%;
        min-width: 140px
    }
}

.ts__list .ts__table__item:first-child .ts__table-row .ts__table-col:nth-child(2) {
    max-width: 25%
}

.ts__list .ts__table__item:first-child .ts__table-row .ts__table-col:nth-child(3) {
    max-width: 30%
}

.ts__list .ts__table__item:first-child .ts__table-row .ts__table-col:nth-child(4) {
    max-width: 25%
}

.ts__list .ts__table__item {
    border-bottom: 1px solid #DEE5F2
}

.ts__list .ts__table__item .ts__table-row:not(:first-child) .ts__table-col {
    background: #F3F6FC;
    border-bottom: 1px solid #DEE5F2
}

.ts__list .ts__table__item:last-child {
    border-bottom: none
}

.ts__list .ts__table__item .ts__table-row:last-child .ts__table-col {
    border-bottom: none !important
}

.ts__list .ts__table-col {
    padding: 9px 10px;
    width: 100%
}

.ts__list .ts__table-col:first-child {
    padding-left: 20px;
    max-width: 30%
}

@media (max-width: 1070px) {
    .ts__list .ts__table-col:first-child {
        max-width: 140px;
        width: 140px;
        min-width: 140px
    }
}

.ts__list .ts__table-col:nth-child(2) {
    max-width: 25%
}

.ts__list .ts__table-col:nth-child(3) {
    max-width: 30%
}

.ts__list .ts__table-col:nth-child(4) {
    max-width: 25%
}

.ts__list .ts__table-col:last-child {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.task__col {
    background: #F9FAFD;
    border-radius: 5px;
    margin-right: 10px;
    max-width: 180px;
    width: 100%;
    overflow: hidden;
    min-height: calc(100vh - 325px);
    height: 100%;
    overflow-y: auto
}

.task__col__header {
    padding: 21px 10px 15px 10px;
    border-bottom: 3px solid #f2f2f2
}

.task__col__header span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    color: #6091F8
}

.task__col__summ {
    font-size: 14px;
    line-height: 16px;
    margin: 10px 0px 0px 0px;
    color: #000000
}

.task__col__item {
    display: block;
    border-radius: 5px;
    background: #FFFFFF;
    border: 1px solid #DEE4F2;
    border-radius: 5px;
    margin: 10px;
    padding: 9px 10px 18px 10px;
    text-decoration: none;
    line-height: 140%;
    transition: all .3s
}

.task__col__item:hover {
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.12)
}

.task__col__title {
    font-weight: 500;
    color: #000000
}

.task__init .task__col__header {
    border-bottom: 3px solid #CA88FE
}

.task__init .task__col__item {
    border-left: 3px solid #CA88FE
}

.task__submitted .task__col__header {
    border-bottom: 3px solid #56DB5B
}

.task__submitted .task__col__item {
    border-left: 3px solid #56DB5B
}

.task__inwork .task__col__header {
    border-bottom: 3px solid #FF6240
}

.task__inwork .task__col__item {
    border-left: 3px solid #FF6240
}

.task__completed .task__col__header {
    border-bottom: 3px solid #EEE624
}

.task__completed .task__col__item {
    border-left: 3px solid #EEE624
}

.task__testing .task__col__header {
    border-bottom: 3px solid #E92E5A
}

.task__testing .task__col__item {
    border-left: 3px solid #E92E5A
}

.task__client .task__col__header {
    border-bottom: 3px solid #6091F8
}

.task__client .task__col__item {
    border-left: 3px solid #6091F8
}

.task__customer-accepted .task__col__header {
    border-bottom: 3px solid #5318FB
}

.task__customer-accepted .task__col__item {
    border-left: 3px solid #5318FB
}

.task__akt-signed .task__col__header {
    border-bottom: 3px solid #FF8EC4
}

.task__akt-signed .task__col__item {
    border-left: 3px solid #FF8EC4
}

.task__approved .task__col__header {
    border-bottom: 3px solid #FF9900
}

.task__approved .task__col__item {
    border-left: 3px solid #FF9900
}

.task__col::-webkit-scrollbar {
    width: 0
}

.chat-textarea::-webkit-scrollbar {
    width: 0
}

.slick-next {
    right: -60px;
    width: 93px;
    height: 93px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: all 0.3s;
    z-index: 2;
    position: fixed
}

@media (max-width: 1070px) {
    .slick-next {
        right: -70px
    }
}

.slick-next:hover {
    background: #08235C
}

.slick-next:before {
    content: '→';
    left: 10px;
    position: absolute;
    top: 40%
}

.slick-prev {
    left: 180px;
    width: 93px;
    height: 93px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: all 0.3s;
    z-index: 2
}

@media (max-width: 1070px) {
    .slick-prev {
        left: -70px
    }
}

.slick-prev:hover {
    background: #08235C
}

.slick-prev:before {
    content: '←';
    right: 10px;
    position: absolute;
    top: 40%
}

.c__row {
    display: flex;
    margin: 0px -10px 20px -10px
}

.c__col-12 {
    width: 100%;
    margin: 0px 10px
}

.c__col-6 {
    width: 50%;
    margin: 0px 10px
}

.c__col-4 {
    width: 33.33%;
    margin: 0px 10px
}

.c__col-8 {
    width: 66.66%;
    margin: 0px 10px
}

.task__content .c__row>div {
    background: #fff;
    padding: 15px 10px;
    border-radius: 5px
}

.task__content .clients-pays {
    padding: 15px
}

.task__content h1 {
    font-weight: normal;
    font-size: 24px;
    line-height: 28px;
    color: #000000;
    margin: 5px 0px 8px 0px;
    display: flex;
    align-items: center
}

.task__content h1 .task-edit {
    content: '';
    background: url(../img/edit.svg) no-repeat;
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-left: 11px
}

.to-back {
    font-size: 14px;
    line-height: 14px;
    color: #706F6F;
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 5px;
    display: block;
    width: 100%
}

.to-back:before {
    content: '';
    background: url(../img/to-back.svg) no-repeat;
    width: 8px;
    height: 7px;
    margin-right: 8px;
    position: relative;
    top: -1px;
    display: inline-block
}

.task-parent {
    font-size: 16px;
    line-height: 19px;
    color: #706F6F
}

.task-parent a {
    color: #706F6F;
    border-bottom: 1px solid;
    text-decoration: none
}

.task-status {
    background: #f2f2f2;
    border-radius: 50px;
    font-size: 14px;
    line-height: 14px;
    color: #FFFFFF;
    margin: 10px 0px 15px 0px;
    height: 20px;
    display: inline-flex;
    padding: 0px 10px;
    align-items: center
}

.task-status.task__approved {
    background: #FF9900
}

.task-status.task__approved:before {
    content: '';
    display: inline-block;
    background: url(../img/gal.svg) no-repeat center #F27400;
    border-radius: 50px;
    margin-left: -10px;
    width: 21px;
    margin-right: 5px;
    height: 20px
}

.task-money {
    margin: 15px 0px 5px 0px
}

.task-money__row {
    margin-right: 20px
}

.task-money__row>span {
    display: inline-block;
    color: #706F6F;
    margin-bottom: 4px
}

.task-money__row input {
    background: #FFFFFF;
    border: 1px solid #DEE4F2;
    border-radius: 3px;
    width: 200px;
    height: 30px;
    padding-left: 10px;
    padding-right: 50px
}

.task-money__row .task-money__input {
    position: relative;
    width: 200px;
    margin-bottom: 7px
}

.task-money__row .task-money__input>span {
    font-size: 14px;
    line-height: 16px;
    color: #000000;
    position: absolute;
    right: 10px;
    top: 7px
}

.task-money__row .task-money-progress {
    width: 200px;
    position: relative;
    font-size: 12px;
    background: #C7EABE;
    border-radius: 50px;
    color: #FFFFFF;
    margin-top: 7px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    overflow: hidden
}

.task-money__row .task-money-progress span.progress-col {
    position: absolute;
    background: #38C947;
    display: block;
    height: 20px;
    top: 0px;
    left: 0px
}

.task-money__row .task-money-progress span.task-money-progress-text {
    z-index: 2;
    position: relative
}

.task-h2 {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
    margin-bottom: 10px
}

.task-h2 span {
    color: #706F6F
}

.task-h3 {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 8px;
    color: #000000
}

textarea {
    width: 100%;
    height: 90px;
    background: #FFFFFF;
    border: 1px solid #DEE4F2;
    border-radius: 3px;
    margin-bottom: 10px;
    padding: 10px;
    resize: vertical
}

.file-list {
    margin-bottom: 10px
}

.file-list .file-item {
    font-size: 14px;
    line-height: 16px;
    color: #706F6F;
    margin: 2px 0px;
    text-decoration: none
}

.file-list .file-item:before {
    content: '';
    background: url(../img/attach.svg) no-repeat;
    width: 9px;
    height: 10px;
    margin-right: 7px;
    display: inline-block
}

.file-list__item {
    display: block;
    margin-bottom: 4px
}

.file-list__item a:first-child {
    margin-right: 8px
}

.file-list__item a.file-delete {
    display: inline-block;
    margin-left: 8px;
    opacity: 0;
    color: #9FBAF4;
    visibility: hidden
}

.file-list__item:hover a {
    opacity: 1;
    visibility: visible
}

.file-attach input {
    position: absolute;
    opacity: 0;
    visibility: hidden
}

.file-attach span {
    font-size: 12px;
    line-height: 14px;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    color: #6091F8;
    display: inline-block;
    cursor: pointer
}

.task-client__head {
    border-bottom: 1px solid #DEE5F2;
    padding: 0px 10px 10px 10px;
    margin: 0px -10px
}

.task-client__head a {
    display: table;
    font-size: 16px;
    line-height: 19px;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    color: #6091F8
}

.task-client__head span {
    display: block;
    font-size: 14px;
    line-height: 16px;
    color: #706F6F;
    margin-top: 6px
}

.task-client__row {
    display: flex;
    margin-top: 10px
}

.task-client__row::before {
    content: '';
    background: url(../img/user.svg) no-repeat;
    width: 10px;
    height: 11px;
    display: block;
    margin-right: 10px;
    margin-top: 1px
}

.task__executor {
    background: #FFFFFF;
    border: 1px solid #DEE4F2;
    border-radius: 3px;
    padding: 9px;
    color: #706F6F;
    margin-bottom: 5px
}

.task__executor:last-child {
    margin-bottom: 0px
}

.task__executor a {
    font-size: 12px;
    line-height: 14px;
    color: #6091F8;
    display: table;
    margin-top: 10px
}

.task__executor__row {
    margin-bottom: 4px
}

.task__executor__row span {
    display: flex
}

.task__executor__row .task__executor__user::before {
    content: '';
    background: url(../img/user.svg) no-repeat;
    width: 10px;
    height: 11px;
    display: block;
    margin-right: 10px;
    margin-top: 1px
}

.task__executor__assept {
    background: url(../img/white-gal.svg) no-repeat center #38C947;
    width: 30px;
    height: 30px;
    border-radius: 3px;
    margin-top: 0px !important
}

.task__executor__cancel {
    background: url(../img/delete-ex.svg) no-repeat center red;
    background-size: 9px 9px;
    width: 30px;
    height: 30px;
    border-radius: 3px;
    margin-top: 0px !important;
    margin-left: 5px
}

.task__executor__add input {
    width: calc(100% - 244px - 85px)
}

@media (max-width: 1200px) {
    .task__executor__add input {
        width: calc(35% - 40px)
    }
}

@media (max-width: 1200px) {
    .task__executor__add select {
        width: calc(65% - 35px)
    }
}

.delete-excutor {
    width: 13px;
    height: 13px;
    background: url(../img/delete-ex.svg) no-repeat center red;
    margin-top: 0px !important;
    border-radius: 3px;
    margin-left: 5px
}

.task__send {
    max-width: 243px
}

.task__send input {
    width: 100%;
    margin-bottom: 6px
}

.task__send .btn {
    width: 100%;
    font-size: 14px;
    line-height: 16px;
    padding: 10px 14px;
    cursor: pointer
}

.task-docs:not(:last-child) {
    border-bottom: 1px solid #DEE5F2;
    margin-bottom: 10px;
    padding-bottom: 10px;
    margin-left: -10px;
    margin-right: -10px;
    padding: 0px 10px 10px 10px
}

.task-docs__list .file-item {
    font-size: 14px;
    line-height: 16px;
    color: #706F6F;
    margin: 2px 0px;
    text-decoration: none
}

.task-docs__list .file-item:before {
    content: '';
    background: url(../img/doc.svg) no-repeat;
    width: 10px;
    height: 13px;
    margin-right: 7px;
    display: inline-block;
    top: 2px;
    position: relative
}

.task-docs__control {
    margin-top: 10px
}

.task-docs__control .btn {
    font-size: 14px;
    line-height: 16px;
    margin-right: 10px
}

.clients-pays__row {
    border-top: 1px solid #DEE5F2;
    margin-top: 3px;
    padding-top: 3px
}

.clients-pays__row:first-child {
    margin-top: 0px;
    padding-top: 0px;
    border-top: 0px
}

.clients-pays input {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 5px
}

.clients-pays__alert {
    font-size: 12px;
    line-height: 14px;
    color: #706F6F;
    margin-bottom: 7px
}

.task-act {
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid #DEE4F2;
    border-radius: 3px;
    border-collapse: collapse;
    font-size: 14px;
    line-height: 16px
}

.task-act tr td {
    padding: 4px 10px 4px 10px;
    height: 38px;
    border-top: 1px solid #DEE4F2
}

.task-act tr td:first-child {
    color: #C185AD
}

.task-act tr th {
    padding: 13px 10px 10px 10px;
    color: #6091F8;
    font-weight: 500
}

.task-act .skan-file {
    display: inline-block
}

.task-act .skan-file__item {
    background: url(../img/scan-white.svg) no-repeat 10px 8px #6091F8;
    border-radius: 3px;
    padding-left: 30px;
    display: inline-block;
    font-size: 16px;
    text-transform: uppercase;
    color: #FFFFFF;
    width: 85px;
    line-height: 30px;
    height: 30px;
    margin-left: 14px;
    margin-right: 8px;
    transition: all .2s;
    text-decoration: none
}

.task-act .skan-file__item:hover {
    opacity: 0.85
}

.add-task {
    background: #fff;
    max-width: 360px;
    border-radius: 5px;
    padding: 15px 10px
}

.field-row {
    margin-bottom: 10px
}

.field-row label {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 16px;
    color: #706F6F
}

.field-row select {
    width: 200px
}

.field-row input {
    width: 200px
}

.field-row textarea {
    margin-bottom: 0px
}

.add-plus {
    background: url(../img/plus.svg) no-repeat center #6BC25D;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-left: 9px;
    cursor: pointer
}

.clients,
.pays {
    background: #FFFFFF;
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 16px
}

.clients table,
.pays table {
    width: 100%;
    border-collapse: collapse
}

.clients table tr td,
.pays table tr td {
    padding: 10px;
    border-top: 1px solid #DEE4F2
}

.clients table tr td span,
.pays table tr td span {
    display: block;
    color: #706F6F;
    font-size: 12px
}

.clients table tr th,
.pays table tr th {
    padding: 13px 10px 10px 10px;
    color: #6091F8
}

.tabs {
    background: #FFFFFF;
    border-radius: 5px;
    height: 49px;
    display: flex;
    margin: 20px 0px
}

.tabs a {
    font-size: 16px;
    line-height: 19px;
    color: #000000;
    padding: 15px 11px;
    text-decoration: none
}

.tabs a.active {
    background: #6091F8;
    border-radius: 5px;
    color: #fff
}

.client-info__row {
    margin-bottom: 20px
}

.client-info__row a.delete {
    display: inline-block;
    margin-left: 8px;
    color: #9FBAF4;
    font-size: 14px
}

.client-info__row a {
    font-size: 14px;
    line-height: 14px;
    color: #6091F8;
    display: table
}

.client-info__row:last-child {
    margin-bottom: 0px
}

.client-info__row span {
    color: #706F6F;
    display: block;
    margin-bottom: 5px
}

.client-info input[type=password] {
    color: #6091F8;
    border: none;
    padding: 0px;
    letter-spacing: 0.4px;
    font-size: 18px
}

.content-white {
    background: #FFFFFF;
    border-radius: 5px;
    margin: 20px 0px;
    padding: 15px 10px
}

.mb-0 {
    margin-bottom: 0px
}

.mb-10 {
    margin-bottom: 10px
}

.contact-person__item {
    width: 32%;
    background: #FFFFFF;
    border: 1px solid #DEE4F2;
    border-radius: 3px;
    margin-right: 2%;
    margin-bottom: 15px;
    border-radius: 5px 5px 0px 0px
}

.contact-person__item .delete {
    font-size: 12px;
    color: #E92E5A;
    margin: 0px 10px 15px 10px;
    display: table
}

.contact-person__item:nth-child(3n) {
    margin-right: 0px
}

.contact-person__name {
    background: url(../img/user-white.svg) no-repeat 10px 12px #6091F8;
    border-radius: 5px 5px 0px 0px;
    color: #FFFFFF;
    padding: 10px 10px 8px 28px
}

.contact-person__dolzh {
    color: #706F6F;
    padding: 7px 10px 8px 28px
}

.contact-person__row {
    border-top: 1px solid #DEE5F2;
    padding: 10px
}

.contact-person__phones>div {
    line-height: 100%;
    margin-bottom: 5px
}

.contact-person__phones>div:last-child {
    margin-bottom: 0px
}

.contact-person__phones>div::before {
    content: '';
    display: inline-block;
    background: url(../img/phone.svg) no-repeat;
    width: 10px;
    height: 10px;
    margin-right: 8px
}

.contact-person__phones>div span {
    display: inline-block;
    margin-left: 15px
}

.contact-person__mails>div {
    line-height: 100%;
    margin-bottom: 5px
}

.contact-person__mails>div:last-child {
    margin-bottom: 0px
}

.contact-person__mails>div::before {
    content: '';
    display: inline-block;
    background: url(../img/mail.svg) no-repeat;
    width: 10px;
    height: 10px;
    margin-right: 8px
}

.team {
    background: #FFFFFF;
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 16px
}

.team table {
    width: 100%;
    border-collapse: collapse
}

.team table tr th {
    padding: 13px 10px 10px 10px;
    color: #6091F8
}

.team table tr td {
    padding: 10px;
    border-top: 1px solid #DEE4F2;
    position: relative;
    height: 36px
}

.team table tr td:first-child {
    padding-left: 55px
}

.team table tr td:first-child::before {
    content: '';
    background: url(../img/user-white.svg) no-repeat center #6091F8;
    width: 28px;
    height: 28px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    border-radius: 50%;
    position: absolute;
    top: 4px;
    left: 14px
}

.remodal {
    text-align: left;
    box-shadow: 0px 4px 12px rgba(8, 35, 92, 0.25);
    border-radius: 5px
}

.remodal .title {
    margin-bottom: 15px
}

.remodal-alert {
    max-width: 470px
}

.remodal-alert p {
    max-width: 270px;
    font-size: 14px;
    line-height: 16px;
    color: #000000;
    margin: 15px auto;
    margin-bottom: 24px
}

.center-text {
    text-align: center
}

.center-text .btn {
    margin: 0 auto;
    padding: 13px 24px
}

.center-text .btns-control {
    justify-content: center
}

.center-text .btns-control .btn {
    margin: 0px 5px
}

.red-text {
    color: #FF6240
}

.c__table__row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr [5];
    grid-template-columns: repeat(5, 1fr);
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    width: 100%;
    text-decoration: none;
    position: relative;
    transition: all .3s
}

.c__table__row.c__table__row__link {
    cursor: pointer
}

.c__table__row:first-child .c__table__col {
    padding: 15px 10px 10px 10px;
    color: #6091F8;
    border-top: none;
    font-weight: 500
}

.c__table__row .c__table__col {
    padding: 10px;
    border-top: 1px solid #DEE4F2;
    color: #000
}

.c__table__row .c__table__col span {
    display: block;
    color: #706F6F;
    font-size: 12px
}

.c__table__row:not(:first-child):hover {
    background: #FFFFFF;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.12)
}

.c__table__row:not(:first-child):hover>div {
    background: #fff !important
}

.c__table__row:not(:first-child):hover::after {
    content: "";
    position: absolute;
    left: 0px;
    height: 100%;
    border-left: 2px solid #6091F8;
    width: 2px
}

.c__table__row:not(:first-child):active {
    background: #F3F6FC;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.12)
}

.c__table__row:not(:first-child):active>div {
    background: #F3F6FC !important
}

.c__table__row:not(:first-child):active::after {
    content: "";
    position: absolute;
    left: 0px;
    height: 100%;
    border-left: 2px solid #6091F8;
    width: 2px
}

.team .c__table__row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr [3];
    grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    width: 100%;
    text-decoration: none;
    position: relative;
    transition: all .3s
}

.team .c__table__row:not(:first-child) .c__table__col:first-child {
    padding-left: 55px
}

.team .c__table__row:not(:first-child) .c__table__col:first-child::before {
    content: '';
    background: url(../img/user-white.svg) no-repeat center #6091F8;
    width: 28px;
    height: 28px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    border-radius: 50%;
    position: absolute;
    top: 4px;
    left: 14px
}

.auth__content {
    background: linear-gradient(180deg, #618AE0 0%, #C185AD 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: relative
}

.auth__content::after {
    content: '';
    background: url(../img/auth-decor-1.png) no-repeat;
    left: -20px;
    top: 100px;
    display: block;
    width: 70px;
    height: 300px;
    position: absolute
}

.auth__content::before {
    content: '';
    background: url(../img/auth-decor-2.png) no-repeat;
    right: 0px;
    bottom: 0px;
    display: block;
    width: 235px;
    height: 164px;
    position: absolute
}

.auth__form {
    width: 340px;
    height: 355px;
    background: #FFFFFF;
    border-radius: 5px;
    padding: 50px 45px 64px 45px
}

.auth__form .btn.btn-fillblue {
    width: 100%;
    padding: 18px 20px
}

.auth__form input {
    width: 100%
}

.auth__logo {
    display: flex;
    justify-content: center;
    margin-bottom: 42px
}

.auth__logo img {
    width: 230px
}

.remodal[data-remodal-id=add-contact-client] {
    max-width: 375px
}

.field-row input.dop-input {
    margin-left: 10px;
    width: 75px
}

.delete-form-row {
    background: url(../img/red-close.svg) no-repeat;
    width: 9px;
    height: 9px;
    margin-left: 10px
}

.form-row__cancel {
    margin-left: 14px;
    border-bottom: 1px solid;
    text-decoration: none;
    color: #ABB7D0;
    line-height: 90%
}

.form-row-add {
    color: #6091F8;
    border-bottom: 1px solid;
    text-decoration: none;
    line-height: 95%;
    display: table;
    margin-top: -5px
}

.field-row__btns {
    margin-top: 15px
}

.contact-person {
    background: url(../img/edit-blue.svg) no-repeat center;
    width: 12px;
    height: 12px
}

.ts__plan-list {
    margin-top: 36px
}

.ts__plan-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px
}

.ts__plan-item:last-child {
    margin-bottom: 0px
}

.ts__plan-name {
    width: 110px;
    margin-right: 15px
}

.ts__plan-graph-content {
    max-width: calc(100% - 220px);
    margin-right: 15px;
    width: 100%
}

.ts__plan-graph {
    height: 35px;
    display: flex;
    position: relative;
    width: 100%
}

.ts__plan-graph.have-plan {
    background: #F3F6FC
}

.ts__plan-summ {
    font-size: 12px;
    color: #ABB7D0;
    max-width: 85px
}

.ts__plan-min {
    height: 35px;
    font-size: 12px;
    color: #ABB7D0;
    display: flex;
    padding: 0px 10px;
    align-items: center
}

.ts__plan-min:after {
    content: '';
    display: block;
    width: 4px;
    height: 35px;
    position: absolute;
    z-index: 2;
    left: 0px;
    background: #E92E5A
}

.ts__plan-middle {
    height: 35px;
    font-size: 12px;
    color: #ABB7D0;
    display: flex;
    padding: 0px 10px;
    align-items: center;
    position: relative
}

.ts__plan-middle:after {
    content: '';
    display: block;
    width: 4px;
    height: 35px;
    position: absolute;
    z-index: 2;
    left: 0px;
    background: #FFC700
}

.ts__plan-good {
    height: 35px;
    font-size: 12px;
    color: #ABB7D0;
    padding: 0px 10px;
    display: flex;
    align-items: center;
    position: relative
}

.ts__plan-good:after {
    content: '';
    display: block;
    width: 4px;
    height: 35px;
    position: absolute;
    z-index: 2;
    left: 0px;
    background: #25B934
}

.ts__plan-fact {
    height: 35px;
    padding: 0px 10px;
    display: flex;
    align-items: center;
    position: relative;
    background: #DBE6FF
}

.ts__plan-fact:after {
    content: '';
    display: block;
    width: 4px;
    height: 35px;
    position: absolute;
    z-index: 2;
    left: 0px;
    background: #6091F8
}

.ts__real-summ {
    position: absolute;
    left: 0px;
    height: 100%;
    top: 0px;
    padding: 10px 17px
}

.ts__report-list-users {
    margin: 16px 0px
}

.ts__report-user-item {
    font-size: 14px;
    color: #000000;
    display: flex;
    align-items: center;
    margin-bottom: 10px
}

.ts__report-user-item span {
    width: 10px;
    height: 10px;
    margin-right: 7px;
    display: block
}

.pays span.pay-summ {
    font-size: 14px;
    line-height: 16px;
    color: #36B049
}

.pays p {
    font-size: 12px;
    line-height: 14px;
    margin: 0px;
    color: #706F6F
}

.pays a {
    text-decoration: none;
    border-bottom: 1px solid;
    color: #6091F8
}

.pays a:hover {
    border-bottom: 1px solid #fff
}

.c__table__row.itog {
    background: #F4F7FC;
    border-radius: 0px 0px 5px 5px;
    border-top: 1px solid #DEE4F2
}

.c__table__row.itog .c__table__col {
    border: none;
    padding: 10px 10px 15px 10px
}

.c__table__row.itog .pay-itog {
    margin-right: 27px;
    font-weight: 500;
    font-size: 18px
}

.c__table__row.itog .pay-finall {
    font-weight: 500;
    font-size: 18px;
    color: #36B049
}

.c__table__row.itog:hover::after {
    display: none
}

.c__table__row.itog:hover>div {
    background: none !important
}

.c__table__row.itog:hover {
    box-shadow: none
}

.content-white.debet .c__table {
    max-width: 710px;
    width: 100%;
    border: 1px solid #DEE4F2;
    border-radius: 5px
}

.content-white.debet .c__table .c__table__row {
    -ms-grid-columns: 1fr [3];
    grid-template-columns: repeat(3, 1fr)
}

.content-white.debet .c__table .c__table__row:hover {
    box-shadow: none
}

.content-white.debet .debet-more {
    font-size: 12px;
    color: #706F6F
}

.content-white.debet .debet-more div {
    margin-bottom: 5px
}

.content-white.debet .debet-more div:last-child {
    margin-bottom: 0px
}

.content-white.debet .debet-more div:last-child {
    margin-bottom: 0px;
    margin-left: -5px
}

.content-white.debet .debet-more:last-child div {
    margin-bottom: 0px
}

.content-white.debet .c__table__row:not(:first-child):hover::after {
    display: none !important
}

.setting-row {
    max-width: 360px;
    background: #FFFFFF;
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 15px 10px
}

.btn-fillpink {
    background: #C185AD;
    color: #fff;
    height: 36px;
    font-size: 14px;
    padding: 10px 40px
}

.salaries {
    background: #FFFFFF;
    border: 1px solid #DEE4F2;
    border-radius: 5px;
    padding: 17px 10px
}

.salaries .c__table {
    background: #FFFFFF;
    border: 1px solid #DEE4F2;
    border-radius: 5px;
    max-width: 750px
}

.salaries .c__table .btn {
    margin: -7px 0px;
    background: #6091F8
}

.salaries .c__table .btn:hover {
    background: #4C74C7
}

.salaries {
    overflow: hidden
}

.salaries .c__table__row {
    -ms-grid-columns: 1fr [2];
    grid-template-columns: repeat(2, 1fr)
}

.salaries .c__table__row:not(:first-child):hover::after {
    display: none
}

.salaries .c__table__row:not(:first-child):hover {
    box-shadow: none
}

.salaries .c__table__row:not(:first-child):hover>div {
    background: #EBF0FD !important
}

.ts__salaries-card {
    background: #FFFFFF;
    border-radius: 5px;
    padding: 15px 15px 20px 10px;
    margin-bottom: 20px
}

.ts__salaries-card .user-name {
    font-size: 20px;
    width: 64%
}

.ts__salaries-card .user-name span {
    font-size: 14px;
    margin-top: 8px;
    color: #ABB7D0;
    display: block
}

.ts__salaries-card .user-pay {
    font-size: 20px
}

.ts__salaries-card__content {
    width: 100%;
    display: flex;
    align-items: flex-start;
    max-width: 950px
}

.salaries-card {
    background: #FFFFFF;
    border: 1px solid #DEE4F2;
    border-radius: 5px;
    margin-bottom: 20px
}

.salaries-card input {
    padding: 0px 5px
}

.salaries-card.salaries-card__add {
    padding: 17px 0px
}

.salaries-card.salaries-card__add .salaries-card__body {
    background: #fff
}

.salaries-card.salaries-card__add .salaries-card__body .c__table__row .c__table__col {
    border: none
}

.salaries-card.salaries-card__add .salaries-card__body .c__table__row:first-child .c__table__col {
    padding: 2px 5px
}

.salaries-card.salaries-card__add .salaries-card__body .c__table__row:not(:first-child):hover {
    background: #FFFFFF;
    box-shadow: none
}

.salaries-card.salaries-card__add .salaries-card__body .c__table__row:not(:first-child):hover>div {
    background: none !important
}

.salaries-card__head {
    display: flex;
    padding: 8px 10px;
    justify-content: space-between;
    align-items: center;
    min-height: 46px;
    cursor: pointer
}

.salaries-card__name {
    font-weight: 500;
    font-size: 16px;
    color: #6091F8
}

.salaries-card__price {
    font-weight: 500;
    font-size: 14px;
    color: #6091F8;
    margin-right: 190px;
    width: calc(20% - 50px)
}

.salaries-card__price input {
    max-width: 72px;
    background: #FFFFFF;
    border: 1px solid #DEE4F2;
    border-radius: 3px;
    height: 30px;
    font-weight: 500;
    color: #6091F8;
    margin-right: 10px;
    padding: 5px
}

.salaries-card__body {
    background: #F3F6FC;
    border-radius: 0px;
    margin-left: 10px
}

.salaries-card__item {
    border-bottom: 1px solid #DEE5F2;
    max-width: 950px
}

.salaries-card__item .salaries__inline {
    padding-right: 15px
}

.salaries-card__item .salaries__inline .btn {
    background: #6091F8;
    margin-right: 13px;
    padding: 7px 14px
}

.salaries-card__item .salaries__inline .btn:hover {
    background: #4C74C7
}

.salaries-card__item .c__table__row .c__table__col {
    padding: 3px 5px;
    display: flex;
    align-items: center
}

.salaries-card__item:last-child {
    border-bottom: none
}

.salaries-card__item .c__table .c__table__row {
    -ms-grid-columns: 1fr [5];
    grid-template-columns: repeat(5, 1fr);
    -ms-grid-columns: calc(35% - 50px) calc(25% - 50px) calc(20% - 50px) calc(20% - 50px) 200px;
    grid-template-columns: calc(35% - 50px) calc(25% - 50px) calc(20% - 50px) calc(20% - 50px) 200px
}

.salaries-card__item .c__table .c__table__row input {
    width: 100%
}

.salaries-card__item .c__table__row:first-child .c__table__col {
    color: #67779A;
    font-weight: 400;
    padding: 10px 5px
}

.salaries-card__item .c__table__row:not(:first-child):hover>div {
    background: #F3F6FC !important
}

.salaries-card__add-inputs {
    display: flex;
    justify-content: space-between
}

.salaries-card__add {
    padding: 15px 10px
}

.salaries-card__add button[type='submit'] {
    margin-bottom: 10px;
    font-size: 14px;
    color: #6091F8;
    background: none;
    text-decoration: none;
    border-bottom: 1px solid;
    padding: 0px;
    cursor: pointer
}

.salaries-card__add button[type='submit']:hover {
    border-bottom: 1px solid #fff
}

.salaries-card__add input:nth-last-child(2) {
    width: 75%
}

.salaries-card__add input:last-child {
    width: 23%
}

.client-must {
    font-size: 18px;
    color: #E92E5A
}

.client-tasks {
    background: #FFFFFF;
    border-radius: 5px;
    padding: 15px 10px
}

.client-tasks .ts__filter {
    padding: 0px;
    margin-top: 0px
}

.ts__list {
    margin-bottom: 20px
}

.ts__list .task-h2 {
    padding: 15px 15px 0px 20px
}

.ts__list.ts__list__clients {
    border: 1px solid #DEE4F2;
    border-radius: 5px;
    padding-bottom: 0px
}

.clients-pays {
    border: 1px solid #DEE4F2;
    border-radius: 5px;
    padding-bottom: 0px
}

.clients-pays .c__table__row {
    -ms-grid-columns: 1fr [4];
    grid-template-columns: repeat(4, 1fr);
    -ms-grid-columns: 10% 18% 50% 22%;
    grid-template-columns: 10% 18% 50% 22%
}

.clients-pays span.pay-summ {
    font-size: 14px;
    color: #36B049
}

.clients-pays a {
    color: #6091F8;
    text-decoration: none;
    border-bottom: 1px solid
}

.clients-pays a:hover {
    border-bottom: 1px solid transparent
}

.download {
    position: relative;
    font-size: 14px;
    color: #706F6F;
    text-decoration: none;
    border-bottom: 1px solid;
    margin-left: 15px;
    white-space: nowrap
}

.download:hover {
    border-bottom: 1px solid transparent
}

.download:before {
    content: '';
    background: url(../img/download.svg) no-repeat;
    width: 10px;
    height: 13px;
    margin-right: 5px;
    display: block;
    position: absolute;
    left: -15px;
    top: 3px
}

.edit {
    position: relative;
    font-size: 14px;
    color: #706F6F;
    text-decoration: none;
    border-bottom: 1px solid;
    margin-left: 20px
}

.edit:hover {
    border-bottom: 1px solid transparent
}

.edit:before {
    content: '';
    background: url(../img/edit.svg) no-repeat;
    width: 15px;
    height: 15px;
    margin-right: 5px;
    display: block;
    position: absolute;
    left: -20px;
    top: 0px
}

.delete {
    font-size: 14px;
    border-bottom: 1px solid;
    color: #ABB7D0;
    text-decoration: none;
    cursor: pointer
}

.delete:hover {
    border-bottom: 1px solid transparent
}

.c__table__row .c__table__col.clients-docs-control {
    padding: 2px 10px;
    align-items: center
}

.c__table__row .c__table__col.clients-docs-control a {
    margin-right: 20px
}

@media (max-width: 1100px) {
    .c__table__row .c__table__col.clients-docs-control a {
        margin-right: 10px
    }
}

.c__table__row .c__table__col.clients-docs-control a:last-child {
    margin-right: 0px
}

.clients-docs {
    background: #FFFFFF;
    border: 1px solid #DEE4F2;
    border-radius: 5px
}

.clients-table-scheta .c__table__row,
.clients-table-acts .c__table__row {
    -ms-grid-columns: 1fr [5];
    grid-template-columns: repeat(5, 1fr);
    -ms-grid-columns: 5% 15% 15% 20% 45%;
    grid-template-columns: 5% 15% 15% 20% 45%
}

.clients-table-access-acts .c__table__row {
    -ms-grid-columns: 1fr [8];
    grid-template-columns: repeat(8, 1fr);
    -ms-grid-columns: 5% 15% 10% 18% 18% 12% 12% 10%;
    grid-template-columns: 5% 15% 10% 18% 18% 12% 12% 10%
}

.scan {
    background: url(../img/scan-white.svg) no-repeat 10px 8px #6091F8;
    border-radius: 3px;
    padding-left: 30px;
    display: inline-block;
    font-size: 14px;
    color: #FFFFFF;
    width: 85px;
    line-height: 30px;
    height: 30px;
    margin-left: 14px;
    margin-right: 8px;
    transition: all .2s;
    text-decoration: none
}

.ts__graph-view {
    float: right;
    display: flex
}

.ts__graph-view a {
    background-color: #DEE4F2;
    border-radius: 3px;
    width: 21px;
    height: 21px;
    display: block;
    margin-left: 4px
}

.ts__graph-view a.graph-view-1 {
    background-image: url(../img/graph-v-1.svg);
    background-repeat: no-repeat;
    background-position: center
}

.ts__graph-view a.graph-view-2 {
    background-image: url(../img/graph-v-2.svg);
    background-repeat: no-repeat;
    background-position: center
}

.ts__graph-view a:hover {
    background-color: #6091F8
}

.ts__graph-view a.active {
    background-color: #6091F8
}

.debet-more {
    -ms-grid-columns: 1fr [3];
    grid-template-columns: repeat(3, 1fr);
    display: -ms-grid;
    display: grid
}

.c__table__row__dop {
    margin-bottom: 10px
}

.c__table__row__dop .debet-more {
    border-left: 1px solid #ABB7D0;
    padding-left: 10px;
    margin-top: 0px !important;
    margin-left: 15px
}

.ts__list.ts__list__clients .ts__table-col:nth-child(4),
.ts__list.ts__list__clients .ts__table__item:first-child .ts__table-row .ts__table-col:nth-child(4) {
    max-width: 200px
}

.ts__list.ts__list__clients .ts__table-col:first-child,
.ts__list.ts__list__clients .ts__table__item:first-child .ts__table-row .ts__table-col:first-child {
    max-width: 200px
}

.btn.btn-trains {
    border: 1px solid #6091F8;
    border-radius: 3px;
    font-size: 14px;
    color: #6091F8;
    background-color: #fff
}

.btn.btn-trains.btn-refresh {
    background: url(../img/refresh.svg) no-repeat;
    background-position: 10px 9px;
    margin-left: 30px;
    padding: 7px 12px 7px 35px
}

.btn.btn-trains:hover {
    background-color: rgba(233, 240, 255, 0.9)
}

.switch-checkbox {
    position: relative;
    display: inline-block;
    width: 32px;
    height: 16px;
    margin-left: 8px
}

.switch-checkbox input {
    display: none
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s
}

.slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 2px;
    bottom: 1px;
    background-color: white;
    transition: .4s
}

input:checked+.slider {
    background-color: #2196F3
}

input:focus+.slider {
    box-shadow: 0 0 1px #2196F3
}

input:checked+.slider:before {
    transform: translateX(14px)
}

.slider.round {
    border-radius: 34px
}

.slider.round:before {
    border-radius: 50%
}

.check-list {
    border-top: 1px solid #DEE4F2;
    padding: 25px 0px 10px 0px;
    margin: 25px 0px 10px 0px
}

.check-list__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px
}

.switch-label {
    font-size: 14px;
    line-height: 16px;
    display: flex;
    align-items: center;
    color: #6091F8
}

.check-list-h2 {
    font-size: 16px;
    line-height: 19px;
    background: url(../img/playlist_add_check.svg) no-repeat left center;
    padding-left: 28px;
    color: #08235C
}

.j-checkbox,
.form-check {
    position: relative;
    cursor: pointer;
    padding-left: 24px;
    display: block;
    width: 100%
}

@media (max-width: 760px) {
    .j-checkbox,
    .form-check {
        max-width: 100%
    }
}

.j-checkbox.oragne-checkbox:after,
.form-check.oragne-checkbox:after {
    content: '';
    background: url(../img/orange-gal.svg) no-repeat center;
    background-size: 16px
}

.j-checkbox:before,
.form-check:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 16px;
    height: 16px;
    background: #E8EDF2;
    border: 1px solid #99BECE;
    background: #fff;
    border-radius: 4px;
    transition: all .3s ease
}

.j-checkbox:after,
.form-check:after {
    content: '';
    position: absolute;
    background: url(../img/green-gal.svg) no-repeat center;
    background-size: 16px;
    top: 0px;
    left: 0px;
    width: 16px;
    height: 16px;
    border-radius: 3px;
    opacity: 0;
    transition: all .3s ease
}

.j-checkbox input,
.form-check input {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    opacity: 0;
    cursor: pointer
}

.j-checkbox span,
.form-check span {
    font-weight: 400;
    font-size: 14px;
    color: #0E2B44;
    padding-top: 0px;
    display: block
}

.j-checkbox span a,
.form-check span a {
    font-weight: 500;
    color: #48C774;
    border-bottom: 1px solid;
    text-decoration: none;
    position: relative;
    z-index: 2
}

.j-checkbox span a:hover,
.form-check span a:hover {
    border-bottom: 1px solid transparent
}

@media (max-width: 760px) {
    .j-checkbox span,
    .form-check span {
        font-size: 12px;
        text-align: left
    }
}

.j-checkbox.active::after,
.j-radio.active::after {
    opacity: 1
}

.check-list__row {
    border-bottom: 1px solid #DEE4F2;
    padding: 16px 0px
}

.check-list__row:last-child {
    border: none
}

.check-list__row__label {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.check-list__person {
    display: flex
}

.check-list__person__item {
    background: #FFFFFF;
    border: 1px solid #DEE4F2;
    width: 20px;
    height: 20px;
    margin-left: 8px;
    border-radius: 50%;
    font-size: 10px;
    line-height: 12px;
    display: flex;
    align-items: center;
    justify-content: center
}

.check-list__person__item.check-list__person__item-red {
    color: #B92020
}

.check-list__person__item.check-list__person__item-blue {
    color: #6091F8
}

.check-list__docs {
    display: flex;
    flex-wrap: wrap;
    margin: 5px 0px;
    padding-left: 25px
}

.check-list__docs__item {
    margin-right: 8px
}

.check-list__docs__img {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: blur(1px);
    border-radius: 3px;
    overflow: hidden
}

.check-list__docs__img img {
    max-width: 100%;
    max-height: 100%
}

.check-list__docs__notimg {
    width: 120px;
    height: 120px;
    background: #F0F4FF;
    border-radius: 3px;
    font-size: 13px;
    line-height: 140%;
    color: #67779A;
    display: flex;
    align-items: center;
    justify-content: center
}

.check-list__docs__name {
    font-size: 12px;
    line-height: 140%;
    text-decoration: none;
    padding-left: 19px;
    background: url(../img/attach.svg) no-repeat left center;
    background-size: 15px 17px;
    color: #08235C;
    min-height: 17px;
    display: table;
    margin: 4px 0px
}

.task-chat__title {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    margin: 0px 0px 8px 0px;
    color: #08235C;
    background: url(../img/chat.svg) no-repeat left center;
    padding-left: 25px
}

.chat-textarea {
    background: #F0F4FF;
    border: 1px solid #DEE4F2;
    box-sizing: border-box;
    border-radius: 3px;
    height: calc(100% - 60px);
    overflow-y: auto;
    padding: 4px 12px 12px 4px
}

.chat {
    height: 100%
}

.task-chat {
    height: 100%
}

.chat-control {
    margin: 8px 0px 0px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.chat-control .chat-attach-file {
    background: url(../img/attach.svg) no-repeat center;
    background-size: 16px;
    width: 24px;
    height: 18px;
    cursor: pointer
}

.chat-control .chat-attach-file:hover {
    opacity: 0.85
}

.chat-control .chat-attach-file input {
    width: 100%;
    cursor: pointer;
    height: 100%;
    opacity: 0
}

.chat-control .chat-input {
    width: calc(100% - 32px);
    position: relative
}

.chat-control .chat-input input {
    height: 30px;
    background: #FFFFFF;
    border: 1px solid #DEE4F2;
    width: 100%;
    padding: 0px 35px 0px 10px;
    border-radius: 3px
}

.chat-control .chat-input button {
    background: url(../img/send.svg) no-repeat;
    width: 20px;
    height: 20px;
    cursor: pointer;
    border: none;
    right: 8px;
    top: 5px;
    position: absolute
}

.chat-control .chat-input button:hover {
    opacity: 0.85
}

.chat-date {
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    margin: 16px 0px 8px 0px;
    color: #67779A
}

.chat-dialog__user {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 12px
}

.chat-dialog__user__curcle {
    width: 24px;
    height: 24px;
    background: #FFFFFF;
    border: 1px solid #DEE4F2;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 14px;
    color: #6091F8;
    border-radius: 50%
}

.chat-dialog__user__main {
    background: #FFFFFF;
    border-radius: 5px 5px 5px 0px;
    padding: 6px;
    width: calc(100% - 32px);
    position: relative
}

.chat-dialog__user__main:after {
    content: '';
    width: 0;
    height: 0;
    border: 0 solid transparent;
    border-right-width: 16px;
    border-left-width: 16px;
    border-bottom: 16px solid #fff;
    position: absolute;
    left: -8px;
    bottom: 0px
}

.chat-dialog__user__main__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 5px;
    font-size: 12px;
    color: #67779A;
    line-height: 14px
}

.chat-dialog__user__name {
    color: #B92020
}

.chat-dialog__user__text {
    font-size: 14px;
    line-height: 140%;
    margin: 5px 0px 4px 0px;
    color: #08235C
}

.chat-dialog__user__main__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2
}

.chat-dialog__user__main__footer a {
    font-size: 12px;
    line-height: 14px;
    text-decoration: none;
    color: #67779A;
    border-bottom: 1px solid transparent
}

.chat-dialog__user__main__footer a:hover {
    border-bottom: 1px solid
}

.chat-dialog__user__admin {
    background: #FFFFFF;
    border-radius: 5px 5px 5px 0px;
    padding: 6px;
    max-width: calc(100% - 32px);
    position: relative
}

.chat-dialog__user__admin:after {
    content: '';
    width: 0;
    height: 0;
    border: 0 solid transparent;
    border-right-width: 16px;
    border-left-width: 16px;
    border-bottom: 16px solid #fff;
    position: absolute;
    right: -8px;
    bottom: 0px
}

.chat-dialog__user__admin .chat-dialog__user__name {
    color: #20B982
}

.chat-dialog__user__add-task {
    font-size: 12px;
    line-height: 14px;
    color: #6091F8 !important;
    background: url(../img/playlist_add_check.svg) no-repeat left center;
    background-size: 14px;
    padding-left: 18px
}

.chat-dialog__admin {
    justify-content: flex-end
}

.chat-dialog__user__file {
    background: #F0F4FF;
    border-radius: 3px;
    width: 128px;
    height: 128px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.chat-dialog__user__answer {
    background: #F0F4FF;
    border-radius: 3px;
    margin: 5px 0px 8px 0px;
    padding: 4px
}

.chat-dialog__user__answer__name {
    font-size: 10px;
    line-height: 12px;
    color: #B92020
}

.chat-dialog__user__answer p {
    margin: 2px 0px;
    font-size: 12px;
    color: #08235C;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.chat-dialog__user__answer__file {
    text-decoration: none;
    font-size: 13px;
    color: #67779A;
    background: url(../img/attach-black.svg) no-repeat left center;
    height: 16px;
    padding-left: 22px;
    margin-top: 2px
}

.chat-dialog__user__answer__file span {
    color: #08235C
}

.inline-svg-icon {
    display: inline-block;
    width: 4px;
    height: 16px;
    min-width: 4px;
    fill: #706F6F
}

.check-list__more {
    display: flex;
    align-items: center;
    position: relative;
    top: 1px;
    padding: 0px 10px;
    margin: 0px 10px
}

.check-list__more:hover .inline-svg-icon {
    fill: #6091F8
}

.remodal.remodal-big {
    max-width: 600px;
    width: 100%;
    padding: 16px
}

.remodal.remodal-big .btns-control {
    justify-content: flex-end;
    margin-top: 20px
}

.remodal.remodal-big .btns-control a.modal-close {
    color: #9FBAF4;
    padding: 0px 24px
}

.task-list-add .field-row input {
    width: 100%
}

.task-list-add .field-row select {
    width: 100%;
    max-width: 50%
}

.fileattach {
    background: url(../img/attach-white.svg) no-repeat #6091F8;
    border-radius: 3px;
    padding: 10px 18px 10px 42px;
    background-position: 19px 10px;
    position: relative;
    display: table !important;
    transition: all 0.2s;
    cursor: pointer
}

.fileattach:hover {
    background-color: #9FBAF4
}

.fileattach input {
    width: 100%;
    opacity: 0;
    height: 100%;
    position: absolute;
    cursor: pointer;
    left: 0px;
    top: 0px
}

.fileattach span {
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
    cursor: pointer
}

.attach-file-item {
    position: relative;
    margin-right: 16px
}

.attach-file-item__file {
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    color: #67779A;
    background: #F0F4FF;
    border-radius: 3px
}

.attach-file-item__name {
    text-decoration: none;
    font-size: 12px;
    color: #08235C;
    background: url(../img/attach.svg) no-repeat left center;
    background-size: 15px;
    padding-left: 22px;
    margin-top: 4px
}

.attach-file-item__close {
    width: 20px;
    height: 20px;
    background: url(../img/close.svg) no-repeat center #fff;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    top: 4px;
    right: 4px;
    position: absolute;
    border-radius: 50%
}

.h1-head {
    align-items: center
}

.h1-head .control-persons {
    margin-left: 60px
}

.h1-head .control-persons__item {
    background: #FFFFFF;
    border: 1px solid #DEE4F2;
    padding: 9px 8px;
    border-radius: 59px;
    font-size: 12px;
    line-height: 14px;
    color: #6091F8;
    margin-right: 8px
}

.h1-head .control-persons__item span {
    display: inline-block;
    margin-left: 10px;
    color: #021130
}

.client__col {
    width: 30%;
    border-right: 1px solid #DEE5F2;
    padding: 15px 10px
}

.client__col:nth-child(2) {
    padding: 15px 20px
}

.client__col:last-child {
    border-right: 0px;
    width: 40%;
    padding: 15px 20px
}

.client-info .c__col-12 {
    border-bottom: 1px solid #DEE5F2;
    margin: 0px
}

.client-info .c__col-12:last-child {
    border-bottom: 0px
}

.client-info .c__col-12:last-child .client__col {
    border: none
}

.client-info a {
    color: #000000;
    text-decoration: none;
    height: 16px;
    line-height: 120%;
    display: inline-block
}

.whatsapp {
    background: url(../img/whatsapp.svg) no-repeat left center;
    width: 16px;
    height: 16px;
    display: inline-block !important;
    margin-bottom: 0px !important
}

.whatsapp-left {
    margin-right: 5px
}

.whatsapp-right {
    margin-left: 5px
}

*,
*::before,
*::after,
*:focus {
    box-sizing: border-box;
    outline: none
}

body {
    margin: 0px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 16px;
    min-height: 100vh;
    height: auto
}

.wrapper {
    overflow: hidden;
    min-height: 100vh;
    height: 100%;
    background: url(../img/bg1.jpg) no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    min-width: 960px;
    padding-top: 60px
}

a {
    color: #67779A
}

.rouble {
    font-family: 'rouble'
}

input,
textarea {
    font-family: 'Roboto', sans-serif
}

img {
    max-width: 100%
}

.-flex {
    display: flex
}

.-center {
    align-items: center
}

.-start {
    align-items: flex-start
}

.-end {
    align-items: flex-end
}

.-wrap {
    flex-wrap: wrap
}

.-justify-between {
    justify-content: space-between
}

.pt-0 {
    padding: 0px !important
}

.mt-12 {
    margin-top: 12px !important
}

.mt-20 {
    margin-top: 20px !important
}

.no-padding {
    padding: 0px !important
}

.btn {
    display: table;
    padding: 8px 24px;
    background: #9FBAF4;
    border-radius: 5px;
    font-size: 12px;
    color: #fff;
    text-decoration: none;
    transition: all .2s;
    white-space: nowrap;
    cursor: pointer
}

@media (max-width: 1100px) {
    .btn {
        padding: 10px 14px
    }
}

.btn:hover {
    background: #6091F8
}

.btn:active {
    background: #4C74C7
}

.btn.btn-pink {
    background: #C185AD;
    padding: 10px 24px;
    border-radius: 3px;
    font-size: 14px;
    line-height: 16px;
    padding: 10px 14px
}

@media (max-width: 1100px) {
    .btn.btn-pink {
        padding: 10px 14px
    }
}

.btn.btn-pink:hover {
    background: #ad85a0
}

.btn.btn-blue {
    background: #6091F8;
    color: #fff
}

@media (max-width: 1100px) {
    .btn.btn-blue {
        padding: 10px 14px
    }
}

.btn.btn-blue:hover {
    background: #9FBAF4
}

.btn.btn-fillblue {
    background: #6091F8;
    padding: 10px 24px;
    border-radius: 3px;
    font-size: 14px;
    line-height: 16px;
    color: #fff
}

@media (max-width: 1100px) {
    .btn.btn-fillblue {
        padding: 10px 14px
    }
}

.btn.btn-fillblue:hover {
    background: #9FBAF4
}

.btn.btn-red {
    background: #FF0000;
    padding: 10px 24px;
    border-radius: 3px;
    font-size: 14px;
    line-height: 16px
}

@media (max-width: 1100px) {
    .btn.btn-red {
        padding: 10px 14px
    }
}

.btn.btn-red:hover {
    background: #e73434
}

input,
button,
textarea,
label {
    outline: none;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    border: none
}

input:focus,
button:focus,
textarea:focus,
label:focus {
    outline: none;
    -webkit-appearance: none
}

input:active,
button:active,
textarea:active,
label:active {
    outline: none;
    -webkit-appearance: none
}

input:hover,
button:hover,
textarea:hover,
label:hover {
    outline: none;
    -webkit-appearance: none
}

input {
    background: #FFFFFF;
    border: 1px solid #DEE4F2;
    height: 30px;
    border-radius: 3px;
    padding: 0px 10px
}

.header {
    padding: 19px 40px 13px 40px;
    background: #fff;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    border-bottom: 1px solid #f2f2f2;
    z-index: 12
}

@media (max-width: 1070px) {
    .header {
        padding: 19px 10px 13px 20px
    }
}

.header__name {
    margin-right: 26px;
    color: #08235C;
    display: inline-block
}

.main-nav {
    width: 240px;
    background: #e9f0ff;
    min-height: calc(100vh - 64px);
    height: auto;
    top: 64px;
    left: 0px;
    font-size: 16px;
    line-height: 19px;
    color: #67779A;
    position: fixed;
    left: 0px;
    z-index: 9
}

@media (max-width: 1070px) {
    .main-nav {
        width: 210px
    }
}

.main-nav ul {
    margin: 0px;
    padding: 0px;
    padding-top: 40px;
    padding-right: 40px
}

@media (max-width: 1070px) {
    .main-nav ul {
        padding-right: 10px;
        padding-top: 20px
    }
}

.main-nav ul li {
    display: block;
    margin-bottom: 5px
}

.main-nav ul li:hover {
    background: #B1CAFF;
    border-radius: 0px 5px 5px 0px
}

.main-nav ul li.active {
    background: #6091F8;
    border-radius: 0px 5px 5px 0px
}

.main-nav ul li.active a {
    color: #fff
}

.main-nav ul li a {
    text-decoration: none;
    height: 63px;
    display: flex;
    align-items: center;
    padding-left: 40px
}

@media (max-width: 1070px) {
    .main-nav ul li a {
        padding-left: 25px
    }
}

.main-nav span {
    width: 30px;
    margin-right: 25px
}

.nav-tasks span {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url("data:image/svg+xml,%3Csvg width='21' height='24' viewBox='0 0 21 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.608076 23.3333C0.28787 23.1549 0.20166 22.8744 0.20166 22.5047C0.207818 15.2512 0.207818 7.99768 0.207818 0.744155C0.207818 0.476451 0.238607 0.234242 0.48492 0.100389C0.589603 0.043024 0.718917 0.00478044 0.835915 0.00478044C6.341 -0.00159348 11.8399 -0.00159348 17.345 0.00478044C17.733 0.00478044 17.9608 0.234242 17.967 0.635799C17.9731 2.03806 17.9731 3.4467 17.967 4.84896C17.967 5.2314 17.7391 5.47998 17.4128 5.47361C17.0926 5.47361 16.8647 5.21227 16.8586 4.83621C16.8524 3.70166 16.8586 2.57347 16.8586 1.43891C16.8586 1.34968 16.8586 1.26044 16.8586 1.15209C11.6737 1.15209 6.50726 1.15209 1.32238 1.15209C1.32238 8.15703 1.32238 15.1556 1.32238 22.1669C6.49495 22.1669 11.6614 22.1669 16.8586 22.1669C16.8586 22.0777 16.8586 21.9884 16.8586 21.8992C16.8586 19.7703 16.8586 17.6478 16.8586 15.5189C16.8586 15.0919 17.0802 14.8305 17.4312 14.8369C17.696 14.8433 17.9239 15.0536 17.9546 15.3277C17.967 15.4233 17.967 15.5253 17.967 15.6209C17.967 17.9219 17.9608 20.2229 17.9731 22.5238C17.9731 22.8872 17.8869 23.1612 17.5605 23.3206C11.9077 23.3333 6.26095 23.3333 0.608076 23.3333Z' fill='%2367779A'/%3E%3Cpath d='M9.27823 18.368C8.87797 18.368 8.61934 18.0748 8.68092 17.6797C8.82871 16.7363 8.97034 15.793 9.1366 14.8497C9.17355 14.6584 9.28439 14.4481 9.41986 14.3079C11.8891 11.7392 14.3646 9.17687 16.84 6.62094C17.191 6.25762 17.4804 6.25762 17.8376 6.62731C18.5642 7.37943 19.2908 8.13155 20.0174 8.88367C20.3869 9.26611 20.3869 9.55931 20.0236 9.93537C17.5543 12.4913 15.085 15.0472 12.6158 17.6096C12.4126 17.8199 12.1786 17.89 11.9138 17.9346C11.0825 18.0685 10.2512 18.2151 9.41986 18.3617C9.35828 18.3617 9.30902 18.368 9.27823 18.368ZM16.7969 11.6946C16.2242 11.1018 15.6947 10.5473 15.1405 9.96724C15.0974 10.0182 15.0481 10.0947 14.9865 10.1585C13.5148 11.6818 12.0431 13.2116 10.5652 14.7285C10.3251 14.9771 10.1711 15.2257 10.1342 15.5827C10.0787 16.0862 9.98638 16.577 9.90633 17.106C10.0049 17.0933 10.0787 17.0869 10.1465 17.0741C10.6391 16.9913 11.1317 16.9148 11.6182 16.8192C11.7537 16.7937 11.9015 16.7236 11.9938 16.6216C13.5517 15.0217 15.0974 13.4155 16.6491 11.8093C16.6984 11.7519 16.7661 11.7137 16.7969 11.6946ZM17.3511 7.78736C16.9078 8.23991 16.4582 8.69883 16.0395 9.13226C16.5568 9.67404 17.0925 10.2222 17.5974 10.7512C18.0285 10.3051 18.4718 9.84613 18.8967 9.40633C18.3856 8.87093 17.8561 8.3164 17.3511 7.78736Z' fill='%2367779A'/%3E%3Cpath d='M4.57994 5.45449C5.2881 4.72149 5.9593 4.01398 6.64897 3.31922C6.76597 3.20449 6.94455 3.11526 7.10465 3.08976C7.32018 3.05789 7.50491 3.179 7.59728 3.39571C7.69581 3.63155 7.67117 3.86101 7.4926 4.05223C7.2155 4.3518 6.92608 4.645 6.63666 4.93821C6.10709 5.48636 5.57751 6.03452 5.04794 6.58268C4.73389 6.90775 4.43216 6.90775 4.11195 6.58268C3.74248 6.20025 3.37301 5.82418 3.0097 5.44175C2.75107 5.16767 2.7326 4.80435 2.96044 4.57489C3.18212 4.3518 3.53311 4.37092 3.78559 4.63226C4.05653 4.88721 4.309 5.16129 4.57994 5.45449Z' fill='%2367779A'/%3E%3Cpath d='M4.57983 12.2555C5.28182 11.5288 5.95302 10.8277 6.63038 10.1329C6.71659 10.0437 6.82128 9.95446 6.93212 9.91622C7.17843 9.82061 7.43706 9.92259 7.56637 10.1393C7.69569 10.356 7.67721 10.6365 7.51095 10.8341C7.46785 10.8851 7.41858 10.9297 7.37548 10.9807C6.59959 11.7838 5.82371 12.5933 5.04167 13.3964C4.74609 13.7023 4.4382 13.7023 4.14263 13.3964C3.76084 13.0076 3.39137 12.6188 3.02191 12.23C2.76328 11.9559 2.7448 11.5926 2.97264 11.3631C3.19432 11.14 3.53916 11.1591 3.79779 11.4205C4.05026 11.6882 4.30273 11.9623 4.57983 12.2555Z' fill='%2367779A'/%3E%3Cpath d='M4.62287 19.0819C4.67829 18.9927 4.71523 18.9098 4.77065 18.8525C5.39875 18.2023 6.02069 17.5522 6.65495 16.902C6.91973 16.628 7.27073 16.6025 7.49241 16.8383C7.72025 17.0741 7.70178 17.4311 7.43083 17.7052C6.63647 18.5274 5.84212 19.3496 5.04776 20.1719C4.72755 20.497 4.43197 20.497 4.11177 20.1719C3.7423 19.7958 3.37283 19.4134 3.00952 19.0309C2.75705 18.7632 2.73242 18.4127 2.9541 18.1768C3.18194 17.9346 3.52677 17.9537 3.79156 18.2278C4.0625 18.4892 4.31498 18.7569 4.62287 19.0819Z' fill='%2367779A'/%3E%3C/svg%3E%0A") no-repeat center
}

.nav-tasks.active span {
    background: url("data:image/svg+xml,%3Csvg width='21' height='24' viewBox='0 0 21 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.608076 23.3333C0.28787 23.1549 0.20166 22.8744 0.20166 22.5047C0.207818 15.2512 0.207818 7.99768 0.207818 0.744155C0.207818 0.476451 0.238607 0.234242 0.48492 0.100389C0.589603 0.043024 0.718917 0.00478044 0.835915 0.00478044C6.341 -0.00159348 11.8399 -0.00159348 17.345 0.00478044C17.733 0.00478044 17.9608 0.234242 17.967 0.635799C17.9731 2.03806 17.9731 3.4467 17.967 4.84896C17.967 5.2314 17.7391 5.47998 17.4128 5.47361C17.0926 5.47361 16.8647 5.21227 16.8586 4.83621C16.8524 3.70166 16.8586 2.57347 16.8586 1.43891C16.8586 1.34968 16.8586 1.26044 16.8586 1.15209C11.6737 1.15209 6.50726 1.15209 1.32238 1.15209C1.32238 8.15703 1.32238 15.1556 1.32238 22.1669C6.49495 22.1669 11.6614 22.1669 16.8586 22.1669C16.8586 22.0777 16.8586 21.9884 16.8586 21.8992C16.8586 19.7703 16.8586 17.6478 16.8586 15.5189C16.8586 15.0919 17.0802 14.8305 17.4312 14.8369C17.696 14.8433 17.9239 15.0536 17.9546 15.3277C17.967 15.4233 17.967 15.5253 17.967 15.6209C17.967 17.9219 17.9608 20.2229 17.9731 22.5238C17.9731 22.8872 17.8869 23.1612 17.5605 23.3206C11.9077 23.3333 6.26095 23.3333 0.608076 23.3333Z' fill='white'/%3E%3Cpath d='M9.27823 18.368C8.87797 18.368 8.61934 18.0748 8.68092 17.6797C8.82871 16.7363 8.97034 15.793 9.1366 14.8497C9.17355 14.6584 9.28439 14.4481 9.41986 14.3079C11.8891 11.7392 14.3646 9.17687 16.84 6.62094C17.191 6.25762 17.4804 6.25762 17.8376 6.62731C18.5642 7.37943 19.2908 8.13155 20.0174 8.88367C20.3869 9.26611 20.3869 9.55931 20.0236 9.93537C17.5543 12.4913 15.085 15.0472 12.6158 17.6096C12.4126 17.8199 12.1786 17.89 11.9138 17.9346C11.0825 18.0685 10.2512 18.2151 9.41986 18.3617C9.35828 18.3617 9.30902 18.368 9.27823 18.368ZM16.7969 11.6946C16.2242 11.1018 15.6947 10.5473 15.1405 9.96724C15.0974 10.0182 15.0481 10.0947 14.9865 10.1585C13.5148 11.6818 12.0431 13.2116 10.5652 14.7285C10.3251 14.9771 10.1711 15.2257 10.1342 15.5827C10.0787 16.0862 9.98638 16.577 9.90633 17.106C10.0049 17.0933 10.0787 17.0869 10.1465 17.0741C10.6391 16.9913 11.1317 16.9148 11.6182 16.8192C11.7537 16.7937 11.9015 16.7236 11.9938 16.6216C13.5517 15.0217 15.0974 13.4155 16.6491 11.8093C16.6984 11.7519 16.7661 11.7137 16.7969 11.6946ZM17.3511 7.78736C16.9078 8.23991 16.4582 8.69883 16.0395 9.13226C16.5568 9.67404 17.0925 10.2222 17.5974 10.7512C18.0285 10.3051 18.4718 9.84613 18.8967 9.40633C18.3856 8.87093 17.8561 8.3164 17.3511 7.78736Z' fill='white'/%3E%3Cpath d='M4.57994 5.45449C5.2881 4.72149 5.9593 4.01398 6.64897 3.31922C6.76597 3.20449 6.94455 3.11526 7.10465 3.08976C7.32018 3.05789 7.50491 3.179 7.59728 3.39571C7.69581 3.63155 7.67117 3.86101 7.4926 4.05223C7.2155 4.3518 6.92608 4.645 6.63666 4.93821C6.10709 5.48636 5.57751 6.03452 5.04794 6.58268C4.73389 6.90775 4.43216 6.90775 4.11195 6.58268C3.74248 6.20025 3.37301 5.82418 3.0097 5.44175C2.75107 5.16767 2.7326 4.80435 2.96044 4.57489C3.18212 4.3518 3.53311 4.37092 3.78559 4.63226C4.05653 4.88721 4.309 5.16129 4.57994 5.45449Z' fill='white'/%3E%3Cpath d='M4.57983 12.2555C5.28182 11.5288 5.95302 10.8277 6.63038 10.1329C6.71659 10.0437 6.82128 9.95446 6.93212 9.91622C7.17843 9.82061 7.43706 9.92259 7.56637 10.1393C7.69569 10.356 7.67721 10.6365 7.51095 10.8341C7.46785 10.8851 7.41858 10.9297 7.37548 10.9807C6.59959 11.7838 5.82371 12.5933 5.04167 13.3964C4.74609 13.7023 4.4382 13.7023 4.14263 13.3964C3.76084 13.0076 3.39137 12.6188 3.02191 12.23C2.76328 11.9559 2.7448 11.5926 2.97264 11.3631C3.19432 11.14 3.53916 11.1591 3.79779 11.4205C4.05026 11.6882 4.30273 11.9623 4.57983 12.2555Z' fill='white'/%3E%3Cpath d='M4.62287 19.0819C4.67829 18.9927 4.71523 18.9098 4.77065 18.8525C5.39875 18.2023 6.02069 17.5522 6.65495 16.902C6.91973 16.628 7.27073 16.6025 7.49241 16.8383C7.72025 17.0741 7.70178 17.4311 7.43083 17.7052C6.63647 18.5274 5.84212 19.3496 5.04776 20.1719C4.72755 20.497 4.43197 20.497 4.11177 20.1719C3.7423 19.7958 3.37283 19.4134 3.00952 19.0309C2.75705 18.7632 2.73242 18.4127 2.9541 18.1768C3.18194 17.9346 3.52677 17.9537 3.79156 18.2278C4.0625 18.4892 4.31498 18.7569 4.62287 19.0819Z' fill='white'/%3E%3C/svg%3E%0A") no-repeat center
}

.nav-pay span {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url("data:image/svg+xml,%3Csvg width='27' height='25' viewBox='0 0 27 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.84044 24.2667C1.9586 21.3152 1.07676 18.3785 0.1875 15.427C1.49174 15.0369 2.79598 14.6468 4.10763 14.2568C4.1521 14.3966 4.19656 14.5291 4.24102 14.6763C4.31513 14.5659 4.38182 14.4628 4.44851 14.3672C5.53785 12.7037 6.62719 11.0403 7.70912 9.36957C8.04259 8.85435 8.4798 8.47898 9.05782 8.27289C9.38388 8.15513 9.72476 8.07417 10.0656 7.97113C11.0661 7.67672 12.0665 7.38231 13.0669 7.0879C13.1113 7.07318 13.1632 7.03638 13.1854 6.99958C13.6819 6.30035 14.171 5.59377 14.6601 4.89455C15.6902 3.42251 16.7202 1.95046 17.7503 0.471054C17.8614 0.31649 17.9652 0.154565 18.0689 0C20.8182 1.89158 23.5601 3.79052 26.3094 5.68209C22.9524 10.503 19.5955 15.3166 16.2386 20.1302C15.4456 19.5708 14.6453 19.0188 13.845 18.4521C13.7635 18.5551 13.6819 18.6508 13.6078 18.7465C12.852 19.6812 11.8812 20.2995 10.7178 20.616C10.0953 20.7853 9.4654 20.903 8.83551 21.0429C8.01295 21.2269 7.1978 21.4035 6.37523 21.5875C6.36041 21.5875 6.353 21.5949 6.33077 21.6023C6.47898 22.0954 6.62719 22.5812 6.78281 23.0669C5.45634 23.4718 4.14469 23.8692 2.84044 24.2667ZM4.55226 15.7067C5.04135 17.3407 5.53044 18.9747 6.01953 20.6013C6.04176 20.6013 6.05658 20.6013 6.0714 20.5939C7.16815 20.351 8.2649 20.1081 9.35424 19.8579C9.79887 19.7548 10.2583 19.6665 10.6881 19.5267C11.5181 19.2617 12.2147 18.7759 12.7631 18.0914C13.6745 16.9506 14.586 15.8098 15.4975 14.6689C15.9125 14.1464 16.3275 13.6238 16.7499 13.1012C16.9055 12.9025 17.0167 12.689 17.0315 12.4314C17.0611 12.0266 16.8833 11.7248 16.572 11.482C16.1496 11.1507 15.4753 11.1581 15.0455 11.6733C14.9862 11.7396 14.9047 11.7837 14.8306 11.8352C14.8083 11.85 14.7787 11.8647 14.7565 11.8794C13.8079 12.6449 12.852 13.4103 11.9034 14.1758C11.859 14.2126 11.8367 14.2126 11.7849 14.1832C11.1105 13.7783 10.4362 13.3735 9.7544 12.9761C9.64325 12.9098 9.53209 12.8436 9.40611 12.7774C10.3324 11.3274 11.2513 9.88478 12.185 8.4201C12.148 8.42746 12.1332 8.43482 12.1183 8.43482C11.2884 8.67771 10.4658 8.92795 9.63584 9.15612C9.16157 9.28861 8.79104 9.54621 8.53909 9.96575C8.42052 10.1645 8.28713 10.3558 8.16116 10.5472C7.10887 12.1591 6.05658 13.771 5.0043 15.3829C4.93019 15.5006 4.84868 15.5963 4.70047 15.6258C4.65601 15.6552 4.61154 15.6846 4.55226 15.7067ZM14.7639 6.55796L14.7713 6.56532C14.8232 6.53588 14.8676 6.50644 14.9195 6.48436C15.8606 5.98386 16.8462 5.94706 17.854 6.21939C18.5729 6.41076 19.2027 6.77877 19.7585 7.27926C20.3736 7.83128 20.8256 8.4937 21.0776 9.2886C21.248 9.84062 21.2925 10.4 21.1813 10.9741C21.1591 11.0698 21.1369 11.1728 21.1146 11.2685C21.122 11.2685 21.122 11.2685 21.1295 11.2759C22.367 9.50205 23.5971 7.72824 24.8347 5.95442C22.656 4.44558 20.4922 2.94409 18.3135 1.4426C17.1352 3.14282 15.9495 4.85039 14.7639 6.55796ZM18.0615 12.4756C18.2394 12.4461 18.4098 12.4314 18.5803 12.3946C19.3287 12.218 19.84 11.7616 20.0994 11.0477C20.3217 10.4221 20.2254 9.81118 19.9512 9.22236C19.5214 8.30233 18.8026 7.67672 17.8689 7.3087C17.15 7.02166 16.409 6.99221 15.6754 7.2719C15.1122 7.49271 14.6898 7.86808 14.4749 8.44218C14.297 8.92059 14.3192 9.40637 14.46 9.89214C14.5267 10.1277 14.6231 10.3485 14.7416 10.5546C16.1793 9.62718 18.1579 10.768 18.0615 12.4756ZM1.47692 16.1336C2.16609 18.4226 2.84786 20.697 3.53703 22.9786C4.18174 22.7799 4.81904 22.5885 5.46375 22.3972C4.77457 20.1008 4.09281 17.8191 3.40364 15.5301C2.75893 15.7288 2.12163 15.9275 1.47692 16.1336ZM14.4675 17.6425C14.9714 17.9958 15.4679 18.3417 15.9718 18.695C17.3279 16.7445 18.6766 14.8088 20.0253 12.8657C19.9957 12.8657 19.9808 12.8804 19.9586 12.8878C19.9364 12.9025 19.9216 12.9172 19.8993 12.9319C19.3065 13.322 18.647 13.4913 17.943 13.4987C17.8096 13.4987 17.7132 13.5134 17.654 13.6459C17.6391 13.6753 17.6095 13.6974 17.5873 13.7268C16.7276 14.8014 15.868 15.876 15.0084 16.9506C14.8306 17.1861 14.6527 17.4069 14.4675 17.6425ZM13.3633 8.52314C12.5333 9.8259 11.7034 11.1287 10.866 12.4314C11.1698 12.6154 11.4662 12.7921 11.7626 12.9687C12.4815 12.3873 13.1854 11.8132 13.9043 11.2317C13.4152 10.3853 13.1929 9.49469 13.3633 8.52314Z' fill='%2367779A'/%3E%3C/svg%3E%0A") no-repeat center
}

.nav-pay.active span {
    background: url("data:image/svg+xml,%3Csvg width='27' height='25' viewBox='0 0 27 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.84044 24.2667C1.9586 21.3152 1.07676 18.3785 0.1875 15.427C1.49174 15.0369 2.79598 14.6468 4.10763 14.2568C4.1521 14.3966 4.19656 14.5291 4.24102 14.6763C4.31513 14.5659 4.38182 14.4628 4.44851 14.3672C5.53785 12.7037 6.62719 11.0403 7.70912 9.36957C8.04259 8.85435 8.4798 8.47898 9.05782 8.27289C9.38388 8.15513 9.72476 8.07417 10.0656 7.97113C11.0661 7.67672 12.0665 7.38231 13.0669 7.0879C13.1113 7.07318 13.1632 7.03638 13.1854 6.99958C13.6819 6.30035 14.171 5.59377 14.6601 4.89455C15.6902 3.42251 16.7202 1.95046 17.7503 0.471054C17.8614 0.31649 17.9652 0.154565 18.0689 0C20.8182 1.89158 23.5601 3.79052 26.3094 5.68209C22.9524 10.503 19.5955 15.3166 16.2386 20.1302C15.4456 19.5708 14.6453 19.0188 13.845 18.4521C13.7635 18.5551 13.6819 18.6508 13.6078 18.7465C12.852 19.6812 11.8812 20.2995 10.7178 20.616C10.0953 20.7853 9.4654 20.903 8.83551 21.0429C8.01295 21.2269 7.1978 21.4035 6.37523 21.5875C6.36041 21.5875 6.353 21.5949 6.33077 21.6023C6.47898 22.0954 6.62719 22.5812 6.78281 23.0669C5.45634 23.4718 4.14469 23.8692 2.84044 24.2667ZM4.55226 15.7067C5.04135 17.3407 5.53044 18.9747 6.01953 20.6013C6.04176 20.6013 6.05658 20.6013 6.0714 20.5939C7.16815 20.351 8.2649 20.1081 9.35424 19.8579C9.79887 19.7548 10.2583 19.6665 10.6881 19.5267C11.5181 19.2617 12.2147 18.7759 12.7631 18.0914C13.6745 16.9506 14.586 15.8098 15.4975 14.6689C15.9125 14.1464 16.3275 13.6238 16.7499 13.1012C16.9055 12.9025 17.0167 12.689 17.0315 12.4314C17.0611 12.0266 16.8833 11.7248 16.572 11.482C16.1496 11.1507 15.4753 11.1581 15.0455 11.6733C14.9862 11.7396 14.9047 11.7837 14.8306 11.8352C14.8083 11.85 14.7787 11.8647 14.7565 11.8794C13.8079 12.6449 12.852 13.4103 11.9034 14.1758C11.859 14.2126 11.8367 14.2126 11.7849 14.1832C11.1105 13.7783 10.4362 13.3735 9.7544 12.9761C9.64325 12.9098 9.53209 12.8436 9.40611 12.7774C10.3324 11.3274 11.2513 9.88478 12.185 8.4201C12.148 8.42746 12.1332 8.43482 12.1183 8.43482C11.2884 8.67771 10.4658 8.92795 9.63584 9.15612C9.16157 9.28861 8.79104 9.54621 8.53909 9.96575C8.42052 10.1645 8.28713 10.3558 8.16116 10.5472C7.10887 12.1591 6.05658 13.771 5.0043 15.3829C4.93019 15.5006 4.84868 15.5963 4.70047 15.6258C4.65601 15.6552 4.61154 15.6846 4.55226 15.7067ZM14.7639 6.55796L14.7713 6.56532C14.8232 6.53588 14.8676 6.50644 14.9195 6.48436C15.8606 5.98386 16.8462 5.94706 17.854 6.21939C18.5729 6.41076 19.2027 6.77877 19.7585 7.27926C20.3736 7.83128 20.8256 8.4937 21.0776 9.2886C21.248 9.84062 21.2925 10.4 21.1813 10.9741C21.1591 11.0698 21.1369 11.1728 21.1146 11.2685C21.122 11.2685 21.122 11.2685 21.1295 11.2759C22.367 9.50205 23.5971 7.72824 24.8347 5.95442C22.656 4.44558 20.4922 2.94409 18.3135 1.4426C17.1352 3.14282 15.9495 4.85039 14.7639 6.55796ZM18.0615 12.4756C18.2394 12.4461 18.4098 12.4314 18.5803 12.3946C19.3287 12.218 19.84 11.7616 20.0994 11.0477C20.3217 10.4221 20.2254 9.81118 19.9512 9.22236C19.5214 8.30233 18.8026 7.67672 17.8689 7.3087C17.15 7.02166 16.409 6.99221 15.6754 7.2719C15.1122 7.49271 14.6898 7.86808 14.4749 8.44218C14.297 8.92059 14.3192 9.40637 14.46 9.89214C14.5267 10.1277 14.6231 10.3485 14.7416 10.5546C16.1793 9.62718 18.1579 10.768 18.0615 12.4756ZM1.47692 16.1336C2.16609 18.4226 2.84786 20.697 3.53703 22.9786C4.18174 22.7799 4.81904 22.5885 5.46375 22.3972C4.77457 20.1008 4.09281 17.8191 3.40364 15.5301C2.75893 15.7288 2.12163 15.9275 1.47692 16.1336ZM14.4675 17.6425C14.9714 17.9958 15.4679 18.3417 15.9718 18.695C17.3279 16.7445 18.6766 14.8088 20.0253 12.8657C19.9957 12.8657 19.9808 12.8804 19.9586 12.8878C19.9364 12.9025 19.9216 12.9172 19.8993 12.9319C19.3065 13.322 18.647 13.4913 17.943 13.4987C17.8096 13.4987 17.7132 13.5134 17.654 13.6459C17.6391 13.6753 17.6095 13.6974 17.5873 13.7268C16.7276 14.8014 15.868 15.876 15.0084 16.9506C14.8306 17.1861 14.6527 17.4069 14.4675 17.6425ZM13.3633 8.52314C12.5333 9.8259 11.7034 11.1287 10.866 12.4314C11.1698 12.6154 11.4662 12.7921 11.7626 12.9687C12.4815 12.3873 13.1854 11.8132 13.9043 11.2317C13.4152 10.3853 13.1929 9.49469 13.3633 8.52314Z' fill='white'/%3E%3C/svg%3E%0A") no-repeat center
}

.nav-acts span {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url("data:image/svg+xml,%3Csvg width='21' height='28' viewBox='0 0 21 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.716085 27.9921C0.295192 27.8496 0.20166 27.525 0.20166 27.1134C0.209454 21.6986 0.20166 16.2918 0.20166 10.877C0.20166 7.56008 0.20166 4.24314 0.20166 0.926209C0.20166 0.799548 0.209455 0.672887 0.225043 0.546226C0.264015 0.261238 0.427695 0.0870794 0.700497 0.0237489C0.794028 -6.13404e-08 0.895354 0 0.99668 0C7.16199 0 13.3195 0 19.4848 0C19.6095 0 19.7342 0.00791619 19.8589 0.0474978C20.085 0.118745 20.2253 0.277071 20.2642 0.51456C20.2876 0.657054 20.2876 0.807464 20.2876 0.949958C20.2876 8.17755 20.2876 15.3972 20.2954 22.6248C20.2954 23.0206 20.1863 23.3135 19.9057 23.5906C18.5651 24.9285 17.24 26.2901 15.8994 27.6438C15.7669 27.7783 15.611 27.8813 15.4629 28C10.5447 27.9921 5.6265 27.9921 0.716085 27.9921ZM1.46434 1.27453C1.46434 9.76081 1.46434 18.2313 1.46434 26.7096C5.86813 26.7096 10.2563 26.7096 14.6601 26.7096C14.6601 26.5909 14.6601 26.488 14.6601 26.3851C14.6601 25.2926 14.6601 24.2002 14.6601 23.1077C14.6601 22.5298 14.8862 22.3003 15.4629 22.3003C16.5463 22.3003 17.6375 22.3003 18.721 22.3003C18.8145 22.3003 18.908 22.3003 19.0093 22.3003C19.0093 15.2706 19.0093 8.28046 19.0093 1.28244C13.1558 1.27453 7.31787 1.27453 1.46434 1.27453ZM15.9384 23.5748C15.9384 24.3189 15.9384 25.0393 15.9384 25.6884C16.6243 24.9918 17.3336 24.2714 18.0195 23.5748C17.3647 23.5748 16.6633 23.5748 15.9384 23.5748Z' fill='%2367779A'/%3E%3Cpath d='M12.4467 6.71302C13.5768 6.71302 14.707 6.7051 15.8372 6.71302C16.3516 6.71302 16.6712 7.14842 16.4763 7.58381C16.3516 7.87671 16.0944 7.97171 15.7982 7.97171C14.9798 7.97171 14.1692 7.97171 13.3508 7.97171C11.9244 7.97171 10.4981 7.97171 9.07172 7.97171C8.77553 7.97171 8.51832 7.90046 8.37802 7.60756C8.17537 7.188 8.46376 6.72885 8.9548 6.71302C9.48482 6.69719 10.0148 6.7051 10.5448 6.7051C11.1762 6.71302 11.8153 6.71302 12.4467 6.71302Z' fill='%2367779A'/%3E%3Cpath d='M12.4151 12.4128C11.2849 12.4128 10.1547 12.4128 9.02453 12.4128C8.5101 12.4128 8.18274 12.017 8.36201 11.5816C8.43216 11.4153 8.62702 11.2887 8.7907 11.1778C8.86864 11.1224 9.00115 11.1462 9.11027 11.1462C11.3161 11.1462 13.5219 11.1462 15.7276 11.1462C15.8524 11.1462 15.9771 11.1541 16.1018 11.1858C16.359 11.257 16.5382 11.5182 16.5382 11.7795C16.5382 12.0407 16.359 12.294 16.094 12.3653C15.9771 12.3969 15.8446 12.4048 15.7198 12.4048C14.6208 12.4128 13.5141 12.4128 12.4151 12.4128Z' fill='%2367779A'/%3E%3Cpath d='M12.4232 16.8459C11.293 16.8459 10.1629 16.8459 9.03268 16.8459C8.51046 16.8459 8.21428 16.4739 8.35457 16.0226C8.44031 15.7535 8.66635 15.5952 9.0015 15.5873C9.43019 15.5793 9.85888 15.5873 10.2954 15.5873C12.127 15.5873 13.9509 15.5873 15.7826 15.5873C16.0943 15.5873 16.3516 15.6664 16.4919 15.9751C16.6711 16.3947 16.3827 16.8301 15.8995 16.8459C15.463 16.8618 15.0187 16.8538 14.5822 16.8538C13.8574 16.8459 13.1403 16.8459 12.4232 16.8459Z' fill='%2367779A'/%3E%3Cpath d='M4.96381 12.1832C5.47823 11.5103 5.97707 10.8533 6.4837 10.2042C6.74092 9.87167 6.99813 9.77667 7.29431 9.89541C7.62168 10.03 7.76977 10.4021 7.62168 10.7345C7.59829 10.79 7.56712 10.8533 7.52814 10.9008C6.88121 11.7478 6.23428 12.6028 5.57956 13.4419C5.32235 13.7744 4.98719 13.8061 4.65203 13.5448C4.29349 13.2678 3.94275 12.9907 3.5998 12.6978C3.29582 12.4366 3.24905 12.0566 3.47509 11.7795C3.69333 11.5103 4.04408 11.4787 4.36364 11.7083C4.5585 11.8507 4.74557 12.0091 4.96381 12.1832Z' fill='%2367779A'/%3E%3Cpath d='M4.96408 16.6164C5.46291 15.9672 5.94616 15.3339 6.42941 14.7006C6.77236 14.2494 7.1309 14.1544 7.45047 14.4157C7.75444 14.669 7.74665 15.049 7.41929 15.4764C6.83472 16.2364 6.25014 17.0043 5.66557 17.7642C5.30703 18.2234 5.00305 18.263 4.55098 17.8988C4.247 17.6534 3.94302 17.4159 3.64684 17.1705C3.30389 16.8855 3.24153 16.5056 3.47536 16.2127C3.7014 15.9277 4.06773 15.9039 4.41068 16.1731C4.58216 16.3076 4.75363 16.4581 4.96408 16.6164Z' fill='%2367779A'/%3E%3Cpath d='M4.96379 7.75C5.25997 7.3621 5.54836 6.99003 5.82896 6.61796C6.06279 6.31714 6.28882 6.0084 6.52265 5.7155C6.79545 5.38302 7.15399 5.31968 7.44238 5.54926C7.72297 5.77092 7.75415 6.15882 7.49694 6.49922C6.8656 7.33043 6.23426 8.16164 5.59513 8.97703C5.32233 9.33326 4.97938 9.37284 4.62864 9.10369C4.28569 8.84245 3.95053 8.56538 3.61538 8.28831C3.28802 8.01123 3.22566 7.63917 3.4517 7.35418C3.67773 7.06128 4.03627 7.03753 4.38701 7.29877C4.58187 7.44126 4.76114 7.59167 4.96379 7.75Z' fill='%2367779A'/%3E%3C/svg%3E%0A") no-repeat center
}

.nav-acts.active span {
    background: url("data:image/svg+xml,%3Csvg width='21' height='28' viewBox='0 0 21 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.716085 27.9921C0.295192 27.8496 0.20166 27.525 0.20166 27.1134C0.209454 21.6986 0.20166 16.2918 0.20166 10.877C0.20166 7.56008 0.20166 4.24314 0.20166 0.926209C0.20166 0.799548 0.209455 0.672887 0.225043 0.546226C0.264015 0.261238 0.427695 0.0870794 0.700497 0.0237489C0.794028 -6.13404e-08 0.895354 0 0.99668 0C7.16199 0 13.3195 0 19.4848 0C19.6095 0 19.7342 0.00791619 19.8589 0.0474978C20.085 0.118745 20.2253 0.277071 20.2642 0.51456C20.2876 0.657054 20.2876 0.807464 20.2876 0.949958C20.2876 8.17755 20.2876 15.3972 20.2954 22.6248C20.2954 23.0206 20.1863 23.3135 19.9057 23.5906C18.5651 24.9285 17.24 26.2901 15.8994 27.6438C15.7669 27.7783 15.611 27.8813 15.4629 28C10.5447 27.9921 5.6265 27.9921 0.716085 27.9921ZM1.46434 1.27453C1.46434 9.76081 1.46434 18.2313 1.46434 26.7096C5.86813 26.7096 10.2563 26.7096 14.6601 26.7096C14.6601 26.5909 14.6601 26.488 14.6601 26.3851C14.6601 25.2926 14.6601 24.2002 14.6601 23.1077C14.6601 22.5298 14.8862 22.3003 15.4629 22.3003C16.5463 22.3003 17.6375 22.3003 18.721 22.3003C18.8145 22.3003 18.908 22.3003 19.0093 22.3003C19.0093 15.2706 19.0093 8.28046 19.0093 1.28244C13.1558 1.27453 7.31787 1.27453 1.46434 1.27453ZM15.9384 23.5748C15.9384 24.3189 15.9384 25.0393 15.9384 25.6884C16.6243 24.9918 17.3336 24.2714 18.0195 23.5748C17.3647 23.5748 16.6633 23.5748 15.9384 23.5748Z' fill='white'/%3E%3Cpath d='M12.4467 6.71302C13.5768 6.71302 14.707 6.7051 15.8372 6.71302C16.3516 6.71302 16.6712 7.14842 16.4763 7.58381C16.3516 7.87671 16.0944 7.97171 15.7982 7.97171C14.9798 7.97171 14.1692 7.97171 13.3508 7.97171C11.9244 7.97171 10.4981 7.97171 9.07172 7.97171C8.77553 7.97171 8.51832 7.90046 8.37802 7.60756C8.17537 7.188 8.46376 6.72885 8.9548 6.71302C9.48482 6.69719 10.0148 6.7051 10.5448 6.7051C11.1762 6.71302 11.8153 6.71302 12.4467 6.71302Z' fill='white'/%3E%3Cpath d='M12.4151 12.4128C11.2849 12.4128 10.1547 12.4128 9.02453 12.4128C8.5101 12.4128 8.18274 12.017 8.36201 11.5816C8.43216 11.4153 8.62702 11.2887 8.7907 11.1778C8.86864 11.1224 9.00115 11.1462 9.11027 11.1462C11.3161 11.1462 13.5219 11.1462 15.7276 11.1462C15.8524 11.1462 15.9771 11.1541 16.1018 11.1858C16.359 11.257 16.5382 11.5182 16.5382 11.7795C16.5382 12.0407 16.359 12.294 16.094 12.3653C15.9771 12.3969 15.8446 12.4048 15.7198 12.4048C14.6208 12.4128 13.5141 12.4128 12.4151 12.4128Z' fill='white'/%3E%3Cpath d='M12.4232 16.8459C11.293 16.8459 10.1629 16.8459 9.03268 16.8459C8.51046 16.8459 8.21428 16.4739 8.35457 16.0226C8.44031 15.7535 8.66635 15.5952 9.0015 15.5873C9.43019 15.5793 9.85888 15.5873 10.2954 15.5873C12.127 15.5873 13.9509 15.5873 15.7826 15.5873C16.0943 15.5873 16.3516 15.6664 16.4919 15.9751C16.6711 16.3947 16.3827 16.8301 15.8995 16.8459C15.463 16.8618 15.0187 16.8538 14.5822 16.8538C13.8574 16.8459 13.1403 16.8459 12.4232 16.8459Z' fill='white'/%3E%3Cpath d='M4.96381 12.1832C5.47823 11.5103 5.97707 10.8533 6.4837 10.2042C6.74092 9.87167 6.99813 9.77667 7.29431 9.89541C7.62168 10.03 7.76977 10.4021 7.62168 10.7345C7.59829 10.79 7.56712 10.8533 7.52814 10.9008C6.88121 11.7478 6.23428 12.6028 5.57956 13.4419C5.32235 13.7744 4.98719 13.8061 4.65203 13.5448C4.29349 13.2678 3.94275 12.9907 3.5998 12.6978C3.29582 12.4366 3.24905 12.0566 3.47509 11.7795C3.69333 11.5103 4.04408 11.4787 4.36364 11.7083C4.5585 11.8507 4.74557 12.0091 4.96381 12.1832Z' fill='white'/%3E%3Cpath d='M4.96408 16.6164C5.46291 15.9672 5.94616 15.3339 6.42941 14.7006C6.77236 14.2494 7.1309 14.1544 7.45047 14.4157C7.75444 14.669 7.74665 15.049 7.41929 15.4764C6.83472 16.2364 6.25014 17.0043 5.66557 17.7642C5.30703 18.2234 5.00305 18.263 4.55098 17.8988C4.247 17.6534 3.94302 17.4159 3.64684 17.1705C3.30389 16.8855 3.24153 16.5056 3.47536 16.2127C3.7014 15.9277 4.06773 15.9039 4.41068 16.1731C4.58216 16.3076 4.75363 16.4581 4.96408 16.6164Z' fill='white'/%3E%3Cpath d='M4.96379 7.75C5.25997 7.3621 5.54836 6.99003 5.82896 6.61796C6.06279 6.31714 6.28882 6.0084 6.52265 5.7155C6.79545 5.38302 7.15399 5.31968 7.44238 5.54926C7.72297 5.77092 7.75415 6.15882 7.49694 6.49922C6.8656 7.33043 6.23426 8.16164 5.59513 8.97703C5.32233 9.33326 4.97938 9.37284 4.62864 9.10369C4.28569 8.84245 3.95053 8.56538 3.61538 8.28831C3.28802 8.01123 3.22566 7.63917 3.4517 7.35418C3.67773 7.06128 4.03627 7.03753 4.38701 7.29877C4.58187 7.44126 4.76114 7.59167 4.96379 7.75Z' fill='white'/%3E%3C/svg%3E%0A") no-repeat center
}

.nav-klients span {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url("data:image/svg+xml,%3Csvg width='27' height='23' viewBox='0 0 27 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.8118 0.0160736C18.8892 0.0723308 18.9821 0.112514 19.0441 0.184845C19.942 1.29392 20.8399 2.40299 21.7224 3.5201C23.1931 5.38462 24.6484 7.25718 26.1114 9.12975C26.3823 9.48336 26.3901 9.59588 26.0417 9.86913C25.3296 10.4317 24.6019 10.9702 23.8821 11.5167C23.7582 11.6131 23.6189 11.581 23.5105 11.4845C23.3944 11.38 23.286 11.2675 23.1776 11.147C23.0848 11.0425 22.9996 10.93 22.9067 10.8014C22.8525 10.9139 22.7983 11.0103 22.7519 11.0988C22.4268 11.7095 22.0088 12.2319 21.3973 12.5614C21.2889 12.6177 21.1728 12.6659 21.0567 12.7061C20.9328 12.7543 20.8554 12.8267 20.8012 12.9472C20.6077 13.3812 20.2903 13.6785 19.8723 13.8714C19.8336 13.8875 19.7949 13.9116 19.7485 13.9277C19.6556 13.9759 19.6246 14.0322 19.6633 14.1447C19.9342 15.0287 19.4698 16.0172 18.6415 16.3548C18.4248 16.4432 18.4403 16.4432 18.4558 16.6763C18.4712 16.9897 18.4867 17.3031 18.4558 17.6166C18.4093 18.0345 18.1539 18.3399 17.8442 18.581C17.7049 18.6935 17.5346 18.7819 17.3798 18.8703C17.2714 18.9265 17.2172 18.9908 17.2405 19.1355C17.2946 19.4891 17.3256 19.8427 17.2327 20.1964C17.0469 20.9116 16.3503 21.442 15.6304 21.442C15.2511 21.442 14.9027 21.3376 14.5699 21.1688C14.059 20.9116 13.5404 20.6544 13.0217 20.3973C13.014 20.3973 13.0062 20.3892 12.983 20.3892C12.9443 20.4535 12.9056 20.5178 12.8669 20.5821C12.6657 20.9116 12.4644 21.2411 12.2476 21.5706C11.9535 22.0207 11.5355 22.1895 11.0323 22.0689C10.1112 21.8519 9.3913 21.3456 8.98878 20.4375C8.89589 20.2205 8.78752 20.1642 8.57852 20.124C7.58769 19.9231 6.79039 19.4329 6.47302 18.3559C6.42658 18.1872 6.32594 18.1389 6.17887 18.1148C5.53638 18.0104 5.01775 17.6808 4.58427 17.1826C4.21271 16.7566 4.18175 16.2503 4.42171 15.7681C4.5533 15.4868 4.53782 15.318 4.3443 15.085C4.03467 14.7153 3.82567 14.2813 3.64763 13.8312C3.62441 13.775 3.60119 13.7187 3.56248 13.6303C3.52378 13.6866 3.5083 13.7268 3.48508 13.7589C3.43089 13.8473 3.39219 13.9438 3.33026 14.0161C3.129 14.2572 3.02837 14.2733 2.80389 14.1527C2.05303 13.7589 1.30217 13.3732 0.559058 12.9794C0.404242 12.899 0.257167 12.8025 0.1875 12.6257C0.1875 12.5695 0.1875 12.5132 0.1875 12.457C0.264908 12.3123 0.334575 12.1596 0.411983 12.0149C1.72018 9.65214 3.02837 7.28933 4.33656 4.93456C4.83971 4.02641 5.35835 3.11826 5.86924 2.21011C5.96987 2.0333 6.05502 1.99311 6.24854 2.04133C6.38013 2.07348 6.51172 2.1217 6.63558 2.186C7.23162 2.49139 7.81992 2.79679 8.40822 3.11022C8.55529 3.19059 8.69463 3.27899 8.82622 3.37544C9.012 3.51206 9.04296 3.68887 8.94233 3.89782C8.89589 3.98623 8.85718 4.08267 8.81074 4.17107C8.75655 4.28359 8.77203 4.35592 8.88815 4.42021C9.67771 4.87831 10.4595 5.3364 11.2413 5.80253C11.5123 5.96327 11.7832 6.11597 12.0541 6.2767C13.5868 5.11137 15.1272 3.98623 16.6444 2.79679C16.5747 2.69231 16.5128 2.61194 16.4586 2.52354C16.4045 2.43513 16.3348 2.33869 16.2961 2.24225C16.2032 2.02526 16.2419 1.88864 16.4199 1.74397C16.6522 1.55109 16.8921 1.36625 17.1321 1.18944C17.6662 0.787601 18.2003 0.393801 18.7344 0C18.7422 0.0160735 18.7809 0.0160736 18.8118 0.0160736ZM11.28 6.85535C10.2737 6.26063 9.29067 5.68198 8.30759 5.10334C8.2534 5.19174 8.20696 5.25603 8.16825 5.32837C6.86006 7.6751 5.55187 10.0218 4.24367 12.3766C4.22045 12.4168 4.20497 12.473 4.20497 12.5132C4.24367 13.2285 4.50686 13.8634 4.88616 14.4501C4.91712 14.4983 4.95583 14.5304 4.98679 14.5706C5.01001 14.5546 5.02549 14.5546 5.03323 14.5465C5.05646 14.5144 5.08742 14.4822 5.1029 14.4501C5.35835 14.0402 5.7299 13.8634 6.17887 13.8393C6.70524 13.8152 7.16195 14.0161 7.56447 14.3617C7.71155 14.4822 7.8354 14.6349 7.97473 14.7555C8.03666 14.8117 8.14503 14.8519 8.22244 14.8439C8.95007 14.7474 9.64674 14.8278 10.2892 15.2377C10.6917 15.4949 10.9936 15.8485 11.133 16.3066C11.1949 16.5075 11.2878 16.5557 11.4581 16.5879C12.1935 16.7245 12.8127 17.0861 13.3391 17.6407C13.8577 18.1872 13.8577 18.9908 13.5249 19.4811C13.4939 19.5293 13.4707 19.5856 13.4397 19.6338C13.4707 19.6579 13.4939 19.674 13.5171 19.69C14.0203 19.9472 14.5312 20.2044 15.0421 20.4535C15.2124 20.5339 15.3904 20.5902 15.5762 20.6143C15.9245 20.6544 16.2651 20.4053 16.4045 20.0437C16.5515 19.6659 16.4741 19.2239 16.1954 18.9908C16.0484 18.8623 15.8703 18.7578 15.7078 18.6533C15.313 18.4122 14.9182 18.1791 14.5312 17.922C14.4538 17.8737 14.3841 17.7693 14.3609 17.6728C14.3067 17.3835 14.6086 17.0942 14.8873 17.2469C15.2356 17.4317 15.5917 17.6166 15.9477 17.8014C16.1567 17.9059 16.3735 18.0184 16.5902 18.0907C16.9773 18.2193 17.372 18.0264 17.5733 17.6326C17.7823 17.2308 17.7126 16.7647 17.3953 16.4994C17.2637 16.3869 17.1166 16.2905 16.9618 16.2021C16.4045 15.8967 15.8394 15.5993 15.282 15.2939C14.9027 15.085 14.5312 14.876 14.1596 14.659C13.9661 14.5385 13.9274 14.3295 14.0435 14.1366C14.1596 13.9357 14.3299 13.8714 14.5389 13.9759C15.1969 14.3054 15.8471 14.643 16.4973 14.9725C16.9076 15.1814 17.3179 15.3904 17.7359 15.5833C17.8365 15.6315 17.9604 15.6476 18.0687 15.6315C18.5099 15.5752 18.7654 15.2939 18.8815 14.868C18.9744 14.5304 18.7809 14.0322 18.4712 13.8634C17.9216 13.566 17.372 13.2767 16.8302 12.9794C16.3503 12.7222 15.8781 12.465 15.3981 12.2078C15.282 12.1435 15.2046 12.0471 15.1891 11.9024C15.1659 11.5729 15.4369 11.3559 15.731 11.4926C16.2961 11.7658 16.8612 12.0551 17.4262 12.3364C17.9216 12.5856 18.4171 12.8427 18.9202 13.0678C19.2608 13.2205 19.5782 13.132 19.8414 12.8668C20.1045 12.5936 20.1897 12.2641 20.0813 11.8864C19.9962 11.581 19.764 11.4202 19.5008 11.2997C17.8752 10.5764 16.2496 9.85306 14.6163 9.12171C14.5312 9.08153 14.477 9.0976 14.4073 9.14582C13.9197 9.48337 13.4397 9.81287 12.9443 10.1424C12.4799 10.4558 12.0232 10.7612 11.5432 11.0505C11.3652 11.155 11.1562 11.2354 10.9549 11.2514C10.1963 11.3238 9.43 10.8416 9.17456 10.1343C8.92685 9.45122 8.98878 8.62343 9.70093 8.03675C9.99508 7.79565 10.3047 7.56258 10.6066 7.32148C10.8311 7.19289 11.0401 7.04019 11.28 6.85535ZM20.9793 11.8462C21.0102 11.8301 21.0257 11.8221 21.0412 11.814C21.6527 11.4363 22.001 10.8496 22.241 10.1745C22.2565 10.1263 22.2333 10.054 22.21 10.0138C22.1017 9.84502 21.9856 9.66821 21.8617 9.50747C20.3755 7.60277 18.8815 5.69806 17.3953 3.79335C17.3256 3.70494 17.2482 3.61654 17.1708 3.52813C17.0934 3.58439 17.0392 3.62457 16.9773 3.66476C15.2588 4.95064 13.5404 6.23652 11.8219 7.53043C11.2723 7.94031 10.7537 8.38233 10.2118 8.80828C9.94863 9.01723 9.85574 9.28245 9.90219 9.61999C9.94863 9.94146 10.2196 10.3192 10.506 10.3594C10.8388 10.4076 11.1794 10.4638 11.4581 10.1826C11.5123 10.1263 11.5819 10.0942 11.6439 10.0459C12.5031 9.45925 13.3623 8.88061 14.2138 8.28589C14.3609 8.18141 14.5002 8.16534 14.6705 8.23767C15.4369 8.57521 16.2187 8.88865 16.985 9.22619C17.9526 9.65214 18.9125 10.0942 19.8801 10.5281C20.329 10.7291 20.6541 11.0586 20.8399 11.5327C20.8786 11.6533 20.9328 11.7417 20.9793 11.8462ZM25.2831 9.41907C23.0847 6.61424 20.9096 3.83353 18.7189 1.0287C18.2158 1.4225 17.7359 1.80023 17.2637 2.16992C17.4959 2.57176 23.6343 10.3835 23.8279 10.5281C24.3001 10.1665 24.78 9.80483 25.2831 9.41907ZM6.35691 3.01378C4.62297 6.13204 2.89678 9.23422 1.16284 12.3444C1.21702 12.3766 1.25573 12.4087 1.29443 12.4248C1.72792 12.6579 2.16914 12.899 2.61037 13.132C2.7884 13.2285 2.79615 13.2205 2.89678 13.0436C4.56105 10.054 6.21757 7.07234 7.88184 4.08267C7.91281 4.02641 7.94377 3.96212 7.98247 3.87371C7.43288 3.59243 6.9065 3.3031 6.35691 3.01378ZM11.3188 21.2894C11.4968 21.2652 11.5665 21.1286 11.6361 21.0081C12.0386 20.341 12.4334 19.6659 12.8282 18.9908C13.014 18.6774 12.9908 18.5086 12.7508 18.2273C12.6966 18.1631 12.6424 18.1068 12.5805 18.0505C12.2244 17.7371 11.8064 17.5523 11.3652 17.4237C11.2026 17.3755 11.0788 17.4237 10.9704 17.5523C10.9162 17.6166 10.8698 17.6809 10.8233 17.7532C10.4363 18.4122 10.0493 19.0632 9.66997 19.7222C9.64674 19.7704 9.639 19.8427 9.65448 19.899C9.8093 20.4535 10.1963 20.7991 10.6685 21.0483C10.8775 21.1608 11.102 21.217 11.3188 21.2894ZM8.84944 15.6315C8.48563 15.6074 8.35403 15.6797 8.27662 15.8645C8.17599 16.1056 8.0831 16.3468 7.96699 16.5798C7.77347 16.9656 7.55673 17.3433 7.37095 17.7371C7.21614 18.0586 7.27806 18.4363 7.53351 18.6774C7.85088 18.9828 8.23018 19.1837 8.65592 19.2802C8.81074 19.3123 8.94233 19.2721 9.03522 19.1194C9.38356 18.5327 9.73963 17.9541 10.0802 17.3674C10.1809 17.1986 10.266 17.0218 10.3512 16.845C10.3744 16.7888 10.3976 16.7084 10.3744 16.6521C10.2892 16.3789 10.1499 16.1378 9.90219 15.9851C9.54611 15.7601 9.15907 15.6476 8.84944 15.6315ZM6.26402 14.6912C6.06276 14.6831 5.90794 14.7474 5.80731 14.9403C5.62927 15.2618 5.45124 15.5752 5.2732 15.8967C5.21127 16.0172 5.16483 16.1458 5.11838 16.2825C5.07194 16.4191 5.1029 16.5477 5.19579 16.6602C5.5209 17.0299 5.93117 17.2308 6.40335 17.3031C6.53495 17.3192 6.63558 17.271 6.70524 17.1504C6.92973 16.7325 7.14647 16.3146 7.37095 15.8887C7.4561 15.7199 7.44062 15.5591 7.35547 15.3984C7.11551 14.9644 6.74395 14.7314 6.26402 14.6912Z' fill='%2367779A'/%3E%3C/svg%3E%0A") no-repeat center
}

.nav-klients.active span {
    background: url("data:image/svg+xml,%3Csvg width='27' height='23' viewBox='0 0 27 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.8118 0.0160736C18.8892 0.0723308 18.9821 0.112514 19.0441 0.184845C19.942 1.29392 20.8399 2.40299 21.7224 3.5201C23.1931 5.38462 24.6484 7.25718 26.1114 9.12975C26.3823 9.48336 26.3901 9.59588 26.0417 9.86913C25.3296 10.4317 24.6019 10.9702 23.8821 11.5167C23.7582 11.6131 23.6189 11.581 23.5105 11.4845C23.3944 11.38 23.286 11.2675 23.1776 11.147C23.0848 11.0425 22.9996 10.93 22.9067 10.8014C22.8525 10.9139 22.7983 11.0103 22.7519 11.0988C22.4268 11.7095 22.0088 12.2319 21.3973 12.5614C21.2889 12.6177 21.1728 12.6659 21.0567 12.7061C20.9328 12.7543 20.8554 12.8267 20.8012 12.9472C20.6077 13.3812 20.2903 13.6785 19.8723 13.8714C19.8336 13.8875 19.7949 13.9116 19.7485 13.9277C19.6556 13.9759 19.6246 14.0322 19.6633 14.1447C19.9342 15.0287 19.4698 16.0172 18.6415 16.3548C18.4248 16.4432 18.4403 16.4432 18.4558 16.6763C18.4712 16.9897 18.4867 17.3031 18.4558 17.6166C18.4093 18.0345 18.1539 18.3399 17.8442 18.581C17.7049 18.6935 17.5346 18.7819 17.3798 18.8703C17.2714 18.9265 17.2172 18.9908 17.2405 19.1355C17.2946 19.4891 17.3256 19.8427 17.2327 20.1964C17.0469 20.9116 16.3503 21.442 15.6304 21.442C15.2511 21.442 14.9027 21.3376 14.5699 21.1688C14.059 20.9116 13.5404 20.6544 13.0217 20.3973C13.014 20.3973 13.0062 20.3892 12.983 20.3892C12.9443 20.4535 12.9056 20.5178 12.8669 20.5821C12.6657 20.9116 12.4644 21.2411 12.2476 21.5706C11.9535 22.0207 11.5355 22.1895 11.0323 22.0689C10.1112 21.8519 9.3913 21.3456 8.98878 20.4375C8.89589 20.2205 8.78752 20.1642 8.57852 20.124C7.58769 19.9231 6.79039 19.4329 6.47302 18.3559C6.42658 18.1872 6.32594 18.1389 6.17887 18.1148C5.53638 18.0104 5.01775 17.6808 4.58427 17.1826C4.21271 16.7566 4.18175 16.2503 4.42171 15.7681C4.5533 15.4868 4.53782 15.318 4.3443 15.085C4.03467 14.7153 3.82567 14.2813 3.64763 13.8312C3.62441 13.775 3.60119 13.7187 3.56248 13.6303C3.52378 13.6866 3.5083 13.7268 3.48508 13.7589C3.43089 13.8473 3.39219 13.9438 3.33026 14.0161C3.129 14.2572 3.02837 14.2733 2.80389 14.1527C2.05303 13.7589 1.30217 13.3732 0.559058 12.9794C0.404242 12.899 0.257167 12.8025 0.1875 12.6257C0.1875 12.5695 0.1875 12.5132 0.1875 12.457C0.264908 12.3123 0.334575 12.1596 0.411983 12.0149C1.72018 9.65214 3.02837 7.28933 4.33656 4.93456C4.83971 4.02641 5.35835 3.11826 5.86924 2.21011C5.96987 2.0333 6.05502 1.99311 6.24854 2.04133C6.38013 2.07348 6.51172 2.1217 6.63558 2.186C7.23162 2.49139 7.81992 2.79679 8.40822 3.11022C8.55529 3.19059 8.69463 3.27899 8.82622 3.37544C9.012 3.51206 9.04296 3.68887 8.94233 3.89782C8.89589 3.98623 8.85718 4.08267 8.81074 4.17107C8.75655 4.28359 8.77203 4.35592 8.88815 4.42021C9.67771 4.87831 10.4595 5.3364 11.2413 5.80253C11.5123 5.96327 11.7832 6.11597 12.0541 6.2767C13.5868 5.11137 15.1272 3.98623 16.6444 2.79679C16.5747 2.69231 16.5128 2.61194 16.4586 2.52354C16.4045 2.43513 16.3348 2.33869 16.2961 2.24225C16.2032 2.02526 16.2419 1.88864 16.4199 1.74397C16.6522 1.55109 16.8921 1.36625 17.1321 1.18944C17.6662 0.787601 18.2003 0.393801 18.7344 0C18.7422 0.0160735 18.7809 0.0160736 18.8118 0.0160736ZM11.28 6.85535C10.2737 6.26063 9.29067 5.68198 8.30759 5.10334C8.2534 5.19174 8.20696 5.25603 8.16825 5.32837C6.86006 7.6751 5.55187 10.0218 4.24367 12.3766C4.22045 12.4168 4.20497 12.473 4.20497 12.5132C4.24367 13.2285 4.50686 13.8634 4.88616 14.4501C4.91712 14.4983 4.95583 14.5304 4.98679 14.5706C5.01001 14.5546 5.02549 14.5546 5.03323 14.5465C5.05646 14.5144 5.08742 14.4822 5.1029 14.4501C5.35835 14.0402 5.7299 13.8634 6.17887 13.8393C6.70524 13.8152 7.16195 14.0161 7.56447 14.3617C7.71155 14.4822 7.8354 14.6349 7.97473 14.7555C8.03666 14.8117 8.14503 14.8519 8.22244 14.8439C8.95007 14.7474 9.64674 14.8278 10.2892 15.2377C10.6917 15.4949 10.9936 15.8485 11.133 16.3066C11.1949 16.5075 11.2878 16.5557 11.4581 16.5879C12.1935 16.7245 12.8127 17.0861 13.3391 17.6407C13.8577 18.1872 13.8577 18.9908 13.5249 19.4811C13.4939 19.5293 13.4707 19.5856 13.4397 19.6338C13.4707 19.6579 13.4939 19.674 13.5171 19.69C14.0203 19.9472 14.5312 20.2044 15.0421 20.4535C15.2124 20.5339 15.3904 20.5902 15.5762 20.6143C15.9245 20.6544 16.2651 20.4053 16.4045 20.0437C16.5515 19.6659 16.4741 19.2239 16.1954 18.9908C16.0484 18.8623 15.8703 18.7578 15.7078 18.6533C15.313 18.4122 14.9182 18.1791 14.5312 17.922C14.4538 17.8737 14.3841 17.7693 14.3609 17.6728C14.3067 17.3835 14.6086 17.0942 14.8873 17.2469C15.2356 17.4317 15.5917 17.6166 15.9477 17.8014C16.1567 17.9059 16.3735 18.0184 16.5902 18.0907C16.9773 18.2193 17.372 18.0264 17.5733 17.6326C17.7823 17.2308 17.7126 16.7647 17.3953 16.4994C17.2637 16.3869 17.1166 16.2905 16.9618 16.2021C16.4045 15.8967 15.8394 15.5993 15.282 15.2939C14.9027 15.085 14.5312 14.876 14.1596 14.659C13.9661 14.5385 13.9274 14.3295 14.0435 14.1366C14.1596 13.9357 14.3299 13.8714 14.5389 13.9759C15.1969 14.3054 15.8471 14.643 16.4973 14.9725C16.9076 15.1814 17.3179 15.3904 17.7359 15.5833C17.8365 15.6315 17.9604 15.6476 18.0687 15.6315C18.5099 15.5752 18.7654 15.2939 18.8815 14.868C18.9744 14.5304 18.7809 14.0322 18.4712 13.8634C17.9216 13.566 17.372 13.2767 16.8302 12.9794C16.3503 12.7222 15.8781 12.465 15.3981 12.2078C15.282 12.1435 15.2046 12.0471 15.1891 11.9024C15.1659 11.5729 15.4369 11.3559 15.731 11.4926C16.2961 11.7658 16.8612 12.0551 17.4262 12.3364C17.9216 12.5856 18.4171 12.8427 18.9202 13.0678C19.2608 13.2205 19.5782 13.132 19.8414 12.8668C20.1045 12.5936 20.1897 12.2641 20.0813 11.8864C19.9962 11.581 19.764 11.4202 19.5008 11.2997C17.8752 10.5764 16.2496 9.85306 14.6163 9.12171C14.5312 9.08153 14.477 9.0976 14.4073 9.14582C13.9197 9.48337 13.4397 9.81287 12.9443 10.1424C12.4799 10.4558 12.0232 10.7612 11.5432 11.0505C11.3652 11.155 11.1562 11.2354 10.9549 11.2514C10.1963 11.3238 9.43 10.8416 9.17456 10.1343C8.92685 9.45122 8.98878 8.62343 9.70093 8.03675C9.99508 7.79565 10.3047 7.56258 10.6066 7.32148C10.8311 7.19289 11.0401 7.04019 11.28 6.85535ZM20.9793 11.8462C21.0102 11.8301 21.0257 11.8221 21.0412 11.814C21.6527 11.4363 22.001 10.8496 22.241 10.1745C22.2565 10.1263 22.2333 10.054 22.21 10.0138C22.1017 9.84502 21.9856 9.66821 21.8617 9.50747C20.3755 7.60277 18.8815 5.69806 17.3953 3.79335C17.3256 3.70494 17.2482 3.61654 17.1708 3.52813C17.0934 3.58439 17.0392 3.62457 16.9773 3.66476C15.2588 4.95064 13.5404 6.23652 11.8219 7.53043C11.2723 7.94031 10.7537 8.38233 10.2118 8.80828C9.94863 9.01723 9.85574 9.28245 9.90219 9.61999C9.94863 9.94146 10.2196 10.3192 10.506 10.3594C10.8388 10.4076 11.1794 10.4638 11.4581 10.1826C11.5123 10.1263 11.5819 10.0942 11.6439 10.0459C12.5031 9.45925 13.3623 8.88061 14.2138 8.28589C14.3609 8.18141 14.5002 8.16534 14.6705 8.23767C15.4369 8.57521 16.2187 8.88865 16.985 9.22619C17.9526 9.65214 18.9125 10.0942 19.8801 10.5281C20.329 10.7291 20.6541 11.0586 20.8399 11.5327C20.8786 11.6533 20.9328 11.7417 20.9793 11.8462ZM25.2831 9.41907C23.0847 6.61424 20.9096 3.83353 18.7189 1.0287C18.2158 1.4225 17.7359 1.80023 17.2637 2.16992C17.4959 2.57176 23.6343 10.3835 23.8279 10.5281C24.3001 10.1665 24.78 9.80483 25.2831 9.41907ZM6.35691 3.01378C4.62297 6.13204 2.89678 9.23422 1.16284 12.3444C1.21702 12.3766 1.25573 12.4087 1.29443 12.4248C1.72792 12.6579 2.16914 12.899 2.61037 13.132C2.7884 13.2285 2.79615 13.2205 2.89678 13.0436C4.56105 10.054 6.21757 7.07234 7.88184 4.08267C7.91281 4.02641 7.94377 3.96212 7.98247 3.87371C7.43288 3.59243 6.9065 3.3031 6.35691 3.01378ZM11.3188 21.2894C11.4968 21.2652 11.5665 21.1286 11.6361 21.0081C12.0386 20.341 12.4334 19.6659 12.8282 18.9908C13.014 18.6774 12.9908 18.5086 12.7508 18.2273C12.6966 18.1631 12.6424 18.1068 12.5805 18.0505C12.2244 17.7371 11.8064 17.5523 11.3652 17.4237C11.2026 17.3755 11.0788 17.4237 10.9704 17.5523C10.9162 17.6166 10.8698 17.6809 10.8233 17.7532C10.4363 18.4122 10.0493 19.0632 9.66997 19.7222C9.64674 19.7704 9.639 19.8427 9.65448 19.899C9.8093 20.4535 10.1963 20.7991 10.6685 21.0483C10.8775 21.1608 11.102 21.217 11.3188 21.2894ZM8.84944 15.6315C8.48563 15.6074 8.35403 15.6797 8.27662 15.8645C8.17599 16.1056 8.0831 16.3468 7.96699 16.5798C7.77347 16.9656 7.55673 17.3433 7.37095 17.7371C7.21614 18.0586 7.27806 18.4363 7.53351 18.6774C7.85088 18.9828 8.23018 19.1837 8.65592 19.2802C8.81074 19.3123 8.94233 19.2721 9.03522 19.1194C9.38356 18.5327 9.73963 17.9541 10.0802 17.3674C10.1809 17.1986 10.266 17.0218 10.3512 16.845C10.3744 16.7888 10.3976 16.7084 10.3744 16.6521C10.2892 16.3789 10.1499 16.1378 9.90219 15.9851C9.54611 15.7601 9.15907 15.6476 8.84944 15.6315ZM6.26402 14.6912C6.06276 14.6831 5.90794 14.7474 5.80731 14.9403C5.62927 15.2618 5.45124 15.5752 5.2732 15.8967C5.21127 16.0172 5.16483 16.1458 5.11838 16.2825C5.07194 16.4191 5.1029 16.5477 5.19579 16.6602C5.5209 17.0299 5.93117 17.2308 6.40335 17.3031C6.53495 17.3192 6.63558 17.271 6.70524 17.1504C6.92973 16.7325 7.14647 16.3146 7.37095 15.8887C7.4561 15.7199 7.44062 15.5591 7.35547 15.3984C7.11551 14.9644 6.74395 14.7314 6.26402 14.6912Z' fill='white'/%3E%3C/svg%3E%0A") no-repeat center
}

.nav-team span {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url("data:image/svg+xml,%3Csvg width='27' height='24' viewBox='0 0 27 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.1875 21.2175C0.326312 20.8265 0.427266 20.411 0.591316 20.0322C0.831082 19.5068 1.24752 19.0913 1.75229 18.7858C2.74921 18.1748 3.74613 17.5638 4.75567 16.965C5.19735 16.7084 5.38664 16.354 5.39926 15.853C5.41187 15.2665 5.32354 14.7655 4.88187 14.3133C4.36448 13.7757 4.06161 13.1158 3.83447 12.407C3.80923 12.3215 3.74613 12.2237 3.67042 12.1626C3.39279 11.8816 3.22874 11.5394 3.22874 11.1484C3.21612 10.6352 3.2035 10.1219 3.24136 9.62091C3.2666 9.36429 3.41803 9.1199 3.50637 8.86328C3.55684 8.71664 3.64518 8.57 3.64518 8.41114C3.67042 7.99567 3.6578 7.59241 3.64518 7.17694C3.60732 5.29508 4.9071 3.40101 7.29214 3.04663C8.54145 2.86333 9.7529 2.93665 10.9139 3.44988C10.9517 3.47432 11.0022 3.47432 10.9896 3.47432C11.2041 2.96109 11.3555 2.42342 11.6332 1.97128C12.2389 0.969253 13.2232 0.45602 14.3589 0.211623C15.8228 -0.0938731 17.274 -0.0816533 18.7252 0.333822C20.5045 0.847055 21.5771 2.30122 21.5393 4.09754C21.5267 4.84295 21.5267 5.60058 21.5393 6.34599C21.5393 6.43153 21.5771 6.52929 21.6276 6.59039C21.88 6.92032 21.981 7.29914 21.981 7.70239C21.981 8.19119 21.981 8.6922 21.981 9.18099C21.981 9.8653 21.6907 10.3908 21.085 10.7451C21.0093 10.794 20.9336 10.8796 20.9083 10.9651C20.555 11.8938 20.0755 12.7492 19.4571 13.5313C19.4066 13.5924 19.3688 13.6779 19.3688 13.7512C19.3562 14.1911 19.3562 14.6188 19.3688 15.0587C19.3814 15.572 19.6716 15.9141 20.1259 16.1341C21.4257 16.7573 22.7255 17.3927 24.0253 18.0159C25.2241 18.5903 25.9939 19.5068 26.2589 20.7899C26.2841 20.8998 26.3094 21.022 26.3094 21.132C26.3094 21.8041 26.3094 22.4762 26.3094 23.1972C26.2084 23.1972 26.0822 23.1972 25.9687 23.1972C17.5011 23.1972 9.02098 23.1972 0.55346 23.1972C0.439886 23.1972 0.313693 23.2094 0.20012 23.2094C0.187501 22.5373 0.1875 21.8774 0.1875 21.2175ZM7.19119 22.3173C13.2737 22.3173 19.3562 22.3173 25.426 22.3173C25.426 21.8896 25.4639 21.4864 25.4134 21.0831C25.2998 20.1422 24.8077 19.4212 23.9622 18.9324C23.5584 18.7003 23.1167 18.5047 22.7003 18.297C21.7033 17.8082 20.7064 17.3316 19.7095 16.8551C18.9523 16.4885 18.5233 15.9019 18.498 15.0832C18.4728 14.5333 18.4854 13.9834 18.498 13.4335C18.498 13.3602 18.5485 13.2746 18.5864 13.2135C19.3183 12.3459 19.8483 11.3806 20.2016 10.3174C20.2521 10.183 20.3152 10.0975 20.4667 10.0608C20.8705 9.93863 21.0976 9.66979 21.1102 9.25431C21.1229 8.67998 21.1355 8.10565 21.0976 7.53131C21.085 7.3358 20.9209 7.1525 20.8326 6.95698C20.7821 6.83478 20.6812 6.71259 20.6812 6.59039C20.6686 5.71056 20.6812 4.83073 20.6812 3.9509C20.6938 2.70447 19.9997 1.66579 18.7883 1.22587C17.2487 0.66376 15.6713 0.663758 14.1065 1.12811C12.7058 1.55581 11.9234 2.63115 11.9487 3.9509C11.9613 4.84295 11.9613 5.735 11.9613 6.61482C11.9613 6.7248 11.8982 6.847 11.8225 6.93254C11.6584 7.11584 11.5322 7.32358 11.5322 7.56798C11.5322 8.11787 11.5322 8.66776 11.5322 9.22988C11.5322 9.52315 11.671 9.74311 11.8982 9.9264C11.9991 10.0119 12.1001 10.1464 12.1379 10.2686C12.4156 11.3317 12.9203 12.2971 13.6018 13.1769C13.6649 13.2624 13.7027 13.3846 13.7027 13.4946C13.7153 13.9467 13.7027 14.3989 13.7027 14.851C13.7153 15.7308 13.3115 16.3785 12.5039 16.794C11.3051 17.4172 10.1189 18.0526 8.92003 18.6758C7.31738 19.5312 7.02714 20.8143 7.19119 22.3173ZM6.24475 22.3296C6.25736 22.2929 6.26998 22.2807 6.26998 22.2562C6.26998 22.0118 6.26998 21.7674 6.2826 21.5108C6.29522 20.0322 6.92619 18.8713 8.25121 18.1015C8.73074 17.8204 9.22289 17.5638 9.72766 17.3194C10.2198 17.075 10.6615 16.7695 11.1663 16.5496C11.5322 16.3907 11.8729 16.1952 12.2137 15.9997C12.6301 15.7675 12.832 15.4009 12.8194 14.9365C12.8194 14.5699 12.832 14.1911 12.8194 13.8245C12.8194 13.7023 12.7689 13.5679 12.7058 13.4702C12.1001 12.627 11.6332 11.7105 11.3429 10.7207C11.3177 10.6229 11.2546 10.5252 11.1789 10.4519C10.8508 10.1341 10.6741 9.75533 10.6615 9.30319C10.6489 8.70442 10.6236 8.09343 10.6741 7.49466C10.6993 7.20138 10.8634 6.9081 10.9644 6.61482C11.0022 6.49263 11.0779 6.37043 11.0779 6.24823C11.0905 5.78387 11.0527 5.3073 11.0905 4.84295C11.1158 4.52523 10.9896 4.36637 10.712 4.24417C9.63933 3.74316 8.51621 3.69428 7.38048 3.87758C5.70212 4.14642 4.55377 5.46616 4.55377 7.10362C4.55377 7.67795 4.56638 8.25229 4.55377 8.83884C4.55377 8.94882 4.49067 9.08324 4.41495 9.15656C4.21304 9.35207 4.11209 9.55981 4.12471 9.84087C4.13733 10.2441 4.13733 10.6474 4.12471 11.0506C4.12471 11.3195 4.23828 11.515 4.45281 11.6861C4.52853 11.7472 4.60424 11.8449 4.62948 11.9305C4.88187 12.908 5.43711 13.7146 6.13117 14.4478C6.20689 14.5211 6.25736 14.6555 6.26998 14.7655C6.2826 15.1687 6.26998 15.572 6.2826 15.9752C6.29522 16.6962 5.97974 17.2339 5.34878 17.6249C4.33924 18.2237 3.34232 18.8469 2.34539 19.4457C1.26014 20.1055 0.944656 21.1198 1.10871 22.3418C2.79969 22.3296 4.51591 22.3296 6.24475 22.3296Z' fill='%2367779A'/%3E%3C/svg%3E%0A") no-repeat center
}

.nav-team.active span {
    background: url("data:image/svg+xml,%3Csvg width='27' height='24' viewBox='0 0 27 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.1875 21.2175C0.326312 20.8265 0.427266 20.411 0.591316 20.0322C0.831082 19.5068 1.24752 19.0913 1.75229 18.7858C2.74921 18.1748 3.74613 17.5638 4.75567 16.965C5.19735 16.7084 5.38664 16.354 5.39926 15.853C5.41187 15.2665 5.32354 14.7655 4.88187 14.3133C4.36448 13.7757 4.06161 13.1158 3.83447 12.407C3.80923 12.3215 3.74613 12.2237 3.67042 12.1626C3.39279 11.8816 3.22874 11.5394 3.22874 11.1484C3.21612 10.6352 3.2035 10.1219 3.24136 9.62091C3.2666 9.36429 3.41803 9.1199 3.50637 8.86328C3.55684 8.71664 3.64518 8.57 3.64518 8.41114C3.67042 7.99567 3.6578 7.59241 3.64518 7.17694C3.60732 5.29508 4.9071 3.40101 7.29214 3.04663C8.54145 2.86333 9.7529 2.93665 10.9139 3.44988C10.9517 3.47432 11.0022 3.47432 10.9896 3.47432C11.2041 2.96109 11.3555 2.42342 11.6332 1.97128C12.2389 0.969253 13.2232 0.45602 14.3589 0.211623C15.8228 -0.0938731 17.274 -0.0816533 18.7252 0.333822C20.5045 0.847055 21.5771 2.30122 21.5393 4.09754C21.5267 4.84295 21.5267 5.60058 21.5393 6.34599C21.5393 6.43153 21.5771 6.52929 21.6276 6.59039C21.88 6.92032 21.981 7.29914 21.981 7.70239C21.981 8.19119 21.981 8.6922 21.981 9.18099C21.981 9.8653 21.6907 10.3908 21.085 10.7451C21.0093 10.794 20.9336 10.8796 20.9083 10.9651C20.555 11.8938 20.0755 12.7492 19.4571 13.5313C19.4066 13.5924 19.3688 13.6779 19.3688 13.7512C19.3562 14.1911 19.3562 14.6188 19.3688 15.0587C19.3814 15.572 19.6716 15.9141 20.1259 16.1341C21.4257 16.7573 22.7255 17.3927 24.0253 18.0159C25.2241 18.5903 25.9939 19.5068 26.2589 20.7899C26.2841 20.8998 26.3094 21.022 26.3094 21.132C26.3094 21.8041 26.3094 22.4762 26.3094 23.1972C26.2084 23.1972 26.0822 23.1972 25.9687 23.1972C17.5011 23.1972 9.02098 23.1972 0.55346 23.1972C0.439886 23.1972 0.313693 23.2094 0.20012 23.2094C0.187501 22.5373 0.1875 21.8774 0.1875 21.2175ZM7.19119 22.3173C13.2737 22.3173 19.3562 22.3173 25.426 22.3173C25.426 21.8896 25.4639 21.4864 25.4134 21.0831C25.2998 20.1422 24.8077 19.4212 23.9622 18.9324C23.5584 18.7003 23.1167 18.5047 22.7003 18.297C21.7033 17.8082 20.7064 17.3316 19.7095 16.8551C18.9523 16.4885 18.5233 15.9019 18.498 15.0832C18.4728 14.5333 18.4854 13.9834 18.498 13.4335C18.498 13.3602 18.5485 13.2746 18.5864 13.2135C19.3183 12.3459 19.8483 11.3806 20.2016 10.3174C20.2521 10.183 20.3152 10.0975 20.4667 10.0608C20.8705 9.93863 21.0976 9.66979 21.1102 9.25431C21.1229 8.67998 21.1355 8.10565 21.0976 7.53131C21.085 7.3358 20.9209 7.1525 20.8326 6.95698C20.7821 6.83478 20.6812 6.71259 20.6812 6.59039C20.6686 5.71056 20.6812 4.83073 20.6812 3.9509C20.6938 2.70447 19.9997 1.66579 18.7883 1.22587C17.2487 0.66376 15.6713 0.663758 14.1065 1.12811C12.7058 1.55581 11.9234 2.63115 11.9487 3.9509C11.9613 4.84295 11.9613 5.735 11.9613 6.61482C11.9613 6.7248 11.8982 6.847 11.8225 6.93254C11.6584 7.11584 11.5322 7.32358 11.5322 7.56798C11.5322 8.11787 11.5322 8.66776 11.5322 9.22988C11.5322 9.52315 11.671 9.74311 11.8982 9.9264C11.9991 10.0119 12.1001 10.1464 12.1379 10.2686C12.4156 11.3317 12.9203 12.2971 13.6018 13.1769C13.6649 13.2624 13.7027 13.3846 13.7027 13.4946C13.7153 13.9467 13.7027 14.3989 13.7027 14.851C13.7153 15.7308 13.3115 16.3785 12.5039 16.794C11.3051 17.4172 10.1189 18.0526 8.92003 18.6758C7.31738 19.5312 7.02714 20.8143 7.19119 22.3173ZM6.24475 22.3296C6.25736 22.2929 6.26998 22.2807 6.26998 22.2562C6.26998 22.0118 6.26998 21.7674 6.2826 21.5108C6.29522 20.0322 6.92619 18.8713 8.25121 18.1015C8.73074 17.8204 9.22289 17.5638 9.72766 17.3194C10.2198 17.075 10.6615 16.7695 11.1663 16.5496C11.5322 16.3907 11.8729 16.1952 12.2137 15.9997C12.6301 15.7675 12.832 15.4009 12.8194 14.9365C12.8194 14.5699 12.832 14.1911 12.8194 13.8245C12.8194 13.7023 12.7689 13.5679 12.7058 13.4702C12.1001 12.627 11.6332 11.7105 11.3429 10.7207C11.3177 10.6229 11.2546 10.5252 11.1789 10.4519C10.8508 10.1341 10.6741 9.75533 10.6615 9.30319C10.6489 8.70442 10.6236 8.09343 10.6741 7.49466C10.6993 7.20138 10.8634 6.9081 10.9644 6.61482C11.0022 6.49263 11.0779 6.37043 11.0779 6.24823C11.0905 5.78387 11.0527 5.3073 11.0905 4.84295C11.1158 4.52523 10.9896 4.36637 10.712 4.24417C9.63933 3.74316 8.51621 3.69428 7.38048 3.87758C5.70212 4.14642 4.55377 5.46616 4.55377 7.10362C4.55377 7.67795 4.56638 8.25229 4.55377 8.83884C4.55377 8.94882 4.49067 9.08324 4.41495 9.15656C4.21304 9.35207 4.11209 9.55981 4.12471 9.84087C4.13733 10.2441 4.13733 10.6474 4.12471 11.0506C4.12471 11.3195 4.23828 11.515 4.45281 11.6861C4.52853 11.7472 4.60424 11.8449 4.62948 11.9305C4.88187 12.908 5.43711 13.7146 6.13117 14.4478C6.20689 14.5211 6.25736 14.6555 6.26998 14.7655C6.2826 15.1687 6.26998 15.572 6.2826 15.9752C6.29522 16.6962 5.97974 17.2339 5.34878 17.6249C4.33924 18.2237 3.34232 18.8469 2.34539 19.4457C1.26014 20.1055 0.944656 21.1198 1.10871 22.3418C2.79969 22.3296 4.51591 22.3296 6.24475 22.3296Z' fill='white'/%3E%3C/svg%3E%0A") no-repeat center
}

.nav-money span {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url("data:image/svg+xml,%3Csvg width='27' height='26' viewBox='0 0 27 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M26.3023 6.8613C26.147 7.0343 26.0199 7.23875 25.8434 7.36456C24.5092 8.31603 23.1609 9.25963 21.8125 10.1954C21.6642 10.2976 21.4878 10.3684 21.3183 10.3841C21.0642 10.4077 20.8877 10.2426 20.7959 9.98306C20.7042 9.72357 20.7536 9.49553 20.923 9.30681C21.0077 9.21245 21.1065 9.14168 21.2054 9.07091C22.229 8.34748 23.2597 7.63192 24.2833 6.90848C24.361 6.85344 24.4386 6.7984 24.5374 6.71976C24.4386 6.64899 24.361 6.60181 24.2833 6.54677C21.6431 4.87187 19.0028 3.20483 16.3626 1.52994C16.2143 1.43558 16.1014 1.43558 15.9531 1.5378C14.4283 2.61508 12.8964 3.6845 11.3645 4.76178C11.3009 4.80896 11.2374 4.85614 11.1527 4.91905C11.2586 4.98982 11.3433 5.04486 11.428 5.09991C14.1812 6.84558 16.9273 8.59125 19.6876 10.3212C20.0194 10.5256 20.1535 10.793 20.1465 11.2098C20.1394 13.6946 20.1394 16.1873 20.1465 18.6721C20.1465 19.0731 20.0264 19.3483 19.7158 19.5607C18.784 20.1976 17.8592 20.8502 16.9344 21.5029C16.7014 21.668 16.4614 21.7703 16.1932 21.613C15.9249 21.4479 15.8825 21.1726 15.8825 20.8581C15.8896 18.5148 15.8825 16.1637 15.8896 13.8204C15.8896 13.6002 15.819 13.4901 15.6566 13.3879C12.8187 11.6029 9.98788 9.81007 7.16409 8.00936C6.9876 7.89927 6.87465 7.90713 6.71228 8.02508C5.20861 9.08664 3.69789 10.1482 2.18716 11.2019C2.10951 11.2569 2.03891 11.312 1.94008 11.3827C2.04597 11.4535 2.12363 11.5086 2.20128 11.5557C4.83446 13.2228 7.46764 14.8898 10.1008 16.5647C10.2773 16.6748 10.3903 16.6591 10.5526 16.5411C11.781 15.6683 13.0234 14.8033 14.2589 13.9383C14.4565 13.7968 14.6542 13.6789 14.9013 13.7889C15.3037 13.9541 15.4237 14.5045 15.1201 14.8505C15.0495 14.9291 14.9648 14.9999 14.8801 15.0549C13.5176 16.0143 12.1481 16.9657 10.7927 17.9329C10.4962 18.1452 10.2279 18.1531 9.91728 17.9565C6.82523 15.9907 3.72613 14.0327 0.627017 12.0669C0.0481408 11.6973 0.0410813 11.1547 0.605839 10.7537C5.6463 7.23088 10.6726 3.70023 15.699 0.169572C15.9955 -0.0427387 16.2637 -0.0584652 16.5744 0.138119C19.6664 2.10396 22.7726 4.06194 25.8646 6.03565C26.0411 6.14574 26.1611 6.35805 26.3023 6.52318C26.3023 6.63327 26.3023 6.75122 26.3023 6.8613ZM8.08888 7.06575C8.20183 7.14439 8.2936 7.19943 8.37832 7.25447C11.1245 8.99228 13.8635 10.7301 16.6097 12.46C16.9415 12.6723 17.0897 12.9318 17.0897 13.3643C17.0756 15.4088 17.0826 17.4533 17.0826 19.4899C17.0826 19.5921 17.0826 19.6865 17.0826 19.8359C17.1956 19.7651 17.2733 19.7258 17.3368 19.6786C17.8098 19.3483 18.2828 19.0024 18.7628 18.6878C18.9181 18.5856 18.9816 18.4676 18.9746 18.2632C18.9675 16.3524 18.9675 14.4416 18.9675 12.5308C18.9675 12.4364 18.9675 12.3499 18.9675 12.2084C18.7416 12.3657 18.5581 12.4915 18.3675 12.6173C18.0357 12.8375 17.6898 12.7824 17.5133 12.4836C17.3156 12.1534 17.4003 11.7602 17.7392 11.5086C17.951 11.3513 18.1627 11.2019 18.4028 11.0368C18.3039 10.9739 18.2263 10.9188 18.1486 10.8638C17.1674 10.2426 16.1861 9.62135 15.2048 9.00014C13.5388 7.94645 11.8728 6.88489 10.1997 5.83907C10.1149 5.78402 9.9667 5.76043 9.88904 5.81548C9.30311 6.20864 8.71717 6.6254 8.08888 7.06575Z' fill='%2367779A'/%3E%3Cpath d='M26.3023 12.1455C26.1187 12.3342 25.9564 12.5544 25.7516 12.6959C24.4527 13.6238 23.1467 14.5281 21.8407 15.4481C21.7489 15.511 21.6501 15.5818 21.5512 15.629C21.2971 15.7469 21.0006 15.6368 20.8594 15.3852C20.7041 15.1178 20.7324 14.8033 20.93 14.5831C21.0006 14.5045 21.0853 14.4337 21.17 14.3708C22.5325 13.4115 23.895 12.46 25.2575 11.5007C25.7446 11.1625 26.034 11.249 26.3093 11.7995C26.3023 11.9174 26.3023 12.0275 26.3023 12.1455Z' fill='%2367779A'/%3E%3Cpath d='M26.3023 9.47203C26.147 9.65289 26.0129 9.87306 25.8293 9.99887C24.4739 10.9661 23.1114 11.9175 21.7419 12.869C21.3254 13.1599 20.9301 13.0341 20.7889 12.578C20.7112 12.3421 20.7606 12.1298 20.9089 11.949C20.9795 11.8625 21.0783 11.7917 21.1701 11.7209C22.5255 10.7695 23.8809 9.81802 25.2363 8.86656C25.7376 8.51271 26.0341 8.60707 26.3023 9.18109C26.3023 9.28331 26.3023 9.37767 26.3023 9.47203Z' fill='%2367779A'/%3E%3Cpath d='M26.3025 14.7562C26.126 14.9449 25.9777 15.1651 25.7801 15.3066C24.467 16.2423 23.1398 17.1702 21.8197 18.0902C21.6926 18.1767 21.5514 18.2554 21.4032 18.2868C21.149 18.3419 20.9231 18.1924 20.8243 17.9408C20.7114 17.6735 20.7467 17.4218 20.9302 17.2095C21.0079 17.123 21.0996 17.0523 21.1914 16.9894C22.5398 16.0379 23.8881 15.0943 25.2435 14.1507C25.7236 13.8126 26.0201 13.8912 26.3095 14.4259C26.3025 14.5281 26.3025 14.6382 26.3025 14.7562Z' fill='%2367779A'/%3E%3Cpath d='M15.3034 19.655C15.3104 19.9223 15.1904 20.1111 14.9998 20.2448C13.5668 21.2513 12.1266 22.2578 10.6936 23.2643C10.4253 23.453 10.1853 23.3744 9.93113 23.2171C7.7074 21.8017 5.47661 20.3942 3.25288 18.9866C2.3775 18.4283 1.49507 17.8778 0.619696 17.3195C0.259663 17.0915 0.139652 16.8084 0.245544 16.4703C0.351436 16.1322 0.647934 15.9513 0.951491 16.0614C1.07856 16.1086 1.19857 16.1793 1.31858 16.2501C4.25532 18.1059 7.185 19.9617 10.1147 21.8253C10.277 21.9275 10.39 21.9197 10.5453 21.8096C11.7807 20.9289 13.0232 20.0639 14.2656 19.191C14.4704 19.0495 14.6822 18.9316 14.9363 19.0574C15.1763 19.1753 15.2963 19.3719 15.3034 19.655Z' fill='%2367779A'/%3E%3Cpath d='M15.3034 22.2814C15.3175 22.5487 15.1905 22.7375 14.9999 22.8711C13.5668 23.8855 12.1267 24.8842 10.6936 25.8907C10.4253 26.0794 10.1853 26.0008 9.93117 25.8356C8.11688 24.6797 6.3026 23.5395 4.48832 22.3836C3.21761 21.5815 1.95397 20.7795 0.683262 19.9696C0.598549 19.9145 0.506775 19.8516 0.429121 19.7808C0.203218 19.5685 0.153802 19.2383 0.294991 18.9631C0.429121 18.7036 0.7115 18.5777 0.97976 18.6721C1.09271 18.7114 1.1986 18.7743 1.29744 18.8451C4.24124 20.7087 7.18503 22.5723 10.1218 24.4438C10.2841 24.546 10.39 24.546 10.5524 24.4359C11.7878 23.5552 13.0373 22.6903 14.2798 21.8174C14.4845 21.6759 14.6963 21.558 14.9504 21.6759C15.1764 21.8017 15.2964 21.9983 15.3034 22.2814Z' fill='%2367779A'/%3E%3Cpath d='M10.3688 20.7795C10.2206 20.7166 10.0935 20.6773 9.97351 20.5986C6.85323 18.6249 3.73294 16.6512 0.612653 14.6775C0.365571 14.5203 0.189084 14.3158 0.217322 13.9777C0.238501 13.7182 0.372631 13.5216 0.598534 13.4272C0.831496 13.3329 1.02916 13.4272 1.22683 13.5531C2.89286 14.6068 4.5589 15.6604 6.22493 16.722C7.52388 17.5398 8.82282 18.3654 10.1147 19.1911C10.2771 19.2933 10.39 19.3012 10.5453 19.1832C11.7737 18.3104 13.0091 17.4454 14.2516 16.5805C14.3998 16.4782 14.5763 16.4075 14.7457 16.3917C14.9857 16.3681 15.1622 16.5254 15.254 16.777C15.3458 17.0287 15.3175 17.2646 15.1481 17.4611C15.0705 17.5476 14.9787 17.6263 14.8869 17.6892C13.5244 18.6485 12.1619 19.6078 10.7924 20.5593C10.6653 20.6458 10.51 20.7008 10.3688 20.7795Z' fill='%2367779A'/%3E%3C/svg%3E%0A") no-repeat center
}

.nav-money.active span {
    background: url("data:image/svg+xml,%3Csvg width='27' height='26' viewBox='0 0 27 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M26.3023 6.8613C26.147 7.0343 26.0199 7.23875 25.8434 7.36456C24.5092 8.31603 23.1609 9.25963 21.8125 10.1954C21.6642 10.2976 21.4878 10.3684 21.3183 10.3841C21.0642 10.4077 20.8877 10.2426 20.7959 9.98306C20.7042 9.72357 20.7536 9.49553 20.923 9.30681C21.0077 9.21245 21.1065 9.14168 21.2054 9.07091C22.229 8.34748 23.2597 7.63192 24.2833 6.90848C24.361 6.85344 24.4386 6.7984 24.5374 6.71976C24.4386 6.64899 24.361 6.60181 24.2833 6.54677C21.6431 4.87187 19.0028 3.20483 16.3626 1.52994C16.2143 1.43558 16.1014 1.43558 15.9531 1.5378C14.4283 2.61508 12.8964 3.6845 11.3645 4.76178C11.3009 4.80896 11.2374 4.85614 11.1527 4.91905C11.2586 4.98982 11.3433 5.04486 11.428 5.09991C14.1812 6.84558 16.9273 8.59125 19.6876 10.3212C20.0194 10.5256 20.1535 10.793 20.1465 11.2098C20.1394 13.6946 20.1394 16.1873 20.1465 18.6721C20.1465 19.0731 20.0264 19.3483 19.7158 19.5607C18.784 20.1976 17.8592 20.8502 16.9344 21.5029C16.7014 21.668 16.4614 21.7703 16.1932 21.613C15.9249 21.4479 15.8825 21.1726 15.8825 20.8581C15.8896 18.5148 15.8825 16.1637 15.8896 13.8204C15.8896 13.6002 15.819 13.4901 15.6566 13.3879C12.8187 11.6029 9.98788 9.81007 7.16409 8.00936C6.9876 7.89927 6.87465 7.90713 6.71228 8.02508C5.20861 9.08664 3.69789 10.1482 2.18716 11.2019C2.10951 11.2569 2.03891 11.312 1.94008 11.3827C2.04597 11.4535 2.12363 11.5086 2.20128 11.5557C4.83446 13.2228 7.46764 14.8898 10.1008 16.5647C10.2773 16.6748 10.3903 16.6591 10.5526 16.5411C11.781 15.6683 13.0234 14.8033 14.2589 13.9383C14.4565 13.7968 14.6542 13.6789 14.9013 13.7889C15.3037 13.9541 15.4237 14.5045 15.1201 14.8505C15.0495 14.9291 14.9648 14.9999 14.8801 15.0549C13.5176 16.0143 12.1481 16.9657 10.7927 17.9329C10.4962 18.1452 10.2279 18.1531 9.91728 17.9565C6.82523 15.9907 3.72613 14.0327 0.627017 12.0669C0.0481408 11.6973 0.0410813 11.1547 0.605839 10.7537C5.6463 7.23088 10.6726 3.70023 15.699 0.169572C15.9955 -0.0427387 16.2637 -0.0584652 16.5744 0.138119C19.6664 2.10396 22.7726 4.06194 25.8646 6.03565C26.0411 6.14574 26.1611 6.35805 26.3023 6.52318C26.3023 6.63327 26.3023 6.75122 26.3023 6.8613ZM8.08888 7.06575C8.20183 7.14439 8.2936 7.19943 8.37832 7.25447C11.1245 8.99228 13.8635 10.7301 16.6097 12.46C16.9415 12.6723 17.0897 12.9318 17.0897 13.3643C17.0756 15.4088 17.0826 17.4533 17.0826 19.4899C17.0826 19.5921 17.0826 19.6865 17.0826 19.8359C17.1956 19.7651 17.2733 19.7258 17.3368 19.6786C17.8098 19.3483 18.2828 19.0024 18.7628 18.6878C18.9181 18.5856 18.9816 18.4676 18.9746 18.2632C18.9675 16.3524 18.9675 14.4416 18.9675 12.5308C18.9675 12.4364 18.9675 12.3499 18.9675 12.2084C18.7416 12.3657 18.5581 12.4915 18.3675 12.6173C18.0357 12.8375 17.6898 12.7824 17.5133 12.4836C17.3156 12.1534 17.4003 11.7602 17.7392 11.5086C17.951 11.3513 18.1627 11.2019 18.4028 11.0368C18.3039 10.9739 18.2263 10.9188 18.1486 10.8638C17.1674 10.2426 16.1861 9.62135 15.2048 9.00014C13.5388 7.94645 11.8728 6.88489 10.1997 5.83907C10.1149 5.78402 9.9667 5.76043 9.88904 5.81548C9.30311 6.20864 8.71717 6.6254 8.08888 7.06575Z' fill='white'/%3E%3Cpath d='M26.3023 12.1455C26.1187 12.3342 25.9564 12.5544 25.7516 12.6959C24.4527 13.6238 23.1467 14.5281 21.8407 15.4481C21.7489 15.511 21.6501 15.5818 21.5512 15.629C21.2971 15.7469 21.0006 15.6368 20.8594 15.3852C20.7041 15.1178 20.7324 14.8033 20.93 14.5831C21.0006 14.5045 21.0853 14.4337 21.17 14.3708C22.5325 13.4115 23.895 12.46 25.2575 11.5007C25.7446 11.1625 26.034 11.249 26.3093 11.7995C26.3023 11.9174 26.3023 12.0275 26.3023 12.1455Z' fill='white'/%3E%3Cpath d='M26.3023 9.47203C26.147 9.65289 26.0129 9.87306 25.8293 9.99887C24.4739 10.9661 23.1114 11.9175 21.7419 12.869C21.3254 13.1599 20.9301 13.0341 20.7889 12.578C20.7112 12.3421 20.7606 12.1298 20.9089 11.949C20.9795 11.8625 21.0783 11.7917 21.1701 11.7209C22.5255 10.7695 23.8809 9.81802 25.2363 8.86656C25.7376 8.51271 26.0341 8.60707 26.3023 9.18109C26.3023 9.28331 26.3023 9.37767 26.3023 9.47203Z' fill='white'/%3E%3Cpath d='M26.3025 14.7562C26.126 14.9449 25.9777 15.1651 25.7801 15.3066C24.467 16.2423 23.1398 17.1702 21.8197 18.0902C21.6926 18.1767 21.5514 18.2554 21.4032 18.2868C21.149 18.3419 20.9231 18.1924 20.8243 17.9408C20.7114 17.6735 20.7467 17.4218 20.9302 17.2095C21.0079 17.123 21.0996 17.0523 21.1914 16.9894C22.5398 16.0379 23.8881 15.0943 25.2435 14.1507C25.7236 13.8126 26.0201 13.8912 26.3095 14.4259C26.3025 14.5281 26.3025 14.6382 26.3025 14.7562Z' fill='white'/%3E%3Cpath d='M15.3034 19.655C15.3104 19.9223 15.1904 20.1111 14.9998 20.2448C13.5668 21.2513 12.1266 22.2578 10.6936 23.2643C10.4253 23.453 10.1853 23.3744 9.93113 23.2171C7.7074 21.8017 5.47661 20.3942 3.25288 18.9866C2.3775 18.4283 1.49507 17.8778 0.619696 17.3195C0.259663 17.0915 0.139652 16.8084 0.245544 16.4703C0.351436 16.1322 0.647934 15.9513 0.951491 16.0614C1.07856 16.1086 1.19857 16.1793 1.31858 16.2501C4.25532 18.1059 7.185 19.9617 10.1147 21.8253C10.277 21.9275 10.39 21.9197 10.5453 21.8096C11.7807 20.9289 13.0232 20.0639 14.2656 19.191C14.4704 19.0495 14.6822 18.9316 14.9363 19.0574C15.1763 19.1753 15.2963 19.3719 15.3034 19.655Z' fill='white'/%3E%3Cpath d='M15.3034 22.2814C15.3175 22.5487 15.1905 22.7375 14.9999 22.8711C13.5668 23.8855 12.1267 24.8842 10.6936 25.8907C10.4253 26.0794 10.1853 26.0008 9.93117 25.8356C8.11688 24.6797 6.3026 23.5395 4.48832 22.3836C3.21761 21.5815 1.95397 20.7795 0.683262 19.9696C0.598549 19.9145 0.506775 19.8516 0.429121 19.7808C0.203218 19.5685 0.153802 19.2383 0.294991 18.9631C0.429121 18.7036 0.7115 18.5777 0.97976 18.6721C1.09271 18.7114 1.1986 18.7743 1.29744 18.8451C4.24124 20.7087 7.18503 22.5723 10.1218 24.4438C10.2841 24.546 10.39 24.546 10.5524 24.4359C11.7878 23.5552 13.0373 22.6903 14.2798 21.8174C14.4845 21.6759 14.6963 21.558 14.9504 21.6759C15.1764 21.8017 15.2964 21.9983 15.3034 22.2814Z' fill='white'/%3E%3Cpath d='M10.3688 20.7795C10.2206 20.7166 10.0935 20.6773 9.97351 20.5986C6.85323 18.6249 3.73294 16.6512 0.612653 14.6775C0.365571 14.5203 0.189084 14.3158 0.217322 13.9777C0.238501 13.7182 0.372631 13.5216 0.598534 13.4272C0.831496 13.3329 1.02916 13.4272 1.22683 13.5531C2.89286 14.6068 4.5589 15.6604 6.22493 16.722C7.52388 17.5398 8.82282 18.3654 10.1147 19.1911C10.2771 19.2933 10.39 19.3012 10.5453 19.1832C11.7737 18.3104 13.0091 17.4454 14.2516 16.5805C14.3998 16.4782 14.5763 16.4075 14.7457 16.3917C14.9857 16.3681 15.1622 16.5254 15.254 16.777C15.3458 17.0287 15.3175 17.2646 15.1481 17.4611C15.0705 17.5476 14.9787 17.6263 14.8869 17.6892C13.5244 18.6485 12.1619 19.6078 10.7924 20.5593C10.6653 20.6458 10.51 20.7008 10.3688 20.7795Z' fill='white'/%3E%3C/svg%3E%0A") no-repeat center
}

.nav-debet span {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url("data:image/svg+xml,%3Csvg width='26' height='26' viewBox='0 0 26 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath d='M7.75552 17.0636C8.72533 17.0636 9.51125 16.2887 9.51125 15.333C9.51125 14.3771 8.72513 13.6023 7.75513 13.6023H6.66591C6.49432 13.6023 6.35547 13.7411 6.35547 13.9127V16.7531C6.35547 16.9245 6.49432 17.0636 6.66591 17.0636H7.75552ZM6.97635 14.1978H7.75513C8.38216 14.1978 8.89037 14.706 8.89037 15.3328C8.89037 15.9597 8.38216 16.4679 7.75513 16.4679H6.97635V14.1978Z' fill='%2367779A'/%3E%3Cpath d='M12.4208 14.1978C12.5853 14.1978 12.7186 14.0645 12.7186 13.9C12.7186 13.7356 12.5853 13.6023 12.4208 13.6023H10.484C10.3124 13.6023 10.1733 13.7411 10.1733 13.9127V16.7531C10.1733 16.9245 10.3124 17.0636 10.484 17.0636H12.4208C12.5853 17.0636 12.7186 16.9303 12.7186 16.7658C12.7186 16.6014 12.5853 16.4681 12.4208 16.4681H10.7944V15.7325H12.1153C12.2798 15.7325 12.4131 15.5992 12.4131 15.4348C12.4131 15.2703 12.2798 15.137 12.1153 15.137H10.7944V14.1978H12.4208Z' fill='%2367779A'/%3E%3Cpath d='M14.8667 13.6023H13.6908C13.5194 13.6023 13.3804 13.7411 13.3804 13.9127V16.7531C13.3804 16.9245 13.5194 17.0636 13.6908 17.0636H14.9939C16.0061 17.0636 16.4021 15.8224 15.5951 15.2717C16.2168 14.6576 15.775 13.6023 14.8667 13.6023ZM14.0013 14.1978H14.8667C15.0865 14.1978 15.2636 14.3819 15.2636 14.6092C15.2636 14.8383 15.0865 15.0224 14.8667 15.0224H14.0013V14.1978ZM14.9939 16.4681H14.0013V15.6181H14.9939C15.2224 15.6181 15.4063 15.8077 15.4063 16.0422C15.4063 16.2768 15.221 16.4681 14.9939 16.4681Z' fill='%2367779A'/%3E%3Cpath d='M18.089 17.0636C18.2606 17.0636 18.3995 16.9245 18.3995 16.7531V14.1978H19.3437C19.5083 14.1978 19.6416 14.0645 19.6416 13.9C19.6416 13.7356 19.5083 13.6023 19.3437 13.6023H16.8344C16.6697 13.6023 16.5366 13.7356 16.5366 13.9C16.5366 14.0645 16.6697 14.1978 16.8344 14.1978H17.7786V16.7531C17.7786 16.9245 17.9176 17.0636 18.089 17.0636Z' fill='%2367779A'/%3E%3Cpath d='M25.6164 21.0365C25.8266 21.0365 25.997 20.8661 25.997 20.6557C25.9518 19.5914 26.1285 19.0517 25.7501 18.3539L21.0899 9.75913C20.5791 8.8169 19.596 8.23172 18.5242 8.23172H18.1408V6.63667C18.1408 5.70992 17.3868 4.95573 16.4601 4.95573H15.7725V4.09424C15.7725 2.56465 14.5282 1.32031 12.9986 1.32031C11.469 1.32031 10.2247 2.56465 10.2247 4.09424V4.95573H9.53716C8.6104 4.95573 7.85641 5.70992 7.85641 6.63667V8.23172H7.47298C6.40121 8.23172 5.41812 8.8169 4.90733 9.75913L0.246963 18.3541C0.085495 18.652 0 18.9886 0 19.3276V22.8256C0 23.8614 0.84285 24.7043 1.87871 24.7043H24.1183C25.1544 24.7043 25.997 23.8614 25.997 22.8256V22.0775C25.997 21.8671 25.8266 21.6967 25.6164 21.6967C25.4059 21.6967 25.2355 21.8671 25.2355 22.0775V22.8256C25.2355 23.4415 24.7344 23.9426 24.1183 23.9426H1.87871C1.26279 23.9426 0.761719 23.4415 0.761719 22.8256V19.3276C0.761719 18.7476 0.691895 19.2453 5.57661 10.1221C5.9543 9.42587 6.68071 8.99344 7.47278 8.99344H18.5242C19.3163 8.99344 20.0429 9.42607 20.4204 10.1221C25.3202 19.2731 25.2355 18.7472 25.2355 19.3276V20.6557C25.2355 20.8659 25.4059 21.0365 25.6164 21.0365ZM8.61794 8.23172V6.63667C8.61794 6.12985 9.03033 5.71745 9.53716 5.71745H12.2877C12.4981 5.71745 12.6685 5.54706 12.6685 5.33659C12.6685 5.12633 12.4981 4.95573 12.2877 4.95573H10.9864V4.09424C10.9864 2.98459 11.889 2.08203 12.9986 2.08203C14.1081 2.08203 15.0108 2.98459 15.0108 4.09424V4.95573H13.7094C13.4991 4.95573 13.3287 5.12633 13.3287 5.33659C13.3287 5.54706 13.4991 5.71745 13.7094 5.71745H16.4599C16.9667 5.71745 17.3791 6.12985 17.3791 6.63667V8.23172H8.61794Z' fill='%2367779A'/%3E%3Cpath d='M2.91943 19.3276C2.91943 19.5379 3.09003 19.7083 3.30029 19.7083H22.6965C22.907 19.7083 23.0774 19.5379 23.0774 19.3276C23.0774 19.1172 22.907 18.9468 22.6965 18.9468H3.30029C3.09003 18.9468 2.91943 19.1172 2.91943 19.3276Z' fill='%2367779A'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0'%3E%3Crect width='26' height='26' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A") no-repeat center
}

.nav-debet.active span {
    background: url("data:image/svg+xml,%3Csvg width='26' height='26' viewBox='0 0 26 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath d='M7.75552 17.0636C8.72533 17.0636 9.51125 16.2887 9.51125 15.333C9.51125 14.3771 8.72513 13.6023 7.75513 13.6023H6.66591C6.49432 13.6023 6.35547 13.7411 6.35547 13.9127V16.7531C6.35547 16.9245 6.49432 17.0636 6.66591 17.0636H7.75552ZM6.97635 14.1978H7.75513C8.38216 14.1978 8.89037 14.706 8.89037 15.3328C8.89037 15.9597 8.38216 16.4679 7.75513 16.4679H6.97635V14.1978Z' fill='white'/%3E%3Cpath d='M12.4208 14.1978C12.5853 14.1978 12.7186 14.0645 12.7186 13.9C12.7186 13.7356 12.5853 13.6023 12.4208 13.6023H10.484C10.3124 13.6023 10.1733 13.7411 10.1733 13.9127V16.7531C10.1733 16.9245 10.3124 17.0636 10.484 17.0636H12.4208C12.5853 17.0636 12.7186 16.9303 12.7186 16.7658C12.7186 16.6014 12.5853 16.4681 12.4208 16.4681H10.7944V15.7325H12.1153C12.2798 15.7325 12.4131 15.5992 12.4131 15.4348C12.4131 15.2703 12.2798 15.137 12.1153 15.137H10.7944V14.1978H12.4208Z' fill='white'/%3E%3Cpath d='M14.8667 13.6023H13.6908C13.5194 13.6023 13.3804 13.7411 13.3804 13.9127V16.7531C13.3804 16.9245 13.5194 17.0636 13.6908 17.0636H14.9939C16.0061 17.0636 16.4021 15.8224 15.5951 15.2717C16.2168 14.6576 15.775 13.6023 14.8667 13.6023ZM14.0013 14.1978H14.8667C15.0865 14.1978 15.2636 14.3819 15.2636 14.6092C15.2636 14.8383 15.0865 15.0224 14.8667 15.0224H14.0013V14.1978ZM14.9939 16.4681H14.0013V15.6181H14.9939C15.2224 15.6181 15.4063 15.8077 15.4063 16.0422C15.4063 16.2768 15.221 16.4681 14.9939 16.4681Z' fill='white'/%3E%3Cpath d='M18.089 17.0636C18.2606 17.0636 18.3995 16.9245 18.3995 16.7531V14.1978H19.3437C19.5083 14.1978 19.6416 14.0645 19.6416 13.9C19.6416 13.7356 19.5083 13.6023 19.3437 13.6023H16.8344C16.6697 13.6023 16.5366 13.7356 16.5366 13.9C16.5366 14.0645 16.6697 14.1978 16.8344 14.1978H17.7786V16.7531C17.7786 16.9245 17.9176 17.0636 18.089 17.0636Z' fill='white'/%3E%3Cpath d='M25.6164 21.0365C25.8266 21.0365 25.997 20.8661 25.997 20.6557C25.9518 19.5914 26.1285 19.0517 25.7501 18.3539L21.0899 9.75913C20.5791 8.8169 19.596 8.23172 18.5242 8.23172H18.1408V6.63667C18.1408 5.70992 17.3868 4.95573 16.4601 4.95573H15.7725V4.09424C15.7725 2.56465 14.5282 1.32031 12.9986 1.32031C11.469 1.32031 10.2247 2.56465 10.2247 4.09424V4.95573H9.53716C8.6104 4.95573 7.85641 5.70992 7.85641 6.63667V8.23172H7.47298C6.40121 8.23172 5.41812 8.8169 4.90733 9.75913L0.246963 18.3541C0.085495 18.652 0 18.9886 0 19.3276V22.8256C0 23.8614 0.84285 24.7043 1.87871 24.7043H24.1183C25.1544 24.7043 25.997 23.8614 25.997 22.8256V22.0775C25.997 21.8671 25.8266 21.6967 25.6164 21.6967C25.4059 21.6967 25.2355 21.8671 25.2355 22.0775V22.8256C25.2355 23.4415 24.7344 23.9426 24.1183 23.9426H1.87871C1.26279 23.9426 0.761719 23.4415 0.761719 22.8256V19.3276C0.761719 18.7476 0.691895 19.2453 5.57661 10.1221C5.9543 9.42587 6.68071 8.99344 7.47278 8.99344H18.5242C19.3163 8.99344 20.0429 9.42607 20.4204 10.1221C25.3202 19.2731 25.2355 18.7472 25.2355 19.3276V20.6557C25.2355 20.8659 25.4059 21.0365 25.6164 21.0365ZM8.61794 8.23172V6.63667C8.61794 6.12985 9.03033 5.71745 9.53716 5.71745H12.2877C12.4981 5.71745 12.6685 5.54706 12.6685 5.33659C12.6685 5.12633 12.4981 4.95573 12.2877 4.95573H10.9864V4.09424C10.9864 2.98459 11.889 2.08203 12.9986 2.08203C14.1081 2.08203 15.0108 2.98459 15.0108 4.09424V4.95573H13.7094C13.4991 4.95573 13.3287 5.12633 13.3287 5.33659C13.3287 5.54706 13.4991 5.71745 13.7094 5.71745H16.4599C16.9667 5.71745 17.3791 6.12985 17.3791 6.63667V8.23172H8.61794Z' fill='white'/%3E%3Cpath d='M2.91943 19.3276C2.91943 19.5379 3.09003 19.7083 3.30029 19.7083H22.6965C22.907 19.7083 23.0774 19.5379 23.0774 19.3276C23.0774 19.1172 22.907 18.9468 22.6965 18.9468H3.30029C3.09003 18.9468 2.91943 19.1172 2.91943 19.3276Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0'%3E%3Crect width='26' height='26' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A") no-repeat center
}

.nav-otch span {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url("data:image/svg+xml,%3Csvg width='20' height='28' viewBox='0 0 20 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.0001 27C19.9996 27.5485 19.5564 28 19.008 28C13.0014 28 6.99483 28 0.988262 28C0.441344 28 0.000560441 27.56 4.14345e-05 27.0131C3.53861e-05 27.0067 3.22446e-05 27.0023 3.22446e-05 27C-5.06202e-05 18.5117 5.2391e-05 11.4883 5.2391e-05 3C5.2391e-05 2.44771 0.447768 2 1.00005 2C2.41779 2 3.01677 1.99803 4.43448 2.00341C4.55847 2.00388 4.62167 1.96149 4.68316 1.86008L5.88972 0.127484C5.94306 0.0398438 5.99822 -0.000138539 6.10666 0C8.70276 0.00346347 11.2989 0.00326952 13.895 0.00049874C13.996 0.000387909 14.0497 0.0354383 14.1013 0.120335C14.5061 0.785959 14.9187 1.20808 15.3222 1.87454C15.3806 1.97107 15.4441 2.00022 15.5518 2C16.9788 1.99673 17.5731 2 19.0001 2C19.5524 2 20.0001 2.44768 20.0001 3C20.0001 11.4559 20.0001 18.5441 20.0001 27ZM1.00005 27C6.78777 27 13.2248 26.9991 19.0001 26.9991C19.0001 19.3069 19.0001 10.6837 19.0001 3C18.0525 3 16.7793 3.00094 15.8255 3.00094C15.8255 3.4942 15.8255 4.22416 15.8255 4.88576C15.8255 5.43804 15.3778 5.88563 14.8255 5.88563C11.6035 5.88563 8.38957 5.88563 5.16758 5.88563C4.61529 5.88563 4.16757 5.43804 4.16757 4.88575C4.16757 4.2209 4.16757 3.48978 4.16757 3C3.21358 3 1.94391 3 1.00005 3C1.00005 10.6895 1.00005 19.309 1.00005 27ZM5.16781 5.00036C8.17931 5.00036 11.7822 5 14.7846 5C14.7846 4.59364 14.7886 3.39722 14.7846 3.00094C14.7843 2.96628 14.5236 2.53821 14.5001 2.5C14.1332 1.90317 14.0513 1.7004 13.6869 1.10205C13.6398 1.02455 13.5887 0.999917 13.5001 1C11.3924 1.0026 8.6078 1.0023 6.50011 1C6.41257 0.999916 6.36012 1.022 6.3122 1.10088L5.50011 2.5L5.16781 3C5.16781 3 5.16781 4.59369 5.16781 5.00036Z' fill='%2367779A'/%3E%3Cpath d='M16.5 9C16.7761 9 17 9.22513 17 9.50127C17 9.77741 16.7761 10 16.5 10C13.8328 10 11.1703 10 8.5 10C8.22386 10 8 9.77748 8 9.50134C8 9.2252 8.22386 9 8.5 9C11.1659 9 13.8285 9 16.5 9Z' fill='%2367779A'/%3E%3Cpath d='M8.5 14C8.22386 14 8 13.7771 8 13.5009C8 13.2248 8.22386 13 8.5 13C11.166 13 13.8286 13 16.5 13C16.7761 13 17 13.2204 17 13.4965C17 13.7726 16.7761 14 16.5 14C13.8362 14 11.171 14 8.5 14Z' fill='%2367779A'/%3E%3Cpath d='M8.50001 18C8.22387 18 8 17.7774 8 17.5013C8 17.2251 8.22386 17 8.5 17C11.1659 17 13.8295 17 16.5 17C16.7761 17 17 17.2202 17 17.4964C17 17.7725 16.7761 18 16.5 18C13.8397 18 11.176 18 8.50001 18Z' fill='%2367779A'/%3E%3Cpath d='M8.50001 22C8.22387 22 8 21.7778 8 21.5017C8 21.2255 8.22386 21 8.5 21C11.166 21 13.8289 21 16.5 21C16.7761 21 17 21.2201 17 21.4963C17 21.7724 16.7761 22 16.5 22C13.8399 22 11.1769 22 8.50001 22Z' fill='%2367779A'/%3E%3Cpath d='M4 9.50427C4 9.22813 4.22386 9 4.5 9C4.83377 9 5.1662 9 5.5 9C5.77614 9 6 9.22229 6 9.49843C6 9.77458 5.77614 10 5.5 10C5.16751 10 4.8347 10 4.5 10C4.22386 10 4 9.78041 4 9.50427Z' fill='%2367779A'/%3E%3Cpath d='M4 13.5052C4 13.2291 4.22386 13 4.5 13C4.83379 13 5.1663 13 5.5 13C5.77614 13 6 13.2222 6 13.4984C6 13.7745 5.77614 14 5.5 14C5.16814 14 4.83525 14 4.5 14C4.22386 14 4 13.7814 4 13.5052Z' fill='%2367779A'/%3E%3Cpath d='M4.5 18C4.22386 18 4 17.7765 4 17.5003C4 17.2242 4.22386 17 4.5 17C4.83344 17 5.16612 17 5.5 17C5.77614 17 6 17.2225 6 17.4986C6 17.7748 5.77614 18 5.5 18C5.16802 18 4.83537 18 4.5 18Z' fill='%2367779A'/%3E%3Cpath d='M6 21.498C6 21.7742 5.77614 22 5.5 22C5.16651 22 4.8341 22 4.5 22C4.22386 22 4 21.7779 4 21.5018C4 21.2256 4.22386 21 4.5 21C4.83326 21 5.16604 21 5.5 21C5.77614 21 6 21.2219 6 21.498Z' fill='%2367779A'/%3E%3C/svg%3E%0A") no-repeat center
}

.nav-otch.active span {
    background: url("data:image/svg+xml,%3Csvg width='20' height='28' viewBox='0 0 20 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.0001 27C19.9996 27.5485 19.5564 28 19.008 28C13.0014 28 6.99483 28 0.988262 28C0.441344 28 0.000560441 27.56 4.14345e-05 27.0131C3.53861e-05 27.0067 3.22446e-05 27.0023 3.22446e-05 27C-5.06202e-05 18.5117 5.2391e-05 11.4883 5.2391e-05 3C5.2391e-05 2.44771 0.447768 2 1.00005 2C2.41779 2 3.01677 1.99803 4.43448 2.00341C4.55847 2.00388 4.62167 1.96149 4.68316 1.86008L5.88972 0.127484C5.94306 0.0398438 5.99822 -0.000138539 6.10666 0C8.70276 0.00346347 11.2989 0.00326952 13.895 0.00049874C13.996 0.000387909 14.0497 0.0354383 14.1013 0.120335C14.5061 0.785959 14.9187 1.20808 15.3222 1.87454C15.3806 1.97107 15.4441 2.00022 15.5518 2C16.9788 1.99673 17.5731 2 19.0001 2C19.5524 2 20.0001 2.44768 20.0001 3C20.0001 11.4559 20.0001 18.5441 20.0001 27ZM1.00005 27C6.78777 27 13.2248 26.9991 19.0001 26.9991C19.0001 19.3069 19.0001 10.6837 19.0001 3C18.0525 3 16.7793 3.00094 15.8255 3.00094C15.8255 3.4942 15.8255 4.22416 15.8255 4.88576C15.8255 5.43804 15.3778 5.88563 14.8255 5.88563C11.6035 5.88563 8.38957 5.88563 5.16758 5.88563C4.61529 5.88563 4.16757 5.43804 4.16757 4.88575C4.16757 4.2209 4.16757 3.48978 4.16757 3C3.21358 3 1.94391 3 1.00005 3C1.00005 10.6895 1.00005 19.309 1.00005 27ZM5.16781 5.00036C8.17931 5.00036 11.7822 5 14.7846 5C14.7846 4.59364 14.7886 3.39722 14.7846 3.00094C14.7843 2.96628 14.5236 2.53821 14.5001 2.5C14.1332 1.90317 14.0513 1.7004 13.6869 1.10205C13.6398 1.02455 13.5887 0.999917 13.5001 1C11.3924 1.0026 8.6078 1.0023 6.50011 1C6.41257 0.999916 6.36012 1.022 6.3122 1.10088L5.50011 2.5L5.16781 3C5.16781 3 5.16781 4.59369 5.16781 5.00036Z' fill='white'/%3E%3Cpath d='M16.5 9C16.7761 9 17 9.22513 17 9.50127C17 9.77741 16.7761 10 16.5 10C13.8328 10 11.1703 10 8.5 10C8.22386 10 8 9.77748 8 9.50134C8 9.2252 8.22386 9 8.5 9C11.1659 9 13.8285 9 16.5 9Z' fill='white'/%3E%3Cpath d='M8.5 14C8.22386 14 8 13.7771 8 13.5009C8 13.2248 8.22386 13 8.5 13C11.166 13 13.8286 13 16.5 13C16.7761 13 17 13.2204 17 13.4965C17 13.7726 16.7761 14 16.5 14C13.8362 14 11.171 14 8.5 14Z' fill='white'/%3E%3Cpath d='M8.50001 18C8.22387 18 8 17.7774 8 17.5013C8 17.2251 8.22386 17 8.5 17C11.1659 17 13.8295 17 16.5 17C16.7761 17 17 17.2202 17 17.4964C17 17.7725 16.7761 18 16.5 18C13.8397 18 11.176 18 8.50001 18Z' fill='white'/%3E%3Cpath d='M8.50001 22C8.22387 22 8 21.7778 8 21.5017C8 21.2255 8.22386 21 8.5 21C11.166 21 13.8289 21 16.5 21C16.7761 21 17 21.2201 17 21.4963C17 21.7724 16.7761 22 16.5 22C13.8399 22 11.1769 22 8.50001 22Z' fill='white'/%3E%3Cpath d='M4 9.50427C4 9.22813 4.22386 9 4.5 9C4.83377 9 5.1662 9 5.5 9C5.77614 9 6 9.22229 6 9.49843C6 9.77458 5.77614 10 5.5 10C5.16751 10 4.8347 10 4.5 10C4.22386 10 4 9.78041 4 9.50427Z' fill='white'/%3E%3Cpath d='M4 13.5052C4 13.2291 4.22386 13 4.5 13C4.83379 13 5.1663 13 5.5 13C5.77614 13 6 13.2222 6 13.4984C6 13.7745 5.77614 14 5.5 14C5.16814 14 4.83525 14 4.5 14C4.22386 14 4 13.7814 4 13.5052Z' fill='white'/%3E%3Cpath d='M4.5 18C4.22386 18 4 17.7765 4 17.5003C4 17.2242 4.22386 17 4.5 17C4.83344 17 5.16612 17 5.5 17C5.77614 17 6 17.2225 6 17.4986C6 17.7748 5.77614 18 5.5 18C5.16802 18 4.83537 18 4.5 18Z' fill='white'/%3E%3Cpath d='M6 21.498C6 21.7742 5.77614 22 5.5 22C5.16651 22 4.8341 22 4.5 22C4.22386 22 4 21.7779 4 21.5018C4 21.2256 4.22386 21 4.5 21C4.83326 21 5.16604 21 5.5 21C5.77614 21 6 21.2219 6 21.498Z' fill='white'/%3E%3C/svg%3E%0A") no-repeat center
}

.nav-settings span {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url("data:image/svg+xml,%3Csvg width='25' height='24' viewBox='0 0 25 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.20166 16.0697C0.376523 15.4675 0.544661 14.8586 0.719524 14.2563C0.739701 14.1827 0.753152 14.1024 0.780054 14.0288C0.894387 13.6675 1.14996 13.527 1.52658 13.6206C1.99064 13.7411 2.4547 13.8615 2.91204 13.9887C3.04655 14.0288 3.12726 14.0021 3.22814 13.895C3.60477 13.5002 3.98812 13.1121 4.39165 12.7441C4.49253 12.6504 4.52616 12.5768 4.48581 12.4496C4.35802 11.9946 4.23024 11.5329 4.11591 11.0712C4.0083 10.6564 4.14953 10.4155 4.57324 10.3017C5.22561 10.121 5.87126 9.94706 6.52364 9.77978C6.91372 9.6794 7.16929 9.82662 7.27689 10.208C7.40468 10.663 7.53246 11.1247 7.6468 11.5865C7.68042 11.7337 7.74768 11.7872 7.90237 11.8207C8.42023 11.9344 8.93137 12.0749 9.44251 12.2288C9.59047 12.2757 9.6779 12.2824 9.79223 12.1619C10.1083 11.8273 10.4446 11.5062 10.7742 11.185C11.097 10.8638 11.3862 10.8705 11.709 11.185C12.1731 11.64 12.6304 12.1017 13.0877 12.5567C13.4106 12.8779 13.4106 13.1656 13.0877 13.4868C12.7649 13.8147 12.4354 14.1426 12.1058 14.4638C12.0049 14.5641 11.9646 14.6444 12.0318 14.785C12.2739 15.2868 12.4152 15.8221 12.4555 16.3842C12.469 16.5314 12.5497 16.5582 12.664 16.5916C13.1214 16.7121 13.572 16.8325 14.0293 16.953C14.4732 17.0734 14.6077 17.3143 14.4934 17.7559C14.3252 18.3916 14.1571 19.0206 13.9822 19.6496C13.8679 20.0645 13.6258 20.2117 13.2088 20.1046C12.7447 19.9842 12.2874 19.8637 11.8233 19.7366C11.6955 19.7031 11.6216 19.7299 11.5274 19.8303C11.1508 20.2251 10.7674 20.6132 10.3706 20.9879C10.2563 21.095 10.2361 21.1686 10.2765 21.3024C10.4043 21.7507 10.5253 22.2057 10.6396 22.6607C10.7473 23.0756 10.5993 23.3232 10.189 23.4369C9.59719 23.5975 9.00535 23.7514 8.42023 23.912C8.33952 23.9321 8.26554 23.9723 8.18484 23.999C8.07723 23.999 7.96289 23.999 7.85529 23.999C7.60644 23.8585 7.49883 23.631 7.43158 23.3633C7.3307 22.9485 7.20964 22.5336 7.10203 22.1187C7.0684 21.9983 7.02805 21.9381 6.88681 21.9247C6.33532 21.8778 5.80401 21.744 5.30632 21.5098C5.15836 21.4362 5.07093 21.4697 4.96332 21.5834C4.64049 21.918 4.31095 22.2392 3.9814 22.5604C3.6653 22.8749 3.3761 22.8749 3.06 22.5604C2.58922 22.0987 2.12515 21.637 1.6611 21.1686C1.33827 20.8407 1.33827 20.5663 1.66782 20.2385C1.98392 19.9173 2.30674 19.5961 2.63629 19.2816C2.75735 19.1678 2.76408 19.0808 2.717 18.9202C2.55559 18.4117 2.42108 17.8898 2.30674 17.3678C2.27312 17.2273 2.22604 17.1738 2.09825 17.1403C1.6611 17.0266 1.22394 16.8994 0.780054 16.7924C0.517759 16.7322 0.322719 16.5983 0.221837 16.3507C0.20166 16.2571 0.20166 16.1634 0.20166 16.0697ZM1.3988 15.8556C1.86959 15.9827 2.31347 16.0965 2.75735 16.2169C3.18779 16.3307 3.30212 16.4444 3.3223 16.8994C3.35592 17.582 3.51061 18.2243 3.84016 18.8266C4.05538 19.2214 4.02175 19.3953 3.69892 19.7165C3.3761 20.0377 3.04655 20.3656 2.7439 20.6667C3.01965 20.941 3.28194 21.1953 3.55096 21.463C3.86706 21.1485 4.20334 20.8072 4.54634 20.4727C4.81536 20.205 5.01712 20.1648 5.34667 20.3455C5.95197 20.6734 6.59089 20.8474 7.27689 20.8808C7.80821 20.9009 7.89564 20.9946 8.03015 21.5031C8.14448 21.9314 8.26554 22.3529 8.3866 22.8013C8.75651 22.7009 9.10623 22.6072 9.46941 22.5135C9.34162 22.0317 9.21384 21.5634 9.09278 21.095C8.99862 20.7403 9.05915 20.5396 9.36852 20.3589C10.0007 19.9775 10.4984 19.4756 10.8818 18.8533C11.0634 18.5589 11.2651 18.492 11.6081 18.5857C12.0184 18.6927 12.4286 18.8065 12.8322 18.9136C12.8994 18.9336 12.9667 18.9403 13.0407 18.9537C13.1348 18.5924 13.229 18.2444 13.3231 17.8831C12.8456 17.7559 12.3883 17.6355 11.9377 17.5084C11.5274 17.3946 11.4198 17.2675 11.3996 16.8526C11.3727 16.1634 11.218 15.5143 10.8818 14.9054C10.6665 14.5039 10.7002 14.3366 11.0297 14.0154C11.3525 13.6876 11.6821 13.3664 11.9847 13.0653C11.7157 12.7909 11.4602 12.5366 11.1911 12.269C10.8683 12.5902 10.5388 12.918 10.2025 13.2526C9.90657 13.547 9.72498 13.5805 9.3618 13.3864C8.76323 13.0653 8.13103 12.898 7.45176 12.8578C6.90699 12.8311 6.83301 12.7508 6.68505 12.2155C6.57071 11.7939 6.45638 11.379 6.33532 10.9374C5.96542 11.0378 5.62242 11.1248 5.25924 11.2251C5.27942 11.3121 5.28614 11.379 5.30632 11.4459C5.41393 11.8541 5.52826 12.2623 5.63587 12.6638C5.7233 12.9917 5.65605 13.1924 5.37357 13.3664C4.72793 13.7545 4.21679 14.2697 3.82671 14.9054C3.65857 15.1797 3.45008 15.24 3.14071 15.1664C2.88514 15.0994 2.62957 15.0258 2.36727 14.9589C2.14533 14.8987 1.91666 14.8452 1.68127 14.785C1.58711 15.1463 1.49968 15.4875 1.3988 15.8556Z' fill='%2367779A'/%3E%3Cpath d='M16.4571 14.2429C16.3158 14.2095 16.1141 14.1559 15.9056 14.1024C15.3877 13.9686 14.8766 13.8281 14.3587 13.6875C13.9283 13.5671 13.787 13.3262 13.9014 12.8979C14.0157 12.4496 14.13 12.008 14.2578 11.5664C14.2982 11.4191 14.2713 11.3388 14.1569 11.2318C13.7601 10.8638 13.3835 10.4823 13.0136 10.0942C12.9194 9.99387 12.8455 9.95372 12.7177 9.99387C12.2603 10.121 11.7963 10.2415 11.3322 10.3619C10.9152 10.469 10.6731 10.3284 10.5588 9.91358C10.3772 9.26451 10.2023 8.62213 10.0342 7.97307C9.93332 7.59165 10.0813 7.33069 10.4646 7.22363C10.922 7.09649 11.386 6.96935 11.8501 6.8556C11.9981 6.81545 12.0519 6.75523 12.0855 6.59464C12.1998 6.0794 12.3411 5.57085 12.4957 5.0623C12.5428 4.91509 12.5428 4.8281 12.4285 4.72104C12.0922 4.40654 11.7694 4.07197 11.4398 3.74409C11.1305 3.4296 11.1237 3.14187 11.4331 2.82737C11.9039 2.35228 12.3747 1.88388 12.8455 1.41548C13.1548 1.11437 13.4373 1.12106 13.7467 1.42217C14.0897 1.75674 14.426 2.09131 14.7622 2.43258C14.8497 2.52626 14.9236 2.54633 15.0514 2.48611C15.5693 2.24522 16.1141 2.09801 16.679 2.05786C16.8135 2.04448 16.8471 1.97756 16.874 1.8705C16.9951 1.40879 17.1162 0.953775 17.2439 0.492067C17.365 0.0705085 17.6071 -0.0767026 18.0376 0.0370514C18.6832 0.204337 19.3289 0.378313 19.9678 0.55229C20.3713 0.659353 20.5193 0.913626 20.4117 1.30842C20.2906 1.77013 20.1695 2.23183 20.0418 2.68685C20.0014 2.82068 20.035 2.90098 20.1426 3.00135C20.5394 3.36937 20.9228 3.74409 21.286 4.13889C21.3936 4.25933 21.4743 4.27941 21.6222 4.23926C22.0594 4.11212 22.4966 3.99837 22.9404 3.88461C23.3978 3.76417 23.6399 3.90469 23.7677 4.35301C23.9358 4.96862 24.104 5.58423 24.2721 6.20653C24.3932 6.67493 24.2586 6.90913 23.7811 7.03627C23.3373 7.15671 22.8866 7.27716 22.4428 7.39091C22.3284 7.41768 22.2612 7.45783 22.2477 7.60504C22.2006 8.15373 22.0661 8.68236 21.8307 9.17752C21.7568 9.32473 21.7904 9.41172 21.9047 9.51878C22.241 9.83997 22.5638 10.1678 22.8866 10.4957C23.196 10.8102 23.2027 11.098 22.8866 11.4125C22.4226 11.8809 21.9585 12.3426 21.4877 12.8043C21.1716 13.1121 20.8824 13.1121 20.5663 12.8043C20.2301 12.4764 19.8938 12.1485 19.571 11.8072C19.4634 11.7002 19.3759 11.6868 19.2414 11.747C18.737 11.9812 18.2124 12.1217 17.6609 12.1619C17.5264 12.1753 17.4793 12.2355 17.4457 12.3559C17.3247 12.8243 17.1969 13.2927 17.0691 13.7544C16.9816 14.0756 16.7866 14.2362 16.4571 14.2429ZM20.9631 11.7069C21.2389 11.4325 21.5012 11.1716 21.7769 10.8972C21.4608 10.5894 21.1178 10.2548 20.7816 9.91358C20.5193 9.65261 20.4789 9.45187 20.6538 9.13737C20.9901 8.52176 21.1716 7.87269 21.1985 7.1701C21.2187 6.68162 21.3196 6.58125 21.8106 6.45412C22.241 6.34036 22.6714 6.22661 23.1288 6.09947C23.0279 5.73813 22.9337 5.38349 22.8396 5.01546C22.3822 5.13591 21.9518 5.24966 21.5214 5.37011C21.0237 5.50393 20.8757 5.4504 20.6067 5.01546C20.2704 4.48015 19.8467 4.04521 19.3087 3.71064C18.8177 3.40283 18.7774 3.28239 18.932 2.72031C19.0464 2.30544 19.154 1.89726 19.2683 1.46232C18.8917 1.36195 18.542 1.26827 18.1788 1.17459C18.1048 1.44225 18.0376 1.67645 17.977 1.90396C17.9098 2.14485 17.8492 2.38574 17.782 2.62663C17.6946 2.92774 17.5466 3.06826 17.2574 3.07495C16.484 3.10172 15.7576 3.27569 15.0783 3.65711C14.8429 3.79093 14.6075 3.74409 14.4058 3.56343C14.3184 3.48313 14.2376 3.39614 14.1569 3.31584C13.8745 3.0348 13.5987 2.75376 13.3566 2.51287C13.0741 2.79391 12.8186 3.04819 12.5495 3.31584C12.8522 3.61696 13.1817 3.93814 13.5113 4.26602C13.8207 4.57383 13.8543 4.74781 13.6525 5.11583C13.3163 5.72475 13.1548 6.37382 13.1212 7.06303C13.101 7.50467 12.9867 7.6385 12.563 7.75225C12.1191 7.87269 11.6685 7.98645 11.1977 8.11359C11.2986 8.48161 11.386 8.82957 11.4869 9.19759C11.9442 9.07715 12.3747 8.9634 12.8051 8.84964C13.3028 8.71581 13.4575 8.76934 13.7265 9.20429C14.0628 9.74629 14.4999 10.1812 15.0447 10.5225C15.502 10.8102 15.5491 10.9507 15.4079 11.4727C15.2935 11.8942 15.1792 12.3158 15.0649 12.7574C15.4415 12.8578 15.7912 12.9448 16.1544 13.0452C16.2956 12.5366 16.4167 12.0615 16.5512 11.5931C16.6454 11.2719 16.7933 11.1515 17.1229 11.1381C17.856 11.1113 18.5487 10.9441 19.1943 10.5894C19.5239 10.4087 19.7189 10.4489 19.9947 10.7232C20.3242 11.0578 20.6538 11.3991 20.9631 11.7069Z' fill='%2367779A'/%3E%3Cpath d='M7.35757 13.9618C8.95824 13.9551 10.2697 15.2533 10.2764 16.8458C10.2832 18.4451 8.95824 19.7633 7.35757 19.7566C5.7569 19.7499 4.45215 18.4451 4.45215 16.8592C4.45215 15.2667 5.7569 13.9685 7.35757 13.9618ZM9.20036 16.8525C9.19364 15.8555 8.35967 15.0325 7.3643 15.0391C6.36219 15.0458 5.53496 15.8689 5.53496 16.8659C5.53496 17.8696 6.3891 18.7128 7.38447 18.6927C8.3933 18.6659 9.20709 17.8429 9.20036 16.8525Z' fill='%2367779A'/%3E%3Cpath d='M14.2447 7.12334C14.2379 5.53747 15.5628 4.21926 17.1702 4.21926C18.7507 4.21257 20.0757 5.54416 20.0689 7.12334C20.0622 8.7159 18.7306 10.0274 17.1299 10.0207C15.5561 10.0073 14.2514 8.70252 14.2447 7.12334ZM17.1433 8.94341C18.1589 8.94341 18.9928 8.12036 18.9928 7.11665C18.9928 6.11963 18.1656 5.28989 17.1702 5.28989C16.1547 5.28989 15.3207 6.11294 15.3275 7.11665C15.3275 8.12036 16.148 8.93672 17.1433 8.94341Z' fill='%2367779A'/%3E%3C/svg%3E%0A") no-repeat center
}

.nav-settings.active span {
    background: url("data:image/svg+xml,%3Csvg width='25' height='24' viewBox='0 0 25 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.20166 16.0697C0.376523 15.4675 0.544661 14.8586 0.719524 14.2563C0.739701 14.1827 0.753152 14.1024 0.780054 14.0288C0.894387 13.6675 1.14996 13.527 1.52658 13.6206C1.99064 13.7411 2.4547 13.8615 2.91204 13.9887C3.04655 14.0288 3.12726 14.0021 3.22814 13.895C3.60477 13.5002 3.98812 13.1121 4.39165 12.7441C4.49253 12.6504 4.52616 12.5768 4.48581 12.4496C4.35802 11.9946 4.23024 11.5329 4.11591 11.0712C4.0083 10.6564 4.14953 10.4155 4.57324 10.3017C5.22561 10.121 5.87126 9.94706 6.52364 9.77978C6.91372 9.6794 7.16929 9.82662 7.27689 10.208C7.40468 10.663 7.53246 11.1247 7.6468 11.5865C7.68042 11.7337 7.74768 11.7872 7.90237 11.8207C8.42023 11.9344 8.93137 12.0749 9.44251 12.2288C9.59047 12.2757 9.6779 12.2824 9.79223 12.1619C10.1083 11.8273 10.4446 11.5062 10.7742 11.185C11.097 10.8638 11.3862 10.8705 11.709 11.185C12.1731 11.64 12.6304 12.1017 13.0877 12.5567C13.4106 12.8779 13.4106 13.1656 13.0877 13.4868C12.7649 13.8147 12.4354 14.1426 12.1058 14.4638C12.0049 14.5641 11.9646 14.6444 12.0318 14.785C12.2739 15.2868 12.4152 15.8221 12.4555 16.3842C12.469 16.5314 12.5497 16.5582 12.664 16.5916C13.1214 16.7121 13.572 16.8325 14.0293 16.953C14.4732 17.0734 14.6077 17.3143 14.4934 17.7559C14.3252 18.3916 14.1571 19.0206 13.9822 19.6496C13.8679 20.0645 13.6258 20.2117 13.2088 20.1046C12.7447 19.9842 12.2874 19.8637 11.8233 19.7366C11.6955 19.7031 11.6216 19.7299 11.5274 19.8303C11.1508 20.2251 10.7674 20.6132 10.3706 20.9879C10.2563 21.095 10.2361 21.1686 10.2765 21.3024C10.4043 21.7507 10.5253 22.2057 10.6396 22.6607C10.7473 23.0756 10.5993 23.3232 10.189 23.4369C9.59719 23.5975 9.00535 23.7514 8.42023 23.912C8.33952 23.9321 8.26554 23.9723 8.18484 23.999C8.07723 23.999 7.96289 23.999 7.85529 23.999C7.60644 23.8585 7.49883 23.631 7.43158 23.3633C7.3307 22.9485 7.20964 22.5336 7.10203 22.1187C7.0684 21.9983 7.02805 21.9381 6.88681 21.9247C6.33532 21.8778 5.80401 21.744 5.30632 21.5098C5.15836 21.4362 5.07093 21.4697 4.96332 21.5834C4.64049 21.918 4.31095 22.2392 3.9814 22.5604C3.6653 22.8749 3.3761 22.8749 3.06 22.5604C2.58922 22.0987 2.12515 21.637 1.6611 21.1686C1.33827 20.8407 1.33827 20.5663 1.66782 20.2385C1.98392 19.9173 2.30674 19.5961 2.63629 19.2816C2.75735 19.1678 2.76408 19.0808 2.717 18.9202C2.55559 18.4117 2.42108 17.8898 2.30674 17.3678C2.27312 17.2273 2.22604 17.1738 2.09825 17.1403C1.6611 17.0266 1.22394 16.8994 0.780054 16.7924C0.517759 16.7322 0.322719 16.5983 0.221837 16.3507C0.20166 16.2571 0.20166 16.1634 0.20166 16.0697ZM1.3988 15.8556C1.86959 15.9827 2.31347 16.0965 2.75735 16.2169C3.18779 16.3307 3.30212 16.4444 3.3223 16.8994C3.35592 17.582 3.51061 18.2243 3.84016 18.8266C4.05538 19.2214 4.02175 19.3953 3.69892 19.7165C3.3761 20.0377 3.04655 20.3656 2.7439 20.6667C3.01965 20.941 3.28194 21.1953 3.55096 21.463C3.86706 21.1485 4.20334 20.8072 4.54634 20.4727C4.81536 20.205 5.01712 20.1648 5.34667 20.3455C5.95197 20.6734 6.59089 20.8474 7.27689 20.8808C7.80821 20.9009 7.89564 20.9946 8.03015 21.5031C8.14448 21.9314 8.26554 22.3529 8.3866 22.8013C8.75651 22.7009 9.10623 22.6072 9.46941 22.5135C9.34162 22.0317 9.21384 21.5634 9.09278 21.095C8.99862 20.7403 9.05915 20.5396 9.36852 20.3589C10.0007 19.9775 10.4984 19.4756 10.8818 18.8533C11.0634 18.5589 11.2651 18.492 11.6081 18.5857C12.0184 18.6927 12.4286 18.8065 12.8322 18.9136C12.8994 18.9336 12.9667 18.9403 13.0407 18.9537C13.1348 18.5924 13.229 18.2444 13.3231 17.8831C12.8456 17.7559 12.3883 17.6355 11.9377 17.5084C11.5274 17.3946 11.4198 17.2675 11.3996 16.8526C11.3727 16.1634 11.218 15.5143 10.8818 14.9054C10.6665 14.5039 10.7002 14.3366 11.0297 14.0154C11.3525 13.6876 11.6821 13.3664 11.9847 13.0653C11.7157 12.7909 11.4602 12.5366 11.1911 12.269C10.8683 12.5902 10.5388 12.918 10.2025 13.2526C9.90657 13.547 9.72498 13.5805 9.3618 13.3864C8.76323 13.0653 8.13103 12.898 7.45176 12.8578C6.90699 12.8311 6.83301 12.7508 6.68505 12.2155C6.57071 11.7939 6.45638 11.379 6.33532 10.9374C5.96542 11.0378 5.62242 11.1248 5.25924 11.2251C5.27942 11.3121 5.28614 11.379 5.30632 11.4459C5.41393 11.8541 5.52826 12.2623 5.63587 12.6638C5.7233 12.9917 5.65605 13.1924 5.37357 13.3664C4.72793 13.7545 4.21679 14.2697 3.82671 14.9054C3.65857 15.1797 3.45008 15.24 3.14071 15.1664C2.88514 15.0994 2.62957 15.0258 2.36727 14.9589C2.14533 14.8987 1.91666 14.8452 1.68127 14.785C1.58711 15.1463 1.49968 15.4875 1.3988 15.8556Z' fill='white'/%3E%3Cpath d='M16.4571 14.2429C16.3158 14.2095 16.1141 14.1559 15.9056 14.1024C15.3877 13.9686 14.8766 13.8281 14.3587 13.6875C13.9283 13.5671 13.787 13.3262 13.9014 12.8979C14.0157 12.4496 14.13 12.008 14.2578 11.5664C14.2982 11.4191 14.2713 11.3388 14.1569 11.2318C13.7601 10.8638 13.3835 10.4823 13.0136 10.0942C12.9194 9.99387 12.8455 9.95372 12.7177 9.99387C12.2603 10.121 11.7963 10.2415 11.3322 10.3619C10.9152 10.469 10.6731 10.3284 10.5588 9.91358C10.3772 9.26451 10.2023 8.62213 10.0342 7.97307C9.93332 7.59165 10.0813 7.33069 10.4646 7.22363C10.922 7.09649 11.386 6.96935 11.8501 6.8556C11.9981 6.81545 12.0519 6.75523 12.0855 6.59464C12.1998 6.0794 12.3411 5.57085 12.4957 5.0623C12.5428 4.91509 12.5428 4.8281 12.4285 4.72104C12.0922 4.40654 11.7694 4.07197 11.4398 3.74409C11.1305 3.4296 11.1237 3.14187 11.4331 2.82737C11.9039 2.35228 12.3747 1.88388 12.8455 1.41548C13.1548 1.11437 13.4373 1.12106 13.7467 1.42217C14.0897 1.75674 14.426 2.09131 14.7622 2.43258C14.8497 2.52626 14.9236 2.54633 15.0514 2.48611C15.5693 2.24522 16.1141 2.09801 16.679 2.05786C16.8135 2.04448 16.8471 1.97756 16.874 1.8705C16.9951 1.40879 17.1162 0.953775 17.2439 0.492067C17.365 0.0705085 17.6071 -0.0767026 18.0376 0.0370514C18.6832 0.204337 19.3289 0.378313 19.9678 0.55229C20.3713 0.659353 20.5193 0.913626 20.4117 1.30842C20.2906 1.77013 20.1695 2.23183 20.0418 2.68685C20.0014 2.82068 20.035 2.90098 20.1426 3.00135C20.5394 3.36937 20.9228 3.74409 21.286 4.13889C21.3936 4.25933 21.4743 4.27941 21.6222 4.23926C22.0594 4.11212 22.4966 3.99837 22.9404 3.88461C23.3978 3.76417 23.6399 3.90469 23.7677 4.35301C23.9358 4.96862 24.104 5.58423 24.2721 6.20653C24.3932 6.67493 24.2586 6.90913 23.7811 7.03627C23.3373 7.15671 22.8866 7.27716 22.4428 7.39091C22.3284 7.41768 22.2612 7.45783 22.2477 7.60504C22.2006 8.15373 22.0661 8.68236 21.8307 9.17752C21.7568 9.32473 21.7904 9.41172 21.9047 9.51878C22.241 9.83997 22.5638 10.1678 22.8866 10.4957C23.196 10.8102 23.2027 11.098 22.8866 11.4125C22.4226 11.8809 21.9585 12.3426 21.4877 12.8043C21.1716 13.1121 20.8824 13.1121 20.5663 12.8043C20.2301 12.4764 19.8938 12.1485 19.571 11.8072C19.4634 11.7002 19.3759 11.6868 19.2414 11.747C18.737 11.9812 18.2124 12.1217 17.6609 12.1619C17.5264 12.1753 17.4793 12.2355 17.4457 12.3559C17.3247 12.8243 17.1969 13.2927 17.0691 13.7544C16.9816 14.0756 16.7866 14.2362 16.4571 14.2429ZM20.9631 11.7069C21.2389 11.4325 21.5012 11.1716 21.7769 10.8972C21.4608 10.5894 21.1178 10.2548 20.7816 9.91358C20.5193 9.65261 20.4789 9.45187 20.6538 9.13737C20.9901 8.52176 21.1716 7.87269 21.1985 7.1701C21.2187 6.68162 21.3196 6.58125 21.8106 6.45412C22.241 6.34036 22.6714 6.22661 23.1288 6.09947C23.0279 5.73813 22.9337 5.38349 22.8396 5.01546C22.3822 5.13591 21.9518 5.24966 21.5214 5.37011C21.0237 5.50393 20.8757 5.4504 20.6067 5.01546C20.2704 4.48015 19.8467 4.04521 19.3087 3.71064C18.8177 3.40283 18.7774 3.28239 18.932 2.72031C19.0464 2.30544 19.154 1.89726 19.2683 1.46232C18.8917 1.36195 18.542 1.26827 18.1788 1.17459C18.1048 1.44225 18.0376 1.67645 17.977 1.90396C17.9098 2.14485 17.8492 2.38574 17.782 2.62663C17.6946 2.92774 17.5466 3.06826 17.2574 3.07495C16.484 3.10172 15.7576 3.27569 15.0783 3.65711C14.8429 3.79093 14.6075 3.74409 14.4058 3.56343C14.3184 3.48313 14.2376 3.39614 14.1569 3.31584C13.8745 3.0348 13.5987 2.75376 13.3566 2.51287C13.0741 2.79391 12.8186 3.04819 12.5495 3.31584C12.8522 3.61696 13.1817 3.93814 13.5113 4.26602C13.8207 4.57383 13.8543 4.74781 13.6525 5.11583C13.3163 5.72475 13.1548 6.37382 13.1212 7.06303C13.101 7.50467 12.9867 7.6385 12.563 7.75225C12.1191 7.87269 11.6685 7.98645 11.1977 8.11359C11.2986 8.48161 11.386 8.82957 11.4869 9.19759C11.9442 9.07715 12.3747 8.9634 12.8051 8.84964C13.3028 8.71581 13.4575 8.76934 13.7265 9.20429C14.0628 9.74629 14.4999 10.1812 15.0447 10.5225C15.502 10.8102 15.5491 10.9507 15.4079 11.4727C15.2935 11.8942 15.1792 12.3158 15.0649 12.7574C15.4415 12.8578 15.7912 12.9448 16.1544 13.0452C16.2956 12.5366 16.4167 12.0615 16.5512 11.5931C16.6454 11.2719 16.7933 11.1515 17.1229 11.1381C17.856 11.1113 18.5487 10.9441 19.1943 10.5894C19.5239 10.4087 19.7189 10.4489 19.9947 10.7232C20.3242 11.0578 20.6538 11.3991 20.9631 11.7069Z' fill='white'/%3E%3Cpath d='M7.35757 13.9618C8.95824 13.9551 10.2697 15.2533 10.2764 16.8458C10.2832 18.4451 8.95824 19.7633 7.35757 19.7566C5.7569 19.7499 4.45215 18.4451 4.45215 16.8592C4.45215 15.2667 5.7569 13.9685 7.35757 13.9618ZM9.20036 16.8525C9.19364 15.8555 8.35967 15.0325 7.3643 15.0391C6.36219 15.0458 5.53496 15.8689 5.53496 16.8659C5.53496 17.8696 6.3891 18.7128 7.38447 18.6927C8.3933 18.6659 9.20709 17.8429 9.20036 16.8525Z' fill='white'/%3E%3Cpath d='M14.2447 7.12334C14.2379 5.53747 15.5628 4.21926 17.1702 4.21926C18.7507 4.21257 20.0757 5.54416 20.0689 7.12334C20.0622 8.7159 18.7306 10.0274 17.1299 10.0207C15.5561 10.0073 14.2514 8.70252 14.2447 7.12334ZM17.1433 8.94341C18.1589 8.94341 18.9928 8.12036 18.9928 7.11665C18.9928 6.11963 18.1656 5.28989 17.1702 5.28989C16.1547 5.28989 15.3207 6.11294 15.3275 7.11665C15.3275 8.12036 16.148 8.93672 17.1433 8.94341Z' fill='white'/%3E%3C/svg%3E%0A") no-repeat center
}

.content {
    min-height: 100%;
    padding: 40px;
    width: calc(100% - 240px);
    overflow: hidden;
    margin-left: 240px
}

@media (max-width: 1070px) {
    .content {
        padding: 20px 10px;
        width: calc(100% - 210px);
        margin-left: 210px
    }
}

.title {
    font-size: 24px;
    line-height: 28px
}

select {
    color: #000000;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background: url(../img/select.svg) no-repeat 95% 50% #fff;
    border: 1px solid #DEE4F2;
    box-sizing: border-box;
    border-radius: 3px;
    padding: 0px 10px;
    width: 244px;
    height: 30px
}

@media (max-width: 1170px) {
    select {
        width: 200px
    }
}

.status {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex
}

.status span {
    border-radius: 50px;
    padding: 3px 8px;
    display: inline-block;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.status__inwork span {
    background: #FF6240
}

.status__assept span {
    background: #FF9900
}

.status__init span {
    background: #CA88FE
}

.ts__table__item.itog {
    background: #F4F7FC;
    border-radius: 0px 0px 5px 5px
}

.ts__header {
    background: #FFFFFF;
    border-radius: 5px;
    padding: 16px 10px;
    margin-bottom: 20px
}

.ts__header select {
    margin-left: 20px
}

.ts__vertical-view {
    width: 22px;
    position: relative
}

.ts__vertical-view span {
    background: #DEE4F2;
    border-radius: 5px;
    height: 22px;
    width: 4px;
    display: block;
    margin: 0 auto
}

.ts__vertical-view span:after,
.ts__vertical-view span:before {
    content: '';
    background: #DEE4F2;
    border-radius: 5px;
    height: 22px;
    width: 4px;
    display: block;
    position: absolute
}

.ts__vertical-view span:after {
    left: 0px
}

.ts__vertical-view span:before {
    right: 0px
}

.ts__vertical-view:hover span,
.ts__vertical-view.active span {
    background: #6091F8
}

.ts__vertical-view:hover span:after,
.ts__vertical-view:hover span:before,
.ts__vertical-view.active span:after,
.ts__vertical-view.active span:before {
    background: #6091F8
}

.ts__horizontal-view {
    width: 22px;
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 14px
}

.ts__horizontal-view span {
    background: #DEE4F2;
    border-radius: 5px;
    width: 22px;
    height: 4px;
    display: block;
    margin: 0 auto
}

.ts__horizontal-view span:after,
.ts__horizontal-view span:before {
    content: '';
    background: #DEE4F2;
    border-radius: 5px;
    width: 22px;
    height: 4px;
    display: block;
    position: absolute
}

.ts__horizontal-view span:after {
    top: 0px
}

.ts__horizontal-view span:before {
    bottom: 0px
}

.ts__horizontal-view:hover span,
.ts__horizontal-view.active span {
    background: #6091F8
}

.ts__horizontal-view:hover span:after,
.ts__horizontal-view:hover span:before,
.ts__horizontal-view.active span:after,
.ts__horizontal-view.active span:before {
    background: #6091F8
}

.ts__view {
    margin-left: 28px
}

.ts__filter {
    padding: 12px 10px 15px 10px;
    background: #FFFFFF;
    border-radius: 5px;
    margin: 20px 0px
}

.ts__filter__title {
    margin-right: 7px;
    height: 28px;
    line-height: 28px
}

.ts__filter__col {
    margin-right: 20px
}

.ts__filter__col a {
    color: #6091F8;
    text-decoration: underline
}

.ts__filter__col a:hover {
    text-decoration: none
}

.ts__filter__col span {
    display: block;
    color: #706F6F;
    margin-bottom: 4px
}

.ts__list {
    background: #FFFFFF;
    border-radius: 5px;
    padding-bottom: 17px
}

.ts__list .ts__table {
    border-collapse: collapse;
    width: 100%;
    text-align: left;
    display: block
}

.ts__list .ts__table a {
    color: #000000;
    text-decoration: none;
    transition: all .2s;
    position: relative
}

.ts__list .ts__table a:hover {
    background: #FFFFFF;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.12)
}

.ts__list .ts__table a:hover>div {
    background: #fff !important
}

.ts__list .ts__table a:hover::after {
    content: "";
    position: absolute;
    left: 0px;
    height: 100%;
    border-left: 2px solid #6091F8;
    width: 2px
}

.ts__list .ts__table a:active {
    background: #F3F6FC;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.12)
}

.ts__list .ts__table a:active>div {
    background: #F3F6FC !important
}

.ts__list .ts__table a:active::after {
    content: "";
    position: absolute;
    left: 0px;
    height: 100%;
    border-left: 2px solid #6091F8;
    width: 2px
}

.ts__list .ts__table-row {
    display: flex
}

.ts__list .ts__table__item:first-child .ts__table-row {
    display: flex;
    width: 100%
}

.ts__list .ts__table__item:first-child .ts__table-row .ts__table-col {
    color: #6091F8;
    font-style: normal;
    font-weight: normal;
    padding: 20px 10px 11px 10px;
    display: block;
    width: 100%
}

.ts__list .ts__table__item:first-child .ts__table-row .ts__table-col:first-child {
    padding-left: 20px;
    max-width: 30%
}

@media (max-width: 1070px) {
    .ts__list .ts__table__item:first-child .ts__table-row .ts__table-col:first-child {
        max-width: 140px;
        width: 25%;
        min-width: 140px
    }
}

.ts__list .ts__table__item:first-child .ts__table-row .ts__table-col:nth-child(2) {
    max-width: 25%
}

.ts__list .ts__table__item:first-child .ts__table-row .ts__table-col:nth-child(3) {
    max-width: 30%
}

.ts__list .ts__table__item:first-child .ts__table-row .ts__table-col:nth-child(4) {
    max-width: 25%
}

.ts__list .ts__table__item {
    border-bottom: 1px solid #DEE5F2
}

.ts__list .ts__table__item .ts__table-row:not(:first-child) .ts__table-col {
    background: #F3F6FC;
    border-bottom: 1px solid #DEE5F2
}

.ts__list .ts__table__item:last-child {
    border-bottom: none
}

.ts__list .ts__table__item .ts__table-row:last-child .ts__table-col {
    border-bottom: none !important
}

.ts__list .ts__table-col {
    padding: 9px 10px;
    width: 100%
}

.ts__list .ts__table-col:first-child {
    padding-left: 20px;
    max-width: 30%
}

@media (max-width: 1070px) {
    .ts__list .ts__table-col:first-child {
        max-width: 140px;
        width: 140px;
        min-width: 140px
    }
}

.ts__list .ts__table-col:nth-child(2) {
    max-width: 25%
}

.ts__list .ts__table-col:nth-child(3) {
    max-width: 30%
}

.ts__list .ts__table-col:nth-child(4) {
    max-width: 25%
}

.ts__list .ts__table-col:last-child {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.task__col {
    background: #F9FAFD;
    border-radius: 5px;
    margin-right: 10px;
    max-width: 180px;
    width: 100%;
    overflow: hidden;
    min-height: calc(100vh - 325px);
    height: 100%;
    overflow-y: auto
}

.task__col__header {
    padding: 21px 10px 15px 10px;
    border-bottom: 3px solid #f2f2f2
}

.task__col__header span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    color: #6091F8
}

.task__col__summ {
    font-size: 14px;
    line-height: 16px;
    margin: 10px 0px 0px 0px;
    color: #000000
}

.task__col__item {
    display: block;
    border-radius: 5px;
    background: #FFFFFF;
    border: 1px solid #DEE4F2;
    border-radius: 5px;
    margin: 10px;
    padding: 9px 10px 18px 10px;
    text-decoration: none;
    line-height: 140%;
    transition: all .3s
}

.task__col__item:hover {
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.12)
}

.task__col__title {
    font-weight: 500;
    color: #000000
}

.task__init .task__col__header {
    border-bottom: 3px solid #CA88FE
}

.task__init .task__col__item {
    border-left: 3px solid #CA88FE
}

.task__submitted .task__col__header {
    border-bottom: 3px solid #56DB5B
}

.task__submitted .task__col__item {
    border-left: 3px solid #56DB5B
}

.task__inwork .task__col__header {
    border-bottom: 3px solid #FF6240
}

.task__inwork .task__col__item {
    border-left: 3px solid #FF6240
}

.task__completed .task__col__header {
    border-bottom: 3px solid #EEE624
}

.task__completed .task__col__item {
    border-left: 3px solid #EEE624
}

.task__testing .task__col__header {
    border-bottom: 3px solid #E92E5A
}

.task__testing .task__col__item {
    border-left: 3px solid #E92E5A
}

.task__client .task__col__header {
    border-bottom: 3px solid #6091F8
}

.task__client .task__col__item {
    border-left: 3px solid #6091F8
}

.task__customer-accepted .task__col__header {
    border-bottom: 3px solid #5318FB
}

.task__customer-accepted .task__col__item {
    border-left: 3px solid #5318FB
}

.task__akt-signed .task__col__header {
    border-bottom: 3px solid #FF8EC4
}

.task__akt-signed .task__col__item {
    border-left: 3px solid #FF8EC4
}

.task__approved .task__col__header {
    border-bottom: 3px solid #FF9900
}

.task__approved .task__col__item {
    border-left: 3px solid #FF9900
}

.task__col::-webkit-scrollbar {
    width: 0
}

.chat-textarea::-webkit-scrollbar {
    width: 0
}

.slick-next {
    right: -60px;
    width: 93px;
    height: 93px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: all 0.3s;
    z-index: 2;
    position: fixed
}

@media (max-width: 1070px) {
    .slick-next {
        right: -70px
    }
}

.slick-next:hover {
    background: #08235C
}

.slick-next:before {
    content: '→';
    left: 10px;
    position: absolute;
    top: 40%
}

.slick-prev {
    left: 180px;
    width: 93px;
    height: 93px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: all 0.3s;
    z-index: 2
}

@media (max-width: 1070px) {
    .slick-prev {
        left: -70px
    }
}

.slick-prev:hover {
    background: #08235C
}

.slick-prev:before {
    content: '←';
    right: 10px;
    position: absolute;
    top: 40%
}

.c__row {
    display: flex;
    margin: 0px -10px 20px -10px
}

.c__col-12 {
    width: 100%;
    margin: 0px 10px
}

.c__col-6 {
    width: 50%;
    margin: 0px 10px
}

.c__col-4 {
    width: 33.33%;
    margin: 0px 10px
}

.c__col-8 {
    width: 66.66%;
    margin: 0px 10px
}

.task__content .c__row>div {
    background: #fff;
    padding: 15px 10px;
    border-radius: 5px
}

.task__content .clients-pays {
    padding: 15px
}

.task__content h1 {
    font-weight: normal;
    font-size: 24px;
    line-height: 28px;
    color: #000000;
    margin: 5px 0px 8px 0px;
    display: flex;
    align-items: center
}

.task__content h1 .task-edit {
    content: '';
    background: url(../img/edit.svg) no-repeat;
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-left: 11px
}

.to-back {
    font-size: 14px;
    line-height: 14px;
    color: #706F6F;
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 5px;
    display: block;
    width: 100%
}

.to-back:before {
    content: '';
    background: url(../img/to-back.svg) no-repeat;
    width: 8px;
    height: 7px;
    margin-right: 8px;
    position: relative;
    top: -1px;
    display: inline-block
}

.task-parent {
    font-size: 16px;
    line-height: 19px;
    color: #706F6F
}

.task-parent a {
    color: #706F6F;
    border-bottom: 1px solid;
    text-decoration: none
}

.task-status {
    background: #f2f2f2;
    border-radius: 50px;
    font-size: 14px;
    line-height: 14px;
    color: #FFFFFF;
    margin: 10px 0px 15px 0px;
    height: 20px;
    display: inline-flex;
    padding: 0px 10px;
    align-items: center
}

.task-status.task__approved {
    background: #FF9900
}

.task-status.task__approved:before {
    content: '';
    display: inline-block;
    background: url(../img/gal.svg) no-repeat center #F27400;
    border-radius: 50px;
    margin-left: -10px;
    width: 21px;
    margin-right: 5px;
    height: 20px
}

.task-money {
    margin: 15px 0px 5px 0px
}

.task-money__row {
    margin-right: 20px
}

.task-money__row>span {
    display: inline-block;
    color: #706F6F;
    margin-bottom: 4px
}

.task-money__row input {
    background: #FFFFFF;
    border: 1px solid #DEE4F2;
    border-radius: 3px;
    width: 200px;
    height: 30px;
    padding-left: 10px;
    padding-right: 50px
}

.task-money__row .task-money__input {
    position: relative;
    width: 200px;
    margin-bottom: 7px
}

.task-money__row .task-money__input>span {
    font-size: 14px;
    line-height: 16px;
    color: #000000;
    position: absolute;
    right: 10px;
    top: 7px
}

.task-money__row .task-money-progress {
    width: 200px;
    position: relative;
    font-size: 12px;
    background: #C7EABE;
    border-radius: 50px;
    color: #FFFFFF;
    margin-top: 7px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    overflow: hidden
}

.task-money__row .task-money-progress span.progress-col {
    position: absolute;
    background: #38C947;
    display: block;
    height: 20px;
    top: 0px;
    left: 0px
}

.task-money__row .task-money-progress span.task-money-progress-text {
    z-index: 2;
    position: relative
}

.task-h2 {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
    margin-bottom: 10px
}

.task-h2 span {
    color: #706F6F
}

.task-h3 {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 8px;
    color: #000000
}

textarea {
    width: 100%;
    height: 90px;
    background: #FFFFFF;
    border: 1px solid #DEE4F2;
    border-radius: 3px;
    margin-bottom: 10px;
    padding: 10px;
    resize: vertical
}

.file-list {
    margin-bottom: 10px
}

.file-list .file-item {
    font-size: 14px;
    line-height: 16px;
    color: #706F6F;
    margin: 2px 0px;
    text-decoration: none
}

.file-list .file-item:before {
    content: '';
    background: url(../img/attach.svg) no-repeat;
    width: 9px;
    height: 10px;
    margin-right: 7px;
    display: inline-block
}

.file-list__item {
    display: block;
    margin-bottom: 4px
}

.file-list__item a:first-child {
    margin-right: 8px
}

.file-list__item a.file-delete {
    display: inline-block;
    margin-left: 8px;
    opacity: 0;
    color: #9FBAF4;
    visibility: hidden
}

.file-list__item:hover a {
    opacity: 1;
    visibility: visible
}

.file-attach input {
    position: absolute;
    opacity: 0;
    visibility: hidden
}

.file-attach span {
    font-size: 12px;
    line-height: 14px;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    color: #6091F8;
    display: inline-block;
    cursor: pointer
}

.task-client__head {
    border-bottom: 1px solid #DEE5F2;
    padding: 0px 10px 10px 10px;
    margin: 0px -10px
}

.task-client__head a {
    display: table;
    font-size: 16px;
    line-height: 19px;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    color: #6091F8
}

.task-client__head span {
    display: block;
    font-size: 14px;
    line-height: 16px;
    color: #706F6F;
    margin-top: 6px
}

.task-client__row {
    display: flex;
    margin-top: 10px
}

.task-client__row::before {
    content: '';
    background: url(../img/user.svg) no-repeat;
    width: 10px;
    height: 11px;
    display: block;
    margin-right: 10px;
    margin-top: 1px
}

.task__executor {
    background: #FFFFFF;
    border: 1px solid #DEE4F2;
    border-radius: 3px;
    padding: 9px;
    color: #706F6F;
    margin-bottom: 5px
}

.task__executor:last-child {
    margin-bottom: 0px
}

.task__executor a {
    font-size: 12px;
    line-height: 14px;
    color: #6091F8;
    display: table;
    margin-top: 10px
}

.task__executor__row {
    margin-bottom: 4px
}

.task__executor__row span {
    display: flex
}

.task__executor__row .task__executor__user::before {
    content: '';
    background: url(../img/user.svg) no-repeat;
    width: 10px;
    height: 11px;
    display: block;
    margin-right: 10px;
    margin-top: 1px
}

.task__executor__assept {
    background: url(../img/white-gal.svg) no-repeat center #38C947;
    width: 30px;
    height: 30px;
    border-radius: 3px;
    margin-top: 0px !important
}

.task__executor__cancel {
    background: url(../img/delete-ex.svg) no-repeat center red;
    background-size: 9px 9px;
    width: 30px;
    height: 30px;
    border-radius: 3px;
    margin-top: 0px !important;
    margin-left: 5px
}

.task__executor__add input {
    width: calc(100% - 244px - 85px)
}

@media (max-width: 1200px) {
    .task__executor__add input {
        width: calc(35% - 40px)
    }
}

@media (max-width: 1200px) {
    .task__executor__add select {
        width: calc(65% - 35px)
    }
}

.delete-excutor {
    width: 13px;
    height: 13px;
    background: url(../img/delete-ex.svg) no-repeat center red;
    margin-top: 0px !important;
    border-radius: 3px;
    margin-left: 5px
}

.task__send {
    max-width: 243px
}

.task__send input {
    width: 100%;
    margin-bottom: 6px
}

.task__send .btn {
    width: 100%;
    font-size: 14px;
    line-height: 16px;
    padding: 10px 14px;
    cursor: pointer
}

.task-docs:not(:last-child) {
    border-bottom: 1px solid #DEE5F2;
    margin-bottom: 10px;
    padding-bottom: 10px;
    margin-left: -10px;
    margin-right: -10px;
    padding: 0px 10px 10px 10px
}

.task-docs__list .file-item {
    font-size: 14px;
    line-height: 16px;
    color: #706F6F;
    margin: 2px 0px;
    text-decoration: none
}

.task-docs__list .file-item:before {
    content: '';
    background: url(../img/doc.svg) no-repeat;
    width: 10px;
    height: 13px;
    margin-right: 7px;
    display: inline-block;
    top: 2px;
    position: relative
}

.task-docs__control {
    margin-top: 10px
}

.task-docs__control .btn {
    font-size: 14px;
    line-height: 16px;
    margin-right: 10px
}

.clients-pays__row {
    border-top: 1px solid #DEE5F2;
    margin-top: 3px;
    padding-top: 3px
}

.clients-pays__row:first-child {
    margin-top: 0px;
    padding-top: 0px;
    border-top: 0px
}

.clients-pays input {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 5px
}

.clients-pays__alert {
    font-size: 12px;
    line-height: 14px;
    color: #706F6F;
    margin-bottom: 7px
}

.task-act {
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid #DEE4F2;
    border-radius: 3px;
    border-collapse: collapse;
    font-size: 14px;
    line-height: 16px
}

.task-act tr td {
    padding: 4px 10px 4px 10px;
    height: 38px;
    border-top: 1px solid #DEE4F2
}

.task-act tr td:first-child {
    color: #C185AD
}

.task-act tr th {
    padding: 13px 10px 10px 10px;
    color: #6091F8;
    font-weight: 500
}

.task-act .skan-file {
    display: inline-block
}

.task-act .skan-file__item {
    background: url(../img/scan-white.svg) no-repeat 10px 8px #6091F8;
    border-radius: 3px;
    padding-left: 30px;
    display: inline-block;
    font-size: 16px;
    text-transform: uppercase;
    color: #FFFFFF;
    width: 85px;
    line-height: 30px;
    height: 30px;
    margin-left: 14px;
    margin-right: 8px;
    transition: all .2s;
    text-decoration: none
}

.task-act .skan-file__item:hover {
    opacity: 0.85
}

.add-task {
    background: #fff;
    max-width: 360px;
    border-radius: 5px;
    padding: 15px 10px
}

.field-row {
    margin-bottom: 10px
}

.field-row label {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 16px;
    color: #706F6F
}

.field-row select {
    width: 200px
}

.field-row input {
    width: 200px
}

.field-row textarea {
    margin-bottom: 0px
}

.add-plus {
    background: url(../img/plus.svg) no-repeat center #6BC25D;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-left: 9px;
    cursor: pointer
}

.clients,
.pays {
    background: #FFFFFF;
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 16px
}

.clients table,
.pays table {
    width: 100%;
    border-collapse: collapse
}

.clients table tr td,
.pays table tr td {
    padding: 10px;
    border-top: 1px solid #DEE4F2
}

.clients table tr td span,
.pays table tr td span {
    display: block;
    color: #706F6F;
    font-size: 12px
}

.clients table tr th,
.pays table tr th {
    padding: 13px 10px 10px 10px;
    color: #6091F8
}

.tabs {
    background: #FFFFFF;
    border-radius: 5px;
    height: 49px;
    display: flex;
    margin: 20px 0px
}

.tabs a {
    font-size: 16px;
    line-height: 19px;
    color: #000000;
    padding: 15px 11px;
    text-decoration: none
}

.tabs a.active {
    background: #6091F8;
    border-radius: 5px;
    color: #fff
}

.client-info__row {
    margin-bottom: 20px
}

.client-info__row a.delete {
    display: inline-block;
    margin-left: 8px;
    color: #9FBAF4;
    font-size: 14px
}

.client-info__row a {
    font-size: 14px;
    line-height: 14px;
    color: #6091F8;
    display: table
}

.client-info__row:last-child {
    margin-bottom: 0px
}

.client-info__row span {
    color: #706F6F;
    display: block;
    margin-bottom: 5px
}

.client-info input[type=password] {
    color: #6091F8;
    border: none;
    padding: 0px;
    letter-spacing: 0.4px;
    font-size: 18px
}

.content-white {
    background: #FFFFFF;
    border-radius: 5px;
    margin: 20px 0px;
    padding: 15px 10px
}

.mb-0 {
    margin-bottom: 0px
}

.mb-10 {
    margin-bottom: 10px
}

.contact-person__item {
    width: 32%;
    background: #FFFFFF;
    border: 1px solid #DEE4F2;
    border-radius: 3px;
    margin-right: 2%;
    margin-bottom: 15px;
    border-radius: 5px 5px 0px 0px
}

.contact-person__item .delete {
    font-size: 12px;
    color: #E92E5A;
    margin: 0px 10px 15px 10px;
    display: table
}

.contact-person__item:nth-child(3n) {
    margin-right: 0px
}

.contact-person__name {
    background: url(../img/user-white.svg) no-repeat 10px 12px #6091F8;
    border-radius: 5px 5px 0px 0px;
    color: #FFFFFF;
    padding: 10px 10px 8px 28px
}

.contact-person__dolzh {
    color: #706F6F;
    padding: 7px 10px 8px 28px
}

.contact-person__row {
    border-top: 1px solid #DEE5F2;
    padding: 10px
}

.contact-person__phones>div {
    line-height: 100%;
    margin-bottom: 5px
}

.contact-person__phones>div:last-child {
    margin-bottom: 0px
}

.contact-person__phones>div::before {
    content: '';
    display: inline-block;
    background: url(../img/phone.svg) no-repeat;
    width: 10px;
    height: 10px;
    margin-right: 8px
}

.contact-person__phones>div span {
    display: inline-block;
    margin-left: 15px
}

.contact-person__mails>div {
    line-height: 100%;
    margin-bottom: 5px
}

.contact-person__mails>div:last-child {
    margin-bottom: 0px
}

.contact-person__mails>div::before {
    content: '';
    display: inline-block;
    background: url(../img/mail.svg) no-repeat;
    width: 10px;
    height: 10px;
    margin-right: 8px
}

.team {
    background: #FFFFFF;
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 16px
}

.team table {
    width: 100%;
    border-collapse: collapse
}

.team table tr th {
    padding: 13px 10px 10px 10px;
    color: #6091F8
}

.team table tr td {
    padding: 10px;
    border-top: 1px solid #DEE4F2;
    position: relative;
    height: 36px
}

.team table tr td:first-child {
    padding-left: 55px
}

.team table tr td:first-child::before {
    content: '';
    background: url(../img/user-white.svg) no-repeat center #6091F8;
    width: 28px;
    height: 28px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    border-radius: 50%;
    position: absolute;
    top: 4px;
    left: 14px
}

.remodal {
    text-align: left;
    box-shadow: 0px 4px 12px rgba(8, 35, 92, 0.25);
    border-radius: 5px
}

.remodal .title {
    margin-bottom: 15px
}

.remodal-alert {
    max-width: 470px
}

.remodal-alert p {
    max-width: 270px;
    font-size: 14px;
    line-height: 16px;
    color: #000000;
    margin: 15px auto;
    margin-bottom: 24px
}

.center-text {
    text-align: center
}

.center-text .btn {
    margin: 0 auto;
    padding: 13px 24px
}

.center-text .btns-control {
    justify-content: center
}

.center-text .btns-control .btn {
    margin: 0px 5px
}

.red-text {
    color: #FF6240
}

.c__table__row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    width: 100%;
    text-decoration: none;
    position: relative;
    transition: all .3s
}

.c__table__row.c__table__row__link {
    cursor: pointer
}

.c__table__row:first-child .c__table__col {
    padding: 15px 10px 10px 10px;
    color: #6091F8;
    border-top: none;
    font-weight: 500
}

.c__table__row .c__table__col {
    padding: 10px;
    border-top: 1px solid #DEE4F2;
    color: #000
}

.c__table__row .c__table__col span {
    display: block;
    color: #706F6F;
    font-size: 12px
}

.c__table__row:not(:first-child):hover {
    background: #FFFFFF;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.12)
}

.c__table__row:not(:first-child):hover>div {
    background: #fff !important
}

.c__table__row:not(:first-child):hover::after {
    content: "";
    position: absolute;
    left: 0px;
    height: 100%;
    border-left: 2px solid #6091F8;
    width: 2px
}

.c__table__row:not(:first-child):active {
    background: #F3F6FC;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.12)
}

.c__table__row:not(:first-child):active>div {
    background: #F3F6FC !important
}

.c__table__row:not(:first-child):active::after {
    content: "";
    position: absolute;
    left: 0px;
    height: 100%;
    border-left: 2px solid #6091F8;
    width: 2px
}

.team .c__table__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    width: 100%;
    text-decoration: none;
    position: relative;
    transition: all .3s
}

.team .c__table__row:not(:first-child) .c__table__col:first-child {
    padding-left: 55px
}

.team .c__table__row:not(:first-child) .c__table__col:first-child::before {
    content: '';
    background: url(../img/user-white.svg) no-repeat center #6091F8;
    width: 28px;
    height: 28px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    border-radius: 50%;
    position: absolute;
    top: 4px;
    left: 14px
}

.auth__content {
    background: linear-gradient(180deg, #618AE0 0%, #C185AD 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: relative
}

.auth__content::after {
    content: '';
    background: url(../img/auth-decor-1.png) no-repeat;
    left: -20px;
    top: 100px;
    display: block;
    width: 70px;
    height: 300px;
    position: absolute
}

.auth__content::before {
    content: '';
    background: url(../img/auth-decor-2.png) no-repeat;
    right: 0px;
    bottom: 0px;
    display: block;
    width: 235px;
    height: 164px;
    position: absolute
}

.auth__form {
    width: 340px;
    height: 355px;
    background: #FFFFFF;
    border-radius: 5px;
    padding: 50px 45px 64px 45px
}

.auth__form .btn.btn-fillblue {
    width: 100%;
    padding: 18px 20px
}

.auth__form input {
    width: 100%
}

.auth__logo {
    display: flex;
    justify-content: center;
    margin-bottom: 42px
}

.auth__logo img {
    width: 230px
}

.remodal[data-remodal-id=add-contact-client] {
    max-width: 375px
}

.field-row input.dop-input {
    margin-left: 10px;
    width: 75px
}

.delete-form-row {
    background: url(../img/red-close.svg) no-repeat;
    width: 9px;
    height: 9px;
    margin-left: 10px
}

.form-row__cancel {
    margin-left: 14px;
    border-bottom: 1px solid;
    text-decoration: none;
    color: #ABB7D0;
    line-height: 90%
}

.form-row-add {
    color: #6091F8;
    border-bottom: 1px solid;
    text-decoration: none;
    line-height: 95%;
    display: table;
    margin-top: -5px
}

.field-row__btns {
    margin-top: 15px
}

.contact-person {
    background: url(../img/edit-blue.svg) no-repeat center;
    width: 12px;
    height: 12px
}

.ts__plan-list {
    margin-top: 36px
}

.ts__plan-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px
}

.ts__plan-item:last-child {
    margin-bottom: 0px
}

.ts__plan-name {
    width: 110px;
    margin-right: 15px
}

.ts__plan-graph-content {
    max-width: calc(100% - 220px);
    margin-right: 15px;
    width: 100%
}

.ts__plan-graph {
    height: 35px;
    display: flex;
    position: relative;
    width: 100%
}

.ts__plan-graph.have-plan {
    background: #F3F6FC
}

.ts__plan-summ {
    font-size: 12px;
    color: #ABB7D0;
    max-width: 85px
}

.ts__plan-min {
    height: 35px;
    font-size: 12px;
    color: #ABB7D0;
    display: flex;
    padding: 0px 10px;
    align-items: center
}

.ts__plan-min:after {
    content: '';
    display: block;
    width: 4px;
    height: 35px;
    position: absolute;
    z-index: 2;
    left: 0px;
    background: #E92E5A
}

.ts__plan-middle {
    height: 35px;
    font-size: 12px;
    color: #ABB7D0;
    display: flex;
    padding: 0px 10px;
    align-items: center;
    position: relative
}

.ts__plan-middle:after {
    content: '';
    display: block;
    width: 4px;
    height: 35px;
    position: absolute;
    z-index: 2;
    left: 0px;
    background: #FFC700
}

.ts__plan-good {
    height: 35px;
    font-size: 12px;
    color: #ABB7D0;
    padding: 0px 10px;
    display: flex;
    align-items: center;
    position: relative
}

.ts__plan-good:after {
    content: '';
    display: block;
    width: 4px;
    height: 35px;
    position: absolute;
    z-index: 2;
    left: 0px;
    background: #25B934
}

.ts__plan-fact {
    height: 35px;
    padding: 0px 10px;
    display: flex;
    align-items: center;
    position: relative;
    background: #DBE6FF
}

.ts__plan-fact:after {
    content: '';
    display: block;
    width: 4px;
    height: 35px;
    position: absolute;
    z-index: 2;
    left: 0px;
    background: #6091F8
}

.ts__real-summ {
    position: absolute;
    left: 0px;
    height: 100%;
    top: 0px;
    padding: 10px 17px
}

.ts__report-list-users {
    margin: 16px 0px
}

.ts__report-user-item {
    font-size: 14px;
    color: #000000;
    display: flex;
    align-items: center;
    margin-bottom: 10px
}

.ts__report-user-item span {
    width: 10px;
    height: 10px;
    margin-right: 7px;
    display: block
}

.pays span.pay-summ {
    font-size: 14px;
    line-height: 16px;
    color: #36B049
}

.pays p {
    font-size: 12px;
    line-height: 14px;
    margin: 0px;
    color: #706F6F
}

.pays a {
    text-decoration: none;
    border-bottom: 1px solid;
    color: #6091F8
}

.pays a:hover {
    border-bottom: 1px solid #fff
}

.pay-itog {
    margin-right: 27px;
    font-weight: 500;
    font-size: 18px
}

.pay-finall {
    font-weight: 500;
    font-size: 18px;
    color: #36B049
}

.c__table__row.itog {
    background: #F4F7FC;
    border-radius: 0px 0px 5px 5px;
    border-top: 1px solid #DEE4F2
}

.c__table__row.itog .c__table__col {
    border: none;
    padding: 10px 10px 15px 10px
}

.c__table__row.itog:hover::after {
    display: none
}

.c__table__row.itog:hover>div {
    background: none !important
}

.c__table__row.itog:hover {
    box-shadow: none
}

.content-white.debet .c__table {
    max-width: 710px;
    width: 100%;
    border: 1px solid #DEE4F2;
    border-radius: 5px
}

.content-white.debet .c__table .c__table__row {
    grid-template-columns: repeat(3, 1fr)
}

.content-white.debet .c__table .c__table__row:hover {
    box-shadow: none
}

.content-white.debet .debet-more {
    font-size: 12px;
    color: #706F6F
}

.content-white.debet .debet-more div {
    margin-bottom: 5px
}

.content-white.debet .debet-more div:last-child {
    margin-bottom: 0px
}

.content-white.debet .debet-more div:last-child {
    margin-bottom: 0px;
    margin-left: -5px
}

.content-white.debet .debet-more:last-child div {
    margin-bottom: 0px
}

.content-white.debet .c__table__row:not(:first-child):hover::after {
    display: none !important
}

.setting-row {
    max-width: 360px;
    background: #FFFFFF;
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 15px 10px
}

.btn-fillpink {
    background: #C185AD;
    color: #fff;
    height: 36px;
    font-size: 14px;
    padding: 10px 40px
}

.salaries {
    background: #FFFFFF;
    border: 1px solid #DEE4F2;
    border-radius: 5px;
    padding: 17px 10px
}

.salaries .c__table {
    background: #FFFFFF;
    border: 1px solid #DEE4F2;
    border-radius: 5px;
    max-width: 750px
}

.salaries .c__table .btn {
    margin: -7px 0px;
    background: #6091F8
}

.salaries .c__table .btn:hover {
    background: #4C74C7
}

.salaries {
    overflow: hidden
}

.salaries .c__table__row {
    grid-template-columns: repeat(2, 1fr)
}

.salaries .c__table__row:not(:first-child):hover::after {
    display: none
}

.salaries .c__table__row:not(:first-child):hover {
    box-shadow: none
}

.salaries .c__table__row:not(:first-child):hover>div {
    background: #EBF0FD !important
}

.ts__salaries-card {
    background: #FFFFFF;
    border-radius: 5px;
    padding: 15px 15px 20px 10px;
    margin-bottom: 20px
}

.ts__salaries-card .user-name {
    font-size: 20px;
    width: 64%
}

.ts__salaries-card .user-name span {
    font-size: 14px;
    margin-top: 8px;
    color: #ABB7D0;
    display: block
}

.ts__salaries-card .user-pay {
    font-size: 20px
}

.ts__salaries-card__content {
    width: 100%;
    display: flex;
    align-items: flex-start;
    max-width: 950px
}

.salaries-card {
    background: #FFFFFF;
    border: 1px solid #DEE4F2;
    border-radius: 5px;
    margin-bottom: 20px
}

.salaries-card input {
    padding: 0px 5px
}

.salaries-card.salaries-card__add {
    padding: 17px 0px
}

.salaries-card.salaries-card__add .salaries-card__body {
    background: #fff
}

.salaries-card.salaries-card__add .salaries-card__body .c__table__row .c__table__col {
    border: none
}

.salaries-card.salaries-card__add .salaries-card__body .c__table__row:first-child .c__table__col {
    padding: 2px 5px
}

.salaries-card.salaries-card__add .salaries-card__body .c__table__row:not(:first-child):hover {
    background: #FFFFFF;
    box-shadow: none
}

.salaries-card.salaries-card__add .salaries-card__body .c__table__row:not(:first-child):hover>div {
    background: none !important
}

.salaries-card__head {
    display: flex;
    padding: 8px 10px;
    justify-content: space-between;
    align-items: center;
    min-height: 46px;
    cursor: pointer
}

.salaries-card__name {
    font-weight: 500;
    font-size: 16px;
    color: #6091F8
}

.salaries-card__price {
    font-weight: 500;
    font-size: 14px;
    color: #6091F8;
    margin-right: 190px;
    width: calc(20% - 50px)
}

.salaries-card__price input {
    max-width: 72px;
    background: #FFFFFF;
    border: 1px solid #DEE4F2;
    border-radius: 3px;
    height: 30px;
    font-weight: 500;
    color: #6091F8;
    margin-right: 10px;
    padding: 5px
}

.salaries-card__body {
    background: #F3F6FC;
    border-radius: 0px;
    margin-left: 10px
}

.salaries-card__item {
    border-bottom: 1px solid #DEE5F2;
    max-width: 950px
}

.salaries-card__item .salaries__inline {
    padding-right: 15px
}

.salaries-card__item .salaries__inline .btn {
    background: #6091F8;
    margin-right: 13px;
    padding: 7px 14px
}

.salaries-card__item .salaries__inline .btn:hover {
    background: #4C74C7
}

.salaries-card__item .c__table__row .c__table__col {
    padding: 3px 5px;
    display: flex;
    align-items: center
}

.salaries-card__item:last-child {
    border-bottom: none
}

.salaries-card__item .c__table .c__table__row {
    grid-template-columns: repeat(5, 1fr);
    grid-template-columns: calc(35% - 50px) calc(25% - 50px) calc(20% - 50px) calc(20% - 50px) 200px
}

.salaries-card__item .c__table .c__table__row input {
    width: 100%
}

.salaries-card__item .c__table__row:first-child .c__table__col {
    color: #67779A;
    font-weight: 400;
    padding: 10px 5px
}

.salaries-card__item .c__table__row:not(:first-child):hover>div {
    background: #F3F6FC !important
}

.salaries-card__add-inputs {
    display: flex;
    justify-content: space-between
}

.salaries-card__add {
    padding: 15px 10px
}

.salaries-card__add button[type='submit'] {
    margin-bottom: 10px;
    font-size: 14px;
    color: #6091F8;
    background: none;
    text-decoration: none;
    border-bottom: 1px solid;
    padding: 0px;
    cursor: pointer
}

.salaries-card__add button[type='submit']:hover {
    border-bottom: 1px solid #fff
}

.salaries-card__add input:nth-last-child(2) {
    width: 75%
}

.salaries-card__add input:last-child {
    width: 23%
}

.client-must {
    font-size: 18px;
    color: #E92E5A
}

.client-tasks {
    background: #FFFFFF;
    border-radius: 5px;
    padding: 15px 10px
}

.client-tasks .ts__filter {
    padding: 0px;
    margin-top: 0px
}

.ts__list {
    margin-bottom: 20px
}

.ts__list .task-h2 {
    padding: 15px 15px 0px 20px
}

.ts__list.ts__list__clients {
    border: 1px solid #DEE4F2;
    border-radius: 5px;
    padding-bottom: 0px
}

.clients-pays {
    border: 1px solid #DEE4F2;
    border-radius: 5px;
    padding-bottom: 0px
}

.clients-pays .c__table__row {
    grid-template-columns: repeat(4, 1fr);
    grid-template-columns: 10% 18% 50% 22%
}

.clients-pays span.pay-summ {
    font-size: 14px;
    color: #36B049
}

.clients-pays a {
    color: #6091F8;
    text-decoration: none;
    border-bottom: 1px solid
}

.clients-pays a:hover {
    border-bottom: 1px solid transparent
}

.download {
    position: relative;
    font-size: 14px;
    color: #706F6F;
    text-decoration: none;
    border-bottom: 1px solid;
    margin-left: 15px;
    white-space: nowrap
}

.download:hover {
    border-bottom: 1px solid transparent
}

.download:before {
    content: '';
    background: url(../img/download.svg) no-repeat;
    width: 10px;
    height: 13px;
    margin-right: 5px;
    display: block;
    position: absolute;
    left: -15px;
    top: 3px
}

.edit {
    position: relative;
    font-size: 14px;
    color: #706F6F;
    text-decoration: none;
    border-bottom: 1px solid;
    margin-left: 20px
}

.edit:hover {
    border-bottom: 1px solid transparent
}

.edit:before {
    content: '';
    background: url(../img/edit.svg) no-repeat;
    width: 15px;
    height: 15px;
    margin-right: 5px;
    display: block;
    position: absolute;
    left: -20px;
    top: 0px
}

.delete {
    font-size: 14px;
    border-bottom: 1px solid;
    color: #ABB7D0;
    text-decoration: none;
    cursor: pointer
}

.delete:hover {
    border-bottom: 1px solid transparent
}

.c__table__row .c__table__col.clients-docs-control {
    padding: 2px 10px;
    align-items: center
}

.c__table__row .c__table__col.clients-docs-control a {
    margin-right: 20px
}

@media (max-width: 1100px) {
    .c__table__row .c__table__col.clients-docs-control a {
        margin-right: 10px
    }
}

.c__table__row .c__table__col.clients-docs-control a:last-child {
    margin-right: 0px
}

.clients-docs {
    background: #FFFFFF;
    border: 1px solid #DEE4F2;
    border-radius: 5px
}

.clients-table-scheta .c__table__row,
.clients-table-acts .c__table__row {
    grid-template-columns: repeat(5, 1fr);
    grid-template-columns: 5% 15% 15% 20% 45%
}

.clients-table-access-acts .c__table__row {
    grid-template-columns: repeat(8, 1fr);
    grid-template-columns: 5% 15% 10% 18% 18% 12% 12% 10%
}

.scan {
    background: url(../img/scan-white.svg) no-repeat 10px 8px #6091F8;
    border-radius: 3px;
    padding-left: 30px;
    display: inline-block;
    font-size: 14px;
    color: #FFFFFF;
    width: 85px;
    line-height: 30px;
    height: 30px;
    margin-left: 14px;
    margin-right: 8px;
    transition: all .2s;
    text-decoration: none
}

.ts__graph-view {
    float: right;
    display: flex
}

.ts__graph-view a {
    background-color: #DEE4F2;
    border-radius: 3px;
    width: 21px;
    height: 21px;
    display: block;
    margin-left: 4px
}

.ts__graph-view a.graph-view-1 {
    background-image: url(../img/graph-v-1.svg);
    background-repeat: no-repeat;
    background-position: center
}

.ts__graph-view a.graph-view-2 {
    background-image: url(../img/graph-v-2.svg);
    background-repeat: no-repeat;
    background-position: center
}

.ts__graph-view a:hover {
    background-color: #6091F8
}

.ts__graph-view a.active {
    background-color: #6091F8
}

.debet-more {
    grid-template-columns: repeat(3, 1fr);
    display: grid
}

.c__table__row__dop {
    margin-bottom: 10px
}

.c__table__row__dop .debet-more {
    border-left: 1px solid #ABB7D0;
    padding-left: 10px;
    margin-top: 0px !important;
    margin-left: 15px
}

.ts__list.ts__list__clients .ts__table-col:nth-child(4),
.ts__list.ts__list__clients .ts__table__item:first-child .ts__table-row .ts__table-col:nth-child(4) {
    max-width: 200px
}

.ts__list.ts__list__clients .ts__table-col:first-child,
.ts__list.ts__list__clients .ts__table__item:first-child .ts__table-row .ts__table-col:first-child {
    max-width: 200px
}

.btn.btn-trains {
    border: 1px solid #6091F8;
    border-radius: 3px;
    font-size: 14px;
    color: #6091F8;
    background-color: #fff
}

.btn.btn-trains.btn-refresh {
    background: url(../img/refresh.svg) no-repeat;
    background-position: 10px 9px;
    margin-left: 30px;
    padding: 7px 12px 7px 35px
}

.btn.btn-trains:hover {
    background-color: rgba(233, 240, 255, 0.9)
}

.switch-checkbox {
    position: relative;
    display: inline-block;
    width: 32px;
    height: 16px;
    margin-left: 8px
}

.switch-checkbox input {
    display: none
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s
}

.slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 2px;
    bottom: 1px;
    background-color: white;
    transition: .4s
}

input:checked+.slider {
    background-color: #2196F3
}

input:focus+.slider {
    box-shadow: 0 0 1px #2196F3
}

input:checked+.slider:before {
    transform: translateX(14px)
}

.slider.round {
    border-radius: 34px
}

.slider.round:before {
    border-radius: 50%
}

.check-list {
    border-top: 1px solid #DEE4F2;
    padding: 25px 0px 10px 0px;
    margin: 25px 0px 10px 0px
}

.check-list__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px
}

.switch-label {
    font-size: 14px;
    line-height: 16px;
    display: flex;
    align-items: center;
    color: #6091F8
}

.check-list-h2 {
    font-size: 16px;
    line-height: 19px;
    background: url(../img/playlist_add_check.svg) no-repeat left center;
    padding-left: 28px;
    color: #08235C
}

.j-checkbox,
.form-check {
    position: relative;
    cursor: pointer;
    padding-left: 24px;
    display: block;
    width: 100%
}

@media (max-width: 760px) {
    .j-checkbox,
    .form-check {
        max-width: 100%
    }
}

.j-checkbox.oragne-checkbox:after,
.form-check.oragne-checkbox:after {
    content: '';
    background: url(../img/orange-gal.svg) no-repeat center;
    background-size: 16px
}

.j-checkbox:before,
.form-check:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 16px;
    height: 16px;
    background: #E8EDF2;
    border: 1px solid #99BECE;
    background: #fff;
    border-radius: 4px;
    transition: all .3s ease
}

.j-checkbox:after,
.form-check:after {
    content: '';
    position: absolute;
    background: url(../img/green-gal.svg) no-repeat center;
    background-size: 16px;
    top: 0px;
    left: 0px;
    width: 16px;
    height: 16px;
    border-radius: 3px;
    opacity: 0;
    transition: all .3s ease
}

.j-checkbox input,
.form-check input {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    opacity: 0;
    cursor: pointer
}

.j-checkbox span,
.form-check span {
    font-weight: 400;
    font-size: 14px;
    color: #0E2B44;
    padding-top: 0px;
    display: block
}

.j-checkbox span a,
.form-check span a {
    font-weight: 500;
    color: #48C774;
    border-bottom: 1px solid;
    text-decoration: none;
    position: relative;
    z-index: 2
}

.j-checkbox span a:hover,
.form-check span a:hover {
    border-bottom: 1px solid transparent
}

@media (max-width: 760px) {
    .j-checkbox span,
    .form-check span {
        font-size: 12px;
        text-align: left
    }
}

.j-checkbox.active::after,
.j-radio.active::after {
    opacity: 1
}

.check-list__row {
    border-bottom: 1px solid #DEE4F2;
    padding: 16px 0px
}

.check-list__row:last-child {
    border: none
}

.check-list__row__label {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.check-list__person {
    display: flex
}

.check-list__person__item {
    background: #FFFFFF;
    border: 1px solid #DEE4F2;
    width: 20px;
    height: 20px;
    margin-left: 8px;
    border-radius: 50%;
    font-size: 10px;
    line-height: 12px;
    display: flex;
    align-items: center;
    justify-content: center
}

.check-list__person__item.check-list__person__item-red {
    color: #B92020
}

.check-list__person__item.check-list__person__item-blue {
    color: #6091F8
}

.check-list__docs {
    display: flex;
    flex-wrap: wrap;
    margin: 5px 0px;
    padding-left: 25px
}

.check-list__docs__item {
    margin-right: 8px
}

.check-list__docs__img {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: blur(1px);
    border-radius: 3px;
    overflow: hidden
}

.check-list__docs__img img {
    max-width: 100%;
    max-height: 100%
}

.check-list__docs__notimg {
    width: 120px;
    height: 120px;
    background: #F0F4FF;
    border-radius: 3px;
    font-size: 13px;
    line-height: 140%;
    color: #67779A;
    display: flex;
    align-items: center;
    justify-content: center
}

.check-list__docs__name {
    font-size: 12px;
    line-height: 140%;
    text-decoration: none;
    padding-left: 19px;
    background: url(../img/attach.svg) no-repeat left center;
    background-size: 15px 17px;
    color: #08235C;
    min-height: 17px;
    display: table;
    margin: 4px 0px
}

.task-chat__title {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    margin: 0px 0px 8px 0px;
    color: #08235C;
    background: url(../img/chat.svg) no-repeat left center;
    padding-left: 25px
}

.chat-textarea {
    background: #F0F4FF;
    border: 1px solid #DEE4F2;
    box-sizing: border-box;
    border-radius: 3px;
    height: calc(100% - 60px);
    overflow-y: auto;
    padding: 4px 12px 12px 4px
}

.chat {
    height: 100%
}

.task-chat {
    height: 100%
}

.chat-control {
    margin: 8px 0px 0px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.chat-control .chat-attach-file {
    background: url(../img/attach.svg) no-repeat center;
    background-size: 16px;
    width: 24px;
    height: 18px;
    cursor: pointer
}

.chat-control .chat-attach-file:hover {
    opacity: 0.85
}

.chat-control .chat-attach-file input {
    width: 100%;
    cursor: pointer;
    height: 100%;
    opacity: 0
}

.chat-control .chat-input {
    width: calc(100% - 32px);
    position: relative
}

.chat-control .chat-input input {
    height: 30px;
    background: #FFFFFF;
    border: 1px solid #DEE4F2;
    width: 100%;
    padding: 0px 35px 0px 10px;
    border-radius: 3px
}

.chat-control .chat-input button {
    background: url(../img/send.svg) no-repeat;
    width: 20px;
    height: 20px;
    cursor: pointer;
    border: none;
    right: 8px;
    top: 5px;
    position: absolute
}

.chat-control .chat-input button:hover {
    opacity: 0.85
}

.chat-date {
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    margin: 16px 0px 8px 0px;
    color: #67779A
}

.chat-dialog__user {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 12px
}

.chat-dialog__user__curcle {
    width: 24px;
    height: 24px;
    background: #FFFFFF;
    border: 1px solid #DEE4F2;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 14px;
    color: #6091F8;
    border-radius: 50%
}

.chat-dialog__user__main {
    background: #FFFFFF;
    border-radius: 5px 5px 5px 0px;
    padding: 6px;
    width: calc(100% - 32px);
    position: relative
}

.chat-dialog__user__main:after {
    content: '';
    width: 0;
    height: 0;
    border: 0 solid transparent;
    border-right-width: 16px;
    border-left-width: 16px;
    border-bottom: 16px solid #fff;
    position: absolute;
    left: -8px;
    bottom: 0px
}

.chat-dialog__user__main__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 5px;
    font-size: 12px;
    color: #67779A;
    line-height: 14px
}

.chat-dialog__user__name {
    color: #B92020
}

.chat-dialog__user__text {
    font-size: 14px;
    line-height: 140%;
    margin: 5px 0px 4px 0px;
    color: #08235C
}

.chat-dialog__user__main__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2
}

.chat-dialog__user__main__footer a {
    font-size: 12px;
    line-height: 14px;
    text-decoration: none;
    color: #67779A;
    border-bottom: 1px solid transparent
}

.chat-dialog__user__main__footer a:hover {
    border-bottom: 1px solid
}

.chat-dialog__user__admin {
    background: #FFFFFF;
    border-radius: 5px 5px 5px 0px;
    padding: 6px;
    max-width: calc(100% - 32px);
    position: relative
}

.chat-dialog__user__admin:after {
    content: '';
    width: 0;
    height: 0;
    border: 0 solid transparent;
    border-right-width: 16px;
    border-left-width: 16px;
    border-bottom: 16px solid #fff;
    position: absolute;
    right: -8px;
    bottom: 0px
}

.chat-dialog__user__admin .chat-dialog__user__name {
    color: #20B982
}

.chat-dialog__user__add-task {
    font-size: 12px;
    line-height: 14px;
    color: #6091F8 !important;
    background: url(../img/playlist_add_check.svg) no-repeat left center;
    background-size: 14px;
    padding-left: 18px
}

.chat-dialog__admin {
    justify-content: flex-end
}

.chat-dialog__user__file {
    background: #F0F4FF;
    border-radius: 3px;
    width: 128px;
    height: 128px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px
}

.chat-dialog__user__answer {
    background: #F0F4FF;
    border-radius: 3px;
    margin: 5px 0px 8px 0px;
    padding: 4px
}

.chat-dialog__user__answer__name {
    font-size: 10px;
    line-height: 12px;
    color: #B92020
}

.chat-dialog__user__answer p {
    margin: 2px 0px;
    font-size: 12px;
    color: #08235C;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.chat-dialog__user__answer__file {
    text-decoration: none;
    font-size: 13px;
    color: #67779A;
    background: url(../img/attach-black.svg) no-repeat left center;
    height: 16px;
    padding-left: 22px;
    margin-top: 2px
}

.chat-dialog__user__answer__file span {
    color: #08235C
}

.inline-svg-icon {
    display: inline-block;
    width: 4px;
    height: 16px;
    min-width: 4px;
    fill: #706F6F
}

.check-list__more {
    display: flex;
    align-items: center;
    position: relative;
    top: 1px;
    padding: 0px 10px;
    margin: 0px 10px
}

.check-list__more:hover .inline-svg-icon {
    fill: #6091F8
}

.remodal.remodal-big {
    max-width: 600px;
    width: 100%;
    padding: 16px
}

.remodal.remodal-big .btns-control {
    justify-content: flex-end;
    margin-top: 20px
}

.remodal.remodal-big .btns-control a.modal-close {
    color: #9FBAF4;
    padding: 0px 24px
}

.task-list-add .field-row input {
    width: 100%
}

.task-list-add .field-row select {
    width: 100%;
    max-width: 50%
}

.fileattach {
    background: url(../img/attach-white.svg) no-repeat #6091F8;
    border-radius: 3px;
    padding: 10px 18px 10px 42px;
    background-position: 19px 10px;
    position: relative;
    display: table !important;
    transition: all 0.2s;
    cursor: pointer
}

.fileattach:hover {
    background-color: #9FBAF4
}

.fileattach input {
    width: 100%;
    opacity: 0;
    height: 100%;
    position: absolute;
    cursor: pointer;
    left: 0px;
    top: 0px
}

.fileattach span {
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
    cursor: pointer
}

.attach-file-item {
    position: relative;
    margin-right: 16px
}

.attach-file-item__file {
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    color: #67779A;
    background: #F0F4FF;
    border-radius: 3px
}

.attach-file-item__name {
    text-decoration: none;
    font-size: 12px;
    color: #08235C;
    background: url(../img/attach.svg) no-repeat left center;
    background-size: 15px;
    padding-left: 22px;
    margin-top: 4px
}

.attach-file-item__close {
    width: 20px;
    height: 20px;
    background: url(../img/close.svg) no-repeat center #fff;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    top: 4px;
    right: 4px;
    position: absolute;
    border-radius: 50%
}

.h1-head {
    align-items: center
}

.h1-head .control-persons {
    margin-left: 60px
}

.h1-head .control-persons__item {
    background: #FFFFFF;
    border: 1px solid #DEE4F2;
    padding: 9px 8px;
    border-radius: 59px;
    font-size: 12px;
    line-height: 14px;
    color: #6091F8;
    margin-right: 8px;
    min-width: 34px
}

.h1-head .control-persons__item span {
    display: inline-block;
    margin-left: 10px;
    color: #021130
}

.client__col {
    width: 30%;
    border-right: 1px solid #DEE5F2;
    padding: 15px 10px
}

.client__col:nth-child(2) {
    padding: 15px 20px
}

.client__col:last-child {
    border-right: 0px;
    width: 40%;
    padding: 15px 20px
}

.client-info .c__col-12 {
    border-bottom: 1px solid #DEE5F2;
    margin: 0px
}

.client-info .c__col-12:last-child {
    border-bottom: 0px
}

.client-info .c__col-12:last-child .client__col {
    border: none
}

.client-info a {
    color: #000000;
    text-decoration: none;
    height: 16px;
    line-height: 120%;
    display: inline-block
}

.whatsapp {
    background: url(../img/whatsapp.svg) no-repeat left center;
    width: 16px;
    height: 16px;
    display: inline-block !important;
    margin-bottom: 0px !important
}

.whatsapp-left {
    margin-right: 5px
}

.whatsapp-right {
    margin-left: 5px
}

.desr-h2 {
    font-size: 16px;
    line-height: 19px;
    color: #08235C;
    background: url(../img/description-icon.svg) no-repeat left;
    padding-left: 25px;
    margin-bottom: 8px
}


/*# sourceMappingURL=../maps/styles.css.map */