@import url(https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;600;700;800&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,400;8..144,500;8..144,600;8..144,700&display=swap);
* {
	box-sizing: border-box;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a {
    text-decoration: none;
}
.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
      -webkit-user-select: none; /* Safari */ /* Konqueror HTML */
         -moz-user-select: none; /* Old versions of Firefox */ /* Internet Explorer/Edge */
              user-select: none; /* Non-prefixed version, currently
                                    supported by Chrome, Edge, Opera and Firefox */
}
body.dark-theme {
    --background-color: #18181c;
    --background-color-0: #20202b;
    --background-color-1: #23232e;
    --background-color-2: #292935;
    --background-color-3: #2f2f3c;
    --first-accent-color-1: #e29543;
    --first-accent-color-2: #efa453;
    --first-accent-color-3: #ffb668;
    --text-color-0: #000;
    --text-color-1: #aaa;
    --text-color-2: #333;
    --text-color-3: #777;
    --text-color-11: #eee;
    --border-color-1: #5e5e5e;
    --scroll-bar-color: #323232;
    --scroll-bar-thumb-color: #555;
    --header-shadow: 0 0 18px 0px #222;
}

body.white-theme, body { /* It`s default theme */
    --background-color: #fff;
    --background-color-0: #f0f0f0; /* Main for fallback */
    --background-color-1: #f3f3f3; /* Primary block background color */
    --background-color-2: #ffffff; /* Secondary block background color */
    --background-color-3: #ffffff; /* Container background color */
    --first-accent-color-1: #e29543;
    --first-accent-color-2: #efa453;
    --first-accent-color-3: #ffb668;
    --text-color-0: #000;
    --text-color-1: #494949;
    --text-color-2: #333;
    --text-color-3: #777;
    --text-color-11: #484848;
    --border-color-1: #d3d3d3;
    --scroll-bar-color: #fff;
    --scroll-bar-thumb-color: #cfcfcf;
    --header-shadow: 0 0 18px 0px #666;
}

/* APPLICATION LOGO */

.logo-block {
    color: #fff;
    font-size: 1em;
    line-height: 1em;
    transition: .3s ease;
    overflow: hidden;
}
a.logo-block {
    padding: 0;
    text-decoration: none;
}

.logo-block.float {
    position: absolute;
    z-index: 10;
    margin: 1em 1em;
}
.logo-block.float.left {
    left: 0;
}
.logo-block.float.right {
    right: 0;
}
.logo-block.float.top {
    top: 0;
}
.logo-block.float.bottom {
    bottom: 0;
}

.logo-block > .logo-title {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    color: inherit;
}

/* BUTTONS */

.btn {
    /*width: 100%;*/
    height: 42px;
    padding: 0 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    font-size: 16px;
    font-weight: bold;
    transition:
        background-color .2s ease,
        color .1s ease,
        border .1s ease;
    cursor: pointer;
    white-space: nowrap;
    border: none;
    gap: 12px;
}

form .btn {
    width: 100%;
}
.btn.w100 {
    width: 100%;
}
.btn.btn-lg {
    height: 48px;
    padding: 0 40px;
    font-size: 18px;
}

.btn.btn-sm {
    height: 36px;
    padding: 0 12px;
    font-size: 14px;
}

.btn.btn-primary {
    border: none;
    outline: none !important;
    color: #fff;
    background-color: var(--first-accent-color-1);
}
.btn.btn-secondary {
    color: var(--text-color-11);
    background-color: transparent;
    border: 2px solid var(--first-accent-color-1);
}


.btn-round {
    height: 42px;
    width: 42px;
    color: var(--text-color-1);
    padding: 0 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    font-size: 16px;
    font-weight: bold;
    transition:
        background-color .2s ease,
        color .2s ease,
        border .1s ease;
    border-radius: 50%;
    cursor: pointer;
    white-space: nowrap;
    outline: none;
    border: none;
    background-color: transparent;
}


.btn-trans {
    height: 42px;
    width: auto;
    color: var(--text-color-1);
    padding: 10px 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    font-size: 16px;
    font-weight: bold;
    transition:
        background-color .2s ease,
        color .2s ease,
        border .1s ease;
    cursor: pointer;
    white-space: nowrap;
    outline: none;
    border: none;
    background-color: transparent;
}
.btn-trans.la {
    justify-content: flex-start;
}
.btn-trans.w-100 {
    width: 100%;
}

@media (hover: hover) {
    .btn.btn-primary:hover {
        color: #fff;
        background-color: var(--first-accent-color-2);
    }
    .btn.btn-secondary:hover {
        color: #fff;
        background-color: var(--first-accent-color-2);
        border: 2px solid var(--first-accent-color-2);
    }
    .btn-round:hover {
        color: var(--text-color-11);
        background-color: #393939;
    }
    .btn-trans:hover {
        color: var(--text-color-11);
    }
}
@media (hover: none) {
    .btn.btn-primary:active {
        color: #fff;
        background-color: var(--first-accent-color-2);
    }
    .btn.btn-secondary:active {
        color: #fff;
        background-color: var(--first-accent-color-2);
        border: 2px solid var(--first-accent-color-2);
    }
    .btn-round:active {
        color: var(--text-color-11);
        background-color: #393939;
    }
    .btn-trans:active {
        color: var(--text-color-11);
    }
}
body.dark-theme {
    --background-color: #18181c;
    --background-color-0: #20202b;
    --background-color-1: #23232e;
    --background-color-2: #292935;
    --background-color-3: #2f2f3c;
    --first-accent-color-1: #e29543;
    --first-accent-color-2: #efa453;
    --first-accent-color-3: #ffb668;
    --text-color-0: #000;
    --text-color-1: #aaa;
    --text-color-2: #333;
    --text-color-3: #777;
    --text-color-11: #eee;
    --border-color-1: #5e5e5e;
    --scroll-bar-color: #323232;
    --scroll-bar-thumb-color: #555;
    --header-shadow: 0 0 18px 0px #222;
}

body.white-theme, body { /* It`s default theme */
    --background-color: #fff;
    --background-color-0: #f0f0f0; /* Main for fallback */
    --background-color-1: #f3f3f3; /* Primary block background color */
    --background-color-2: #ffffff; /* Secondary block background color */
    --background-color-3: #ffffff; /* Container background color */
    --first-accent-color-1: #e29543;
    --first-accent-color-2: #efa453;
    --first-accent-color-3: #ffb668;
    --text-color-0: #000;
    --text-color-1: #494949;
    --text-color-2: #333;
    --text-color-3: #777;
    --text-color-11: #484848;
    --border-color-1: #d3d3d3;
    --scroll-bar-color: #fff;
    --scroll-bar-thumb-color: #cfcfcf;
    --header-shadow: 0 0 18px 0px #666;
}
@charset "utf-8";

.form-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.input-group {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    width: 100%;
}
.input-group.row {
    flex-direction: row;
}
.input-group + .input-group {
    margin-top: 1em;
}

.ebut-group {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: baseline;
    width: 100%;
}
.ebut-group > button {
    height: 44px !important;
    border-radius: 0 10px 10px 0 !important;
}
.ebut-group > input {
    height: 44px !important;
    border-radius: 10px 0 0 10px !important;
}

.input-group .g-head {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}
.input-group .g-bottom {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    margin-top: 5px;
}

.input-group > .end-sum {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 1rem;
}
.input-group > .end-sum > span.name {
    font-size: 1.3rem;
    color: var(--text-color-1);
    font-weight: 600;
}
.input-group > .end-sum > span.amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color-11);
}

.input-group label {
    font-size: 14px;
    line-height: 1.5rem;
    font-weight: 600;
    color: var(--text-color-1);
}
.input-group input, select {
    width: 100%;
    margin-top: 0.25rem;
}

input, select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--background-color-1);
    border-style: solid;
    border-color: transparent;
    border-width: 2px;
    border-radius: 0.375rem;
    padding-top: 0.5rem;
    padding-right: 0.75rem;
    padding-bottom: 0.5rem;
    padding-left: 0.75rem;
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--text-color-11);
    height: 44px;
}

input:focus, select:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    border-color: var(--first-accent-color-1);
}

.select-wrapper {
    position: relative;
}
.select-wrapper::after {
    content: '<>';
    font: 17px "Consolas", monospace;
    color: #ddd;
    transform: rotate(90deg);
    right: 11px;
    top: 15px;
    padding: 0 0 2px;
    border-bottom: 1px solid #999;
    position: absolute;
    pointer-events: none;
}

.action-block {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    margin-top: 2em;
}
.action-block a {
    font-weight: 700;
    color: var(--first-accent-color-1);
}
.action-block span {
    margin-top: 1rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
}
.action-block .btn {
    width: 100%;
}

table td,table th {
  color: var(--text-color-1);
  overflow: hidden;
  padding: 7px 15px;
  text-align: left;
  white-space: nowrap;
	line-height: 1.8;
}

table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%
}

tr>td {
  overflow: hidden;
  word-break: break-all
}

tr>td:first-child,tr>th:first-child {
  padding-left: 15px;
}

tr>td:last-child,tr>th:last-child {
  padding-right: 15px;
}

thead {
  border-bottom: 1px solid var(--border-color-1)
}

thead>tr>th {
  color: var(--text-color-11)
}

tr:nth-child(odd) td {
  background-color: var(--background-color-1)
}

tr:nth-child(2n) td {
  background-color: var(--background-color-2)
}

table thead tr th.id {
  width: 15%
}

table thead tr th.status,table thead tr th.sum,table thead tr th.sys {
  width: 25%
}

table thead tr th.date {
  width: 40%
}

@charset "utf-8";:root {
    --accent: #ffc600;
    --hover: #f3c211;
    --text: #000;
    --regular-text: 16px;
    --lineheight: 1.4;
    --userfont: "Roboto Flex",sans-serif;
    --systemfont: -apple-system,BlinkMacSystemFont,Arial,sans-serif
  }
html, body {
    height: 100%;
    margin: 0;
}
body {
    line-height: 1;
    font-family:  'OpenSans', 'Raleway','Arial', sans-serif;
    font-size: 14px;
    font-weight: 600;
    /* word-break: break-word; */
    color: #555;
    min-width: 360px;
}
img {
    max-width: 100%;
}
body.noscroll {
    overflow: hidden;
}
b {
    font-weight: 900;
    font-family: "Roboto Flex",sans-serif;
}
h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-color-11);
}
[disabled], .disabled, :disabled {
    pointer-events: none;
    opacity: 0.7;
}
a {
    color: var(--first-accent-color-2);
}
/* SCROLLBAR */
::-webkit-scrollbar {
    width: 16px;
    height: 16px;
    background: var(--scroll-bar-color);
}
::-webkit-scrollbar-thumb {
    background-color: var(--scroll-bar-thumb-color);
}
::-webkit-scrollbar-thumb,::-webkit-scrollbar-track-piece {
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 3px solid transparent;
    border-radius: 10px;
}
::-webkit-scrollbar-track-piece {
    background-color: transparent;
}
::-webkit-scrollbar-corner {
    background: var(--scroll-bar-color);
}
/* ---- */
.w100 {width: 100%;}
.wi100 {width: 100% !important;}
.d-none { display: none !important; }
/* ---- */
.main {
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--background-color-0);
    max-width: 100vw;
}
.main > header:not(.landing) {
    color: var(--text-color-11);
}
.main > header {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: .2s ease;
    color: #fff;
    z-index: 999;
    min-height: 50px;
}
.mob-nav { display: none; color: inherit; font-size: 22px; }
.mob-nav-close {
    margin-left: auto;
    position: relative;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    border: none;
    cursor: pointer;
    background: none;
    color: inherit;
    font-size: 28px;
}
#nav-action-block {
    width: 100%;
}
.main > header.stick {
    background: var(--first-accent-color-1);
    box-shadow: var(--header-shadow);
    color: #fff;
    /*-webkit-backdrop-filter: blur(16px);*/
    /*backdrop-filter: blur(16px);*/
    /*background-color: rgba(241, 242, 244, 0.8);*/
}
.main .container {
    max-width: 1300px;
    width: 100%;
    margin: auto;
    padding: 0 3rem;
}
.main > header .header-blocks {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.main > header .header-block {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    row-gap: 12px;
}
.main > header:not(.stick) .logo-block {
    color: var(--text-color-11);
}
.main > header.landing:not(.stick) .logo-block {
    color: #fff;
}
.main > header.landing:not(.stick) .mob-nav {
    color: #fff;
}
ol, ul {
    list-style: none;
}
/* DROPDOWN */
nav > ul ul {
    position: absolute;
    border-radius: 0px 0px 15px 15px;
    z-index: 4;
    overflow: hidden;
    display: none;
    transition: all 0.5s ease;
    opacity: 0;
}
nav > ul ul > li {
    cursor: pointer;
    margin-left: 0px;
    float: none;
    background-color: var(--first-accent-color-1);
}
nav > ul ul > li > a {
    width: 100%;
    height: auto;
    padding: 1rem;
    border-bottom: none !important;
    justify-content: flex-start;
    display: inline-block;
    color: #eee;
}
nav > ul ul > li:hover {
    background-color: var(--first-accent-color-2);
}
nav > ul li:hover > ul {
    display: block;
    opacity: 1;
}

/* ----- */
nav > .top-block { display: none; }
nav > .top-login-block { display: none; }
nav > ul > li {
    float: left;
    margin-left: 2em;
}
nav > ul > li:first-child {
    margin-left: 0;
}
nav > ul > li a {
    font-size: 16px;
    font-weight: 600;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    border-bottom-width: 3px;
    border-bottom-style: solid;
    border-bottom-color: transparent;
    color: inherit;
    height: 60px;
    cursor: pointer;
    transition: border 0.3s ease 0s;
}

nav > ul > li a:hover {
    border-bottom-width: 3px;
    border-bottom-style: solid;
    border-bottom-color: var(--first-accent-color-1);
}
.main > header.stick nav > ul > li a:hover {
    border-bottom-color: #fff;
}

nav > ul > li > a > i {
    display: none !important;
}

.header-backdrop {
    display: none;
    /*opacity: 0;*/
    /*transition: all 0.3s ease;*/
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #11111180;
    /*-webkit-backdrop-filter: blur(2px);*/
    /*backdrop-filter: blur(2px);*/
    z-index: 990;
}

.header-block .btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 2.25rem;
    font-size: 16px;
    font-weight: 700;
    padding: 1rem;
    border-radius: 10px;
    margin: 0 0.3rem;
    border: 2px solid transparent;
}
.main > header:not(.stick) #header-action-block .btn:hover {
    background-color: var(--first-accent-color-2);
}
.main > header:not(.stick) #header-action-block .btn {
    color: #fff;
    background-color: var(--first-accent-color-1);
    border: 2px solid transparent;
}
.main > header:not(.stick) #header-action-block .btn-call {
    background-color: transparent;
    border: 2px solid var(--first-accent-color-1);
    color: inherit;
}
.header-block .btn {
    color: var(--text-color-0);
    background-color: #fff;
    gap: 12px;
}
.header-block .btn:hover {
    background-color: #ddd;
}



.main > header:not(.stick) #header-action-block .btn.btn-secondary {
    color: inherit;
    background-color: transparent;
    border: 2px solid var(--first-accent-color-1);
}
.main > header:not(.stick) #header-action-block .btn.btn-secondary:hover {
    color: #fff;
    background-color: var(--first-accent-color-2);
    border: 2px solid var(--first-accent-color-2);
}
.main > header .header-block .btn.btn-secondary {
    color: #fff;
    background-color: var(--first-accent-color-1);
    border: 2px solid #fff;
}
.main > header .header-block .btn.btn-secondary:hover {
    background-color: var(--first-accent-color-2);
    border: 2px solid #ddd;
}

.header-block .btn .far {
    font-size: 20px;
}

/* MAIN ZONE */

.main > main {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    transition: opacity .3s ease;
    min-height: 100vh;
    /*padding-top: 5em;*/
    background-color: var(--background-color-1);
}
.main > main > .block {
    position: relative;
    width: 100%;
    /*min-height: 50vh;*/
    background-color: var(--background-color-1);
}
.main > main > .block.landing {
    height: 80vh;
}
.main > main > .block.secondary {
    background-color: var(--background-color-2);
}
.main > main > .block > .background::after {

        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(130deg,rgba(0,0,0,.74) 19.05%,rgba(0,0,0,.23) 72.99%);
      }
.main > main > .block > .background img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
}
.main > main > .block > .background {
    z-index: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background-color-1);
}
.main > main > .block > .container {
    position: relative;
    height: 100%;
    padding: 60px 3rem;
    z-index: 1;
}
.container > .inner.col {
    flex-direction: column;
}
.container > .inner.col.align-left {
    align-items: flex-start;
}
.container > .inner {
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    /*padding: 60px 0;*/
}
.container > .inner.right {
    justify-content: flex-end;
    flex-direction: row;
}
.container > .inner.left {
    justify-content: flex-end;
    flex-direction: row-reverse;
}
/* LANDING */
.container > .inner > .inner-content > .item-title.big {
    font-size: 48px;
    font-weight: bold;
    line-height: 45px;
    color: #eee;
    margin-bottom: 15px;
}
.container > .inner > .inner-content > .item-text.big {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 45px;
    color: #aaa;
}
.block.landing .btn.btn-secondary {
    color: #eee;
}
/* ---- */
/* NORMAL */
.container > .inner > .inner-content {
    position: relative;
    margin: 0 5px;
    z-index: 2;
    width: 65%;
}
.container > .inner.left > .inner-content,
.container > .inner.right > .inner-content {
    order: 1;
    width: 50%;
}
.container > .inner > .inner-content > .item-title {
    font-size: 45px;
    font-weight: bold;
    line-height: 44px;
    margin-bottom: 40px;
    color: var(--text-color-11);
}
.container > .inner > .inner-content > .item-text {
    font-size: 18px;
    line-height: 26px;
    /*margin-bottom: 40px;*/
    color: var(--text-color-1);
}
.container > .inner > .inner-content > .item-text p {
    font-weight: 500;
    /* margin-bottom: 30px; */
}
.container > .inner > .inner-content > .item-text p:last-child {
    margin-bottom: 0;
}
/* ---- */
.container > .inner > .inner-content > .item-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 12px;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    padding-right: 60px;
}
.container > .inner > .inner-content > .item-actions > * {
    margin-right: 1rem;
}
.container > .inner > .inner-image {
    flex: 1 1 auto;
    order: 2;
    width: 50%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    /*padding: 1rem 2rem;*/
}
.container > .inner > .inner-image img {
    max-height: 550px;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}
main > .block .title {
    font-size: 40px;
    line-height: 44px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1em;
    color: var(--text-color-11);
}
main > .block .block {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
}

.steps-container {
    width: 45%;
    position: relative;
    padding: 2rem;
    background-color: var(--background-color-3);
    border-radius: 15px;
    box-shadow: 0px 0px 20px 20px rgb(120 120 120 / 6%);
}
.steps-container .action-block {
    margin: 0;
}
.steps-container > .steps-title {
    font-size: 40px;
    line-height: 44px;
    font-weight: bold;
    color: var(--text-color-11);
    margin-bottom: 18px;
}
.steps-container > .steps-item {
    padding: 22px 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color-1);
}
.steps-container > .steps-item:last-child {
    border-bottom: none;
}
.steps-container > .steps-item > .step-number {
    font-size: 36px;
    font-weight: bold;
    color: var(--text-color-1);
}
.steps-container > .steps-item > .step-text {
    margin-left: 10px;
    width: 100%;
    font-size: 18px;
    line-height: 21px;
    font-weight: 500;
    color: var(--text-color-11);
}
.steps-container .btn {
    margin-top: 2rem;
}

.block.secondary#benefits .block {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: start;
    gap: 8px;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
.block.secondary#benefits .block > .item {
    margin: 1rem 2rem;
    text-align: center;
}
.block.secondary#benefits .block > .item > .item-image {
    height: 100px;
    margin-bottom: 1rem;
}
.block.secondary#benefits .block > .item > .item-image img {
    height: 100%;
}
.block.secondary#benefits .block > .item > .item-number {
    font-family: 'Open Sans', sans-serif;
    font-size: 32px;
    font-weight: bold;
    color: var(--text-color-11);
    margin-bottom: 15px;
}
.block.secondary#benefits .block > .item > .item-number span {
    opacity: 1;
}
.block.secondary#benefits .block > .item > .item-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color-1);
}

.calc-container {
    width: 50%;
    background-color: #333;
    padding: 3em;
    height: 600px;
    border-radius: 15px;
}


#docs .block > .item {
    margin: 1rem 2rem;
    text-align: center;
    max-width: 300px;
}
#docs .block > .item .item-image {
    margin-bottom: 1rem;
}
#docs .block > .item .item-image img {
    max-height: 100%;
    width: 100%;
}
#docs .block > .item .item-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color-1);
}
.container > .scroll-block {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: auto;
}
#tarifs > .container {
    max-width: 100%;
    width: 100%;
}
#tarifs .scroll-block > .block {
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
    margin: 1rem 0;
    width: 100%;
}
#tarifs .scroll-block > .block::before,
#tarifs .scroll-block > .block::after {
  content: '';
  flex: 1;
}
#tarifs .scroll-block > .block > .item {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    /*height: 480px;*/
    min-width: 350px;
    margin-right: 2em;
    border-radius: 15px;
    max-width: 400px;
    background: var(--background-color-3);
    box-shadow: 8px 8px 10px 1px rgb(0 0 0 / 15%);
}
#tarifs .scroll-block > .block > .item:last-child {
    margin-right: 0;
}
#tarifs .scroll-block > .block > .item > .item-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: nowrap;
    background: linear-gradient(230deg, var(--first-accent-color-3) 3%, #111 100%);
    border-radius: 15px 15px 0px 0px;
    padding: 2rem;
}
#tarifs .scroll-block > .block > .item > .item-top > .item-name {
    font-size: 42px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 1rem;
}
#tarifs .scroll-block > .block > .item > .item-top >
.item-top-head {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    width: 100%;
}
#tarifs .scroll-block > .block > .item > .item-top >
.item-top-head > .title {
    font-size: 22px;
    line-height: 42px;
    font-weight: 600;
    color: #FFF;
}
#tarifs .scroll-block > .block > .item > .item-top >
.item-top-head > .number {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #FFF;
    background: var(--first-accent-color-1);
    border-radius: 15px;
    padding: 5px 10px;
    display: inline-block;
    text-transform: uppercase;
}
#tarifs .scroll-block > .block > .item > .item-top >
.item-top-head > .number span.cost {
    margin-right: 0;
}
#tarifs .scroll-block > .block > .item > .item-top >
.item-top-head > .number span.unit {
    margin-left: 0;
}
#tarifs .scroll-block > .block > .item > .item-content {
    padding: 2em;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
#tarifs .scroll-block > .block > .item > .item-content >
.item-content-options {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    margin-bottom: 2em;
}
#tarifs .scroll-block > .block > .item > .item-content >
.item-content-options > .item-option {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 1em;
}
#tarifs .scroll-block > .block > .item > .item-content >
.item-content-options > .item-option > * {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color-1);
    white-space: nowrap;
    font-family: 'Open Sans', sans-serif;
}

/* FOOTER */
.main > footer {
    background-color: #000;
    padding-top: 3rem;
    padding-bottom: 2rem;
}
.main > footer > .container {
    max-width: 1300px;
    padding: 0 3rem;
    margin: auto;
}
.main > footer
.footer-top {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
}
.main > footer
.footer-top > .footer-logo {
    display: flex;
    min-width: 200px;
    margin: 1em 0;
}
.main > footer
.footer-top > .media-icons {
    font-weight: 600;
    display: flex;
    font-family: 'Open Sans', sans-serif;
}
.main > footer
.footer-blocks {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}
.main > footer
.footer-blocks > * {
    width: 250px;
}
.main > footer
.footer-blocks .footer-title {
    font-size: 18px;
    line-height: 21px;
    font-weight: 600;
    color: var(--text-color-1);
    margin-bottom: 30px;
    border-bottom: 1px solid #aaa;
    padding: 5px 0;
}
.main > footer
.footer-blocks > .footer-block > p {
    font-size: 16px;
    line-height: 19px;
    font-weight: 500;
    color: #FFF;
    margin-bottom: 20px;
}
.main > footer
.footer-blocks > .footer-block a {
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    color: #FFF;
}
.main > footer
.footer-blocks > .footer-block .footer-item {
    display: flex;
}
.main > footer
.footer-blocks > .footer-block .footer-item i {
    margin: 2px 20px 0 0;
}
.main > footer
.footer-blocks > .footer-nav ul > li {
    margin-bottom: 20px;
}
.main > footer
.footer-blocks a {
    font-size: 16px;
    line-height: 19px;
    font-weight: 500;
    color: #FFF;
    transition: all .3s ease;
}
.main > footer
.footer-blocks a:hover {
    color: var(--first-accent-color-1);
}
.main > footer .footer-bottom {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #838383;
    background-color: #333333;
}
.main > footer .footer-bottom > .container {
    max-width: 1250px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    margin: auto;
}
.main > footer .footer-bottom > .container.copy {
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 400;
}

/* ------ */
.inner-block {
    max-width: 1300px;
    margin: 8em auto;
    padding: 50px 0;
    box-shadow: 10px 15px 60px rgb(0 0 0 / 15%);
    background-color: var(--background-color-2);
    border-radius: 15px;
    width: 100%;
}
.inner-blocks {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    color: var(--text-color-11);
}
.inner-blocks > .inner-left {
    width: 65%;
}
.inner-blocks > .inner-left:last-child {
    width: 100%;
}
.inner-blocks > .inner-right {
    width: 35%;
    padding-left: 50px;
}
.inner-blocks > .inner-right > .title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 40px;
}
.content h1 {
    font-size: 54px;
    line-height: 60px;
    font-weight: bold;
    margin-bottom: 1rem;
}
.content h2 {
    font-size: 21px;
    line-height: 23px;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
}
.content h5 {
    font-size: 19px;
    line-height: 19px;
    font-weight: 500;
    margin-bottom: 1rem;
}
.content p {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 20px;
    font-family: 'Open Sans';
    font-weight: 500;
    color: var(--text-color-1);
}

.faq-item {
    position: relative;
    z-index: 2;
    background-color: var(--background-color-1);
    border-radius: 10px;
    margin-bottom: 30px;
    transition: all .3s ease;
}
.faq-item.active {
    background-color: var(--background-color-3);
    box-shadow: 10px 15px 20px 0px rgb(0 0 0 / 10%);
}
.faq-item-title {
    font-size: 24px;
    line-height: 28px;
    padding-top: 25px;
    padding-right: 40px;
    padding-bottom: 25px;
    padding-left: 40px;
    font-weight: bold;
    color: var(--text-color-11);
    cursor: pointer;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}
.faq-item-title:after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    margin: 2px 0 0 8px;
    background: url(/img/svg/ico-chevron-down.svg) no-repeat center;
    background-size: contain;
    transition: .2s ease;
}
.faq-item.active .faq-item-title:after {
    transform: rotate(180deg);
}
.faq-item-title p {
    max-width: 650px;
    width: calc(100% - 20px);
}
.faq-item-close {
    display: none;
}
.faq-item-content {
    font-size: 16px;
    line-height: 22px;
    padding-right: 40px;
    padding-bottom: 30px;
    padding-left: 40px;
    display: none;
    color: var(--text-color-1);
    font-family: 'Open Sans';
    font-weight: 500;
}
.faq-item-content.active {
    display: block;
}

.cards .block {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(300px, 3fr));
    gap: 1rem;
    width: 100%;
}
.cards .block > .item {
    /* margin: 1rem 1rem; */
    text-align: center;
    background-color: var(--background-color-1);
    border-radius: 15px;
    /* border: 1px solid var(--border-color-1); */
    /* box-shadow: 0px 0px 20px 5px rgb(120 120 120 / 6%); */
    padding: 1rem;
}
.cards .block > .item.fw {
    width: 100%;
    margin-top: 4rem;
}
.cards .block > .item > .item-image {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    height: 200px !important;
}
.cards .block > .item > .item-image img {
    width: 100%;
    max-height: 100%;
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
}
.cards .block > .item > .item-number {
    font-family: 'Open Sans', sans-serif;
    font-size: 40px;
    margin-bottom: 6px;
    font-weight: bold;
    color: var(--text-color-11);
}
.cards .block > .item > .item-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color-1);
    margin-bottom: 6px;
}
.cards .block > .item > .item-description {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color-1);
    margin-bottom: 6px;
}
.cards .block > .item > .item-text.bt {
    font-size: 1.5rem;
}
.cards .block > .item > .item-action {
    margin-top: 1.5rem;
}

.row {
    display: flex;
    flex-direction: row;
    gap: 12px;
}
.col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
}
.mla {
    margin-left: auto;
}
.mts1 {
    margin-top: -8px;
}
.mts2 {
    margin-top: -12px;
}

.badge {
    color: var(--text-color-11);
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
    border-radius: 4px;
    border: 2px solid;
    border-color: var(--border-color-1);
    padding: 3px 10px;
}

.main > main > .block.promo > .container {
    padding: 40px 3rem;
}
.block.promo {
    min-height: 20vh;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.block.promo .inner .btn {
    margin-left: auto;
}
.block.promo .inner h1 {
    font-size: 30px;
    font-weight: 900;
    color: var(--text-color-11);
}
.block.promo .inner h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color-1)
}

/* ---- */


@media screen and (max-width: 720px) {
    /* #header-action-block { display: none; } */
    .d-none-72 {
        display: none !important;
    }
}

@media screen and (max-width: 1280px) {
    .d-none-128 {
        display: none !important;
    }
    /*#header-nav-block { display: none; }*/
    #header-action-block {
        display: none;
        margin-left: auto;
        margin-right: 1em;
    }
    .mob-nav {
        display: block;
        padding: 10px;
        cursor: pointer;
    }
    .main > header > .container {
        max-width: 1300px;
        padding: 0 1rem;
    }
    nav {
        position: fixed;
        z-index: 9;
        width: 400px;
        max-width: 100vw;
        right: 0;
        top: 0px;
        background-color: var(--first-accent-color-1);
        height: 100%;
        /*padding-top: 40px;*/
        /*margin-right: 50px !important;*/
        /*display: none;*/
        text-align: left;
        padding-right: 0px;
        transition: all .5s ease;
        transform: translateX(100%);
        display: block;
        color: #fff;
        overflow-x: hidden;
    }
    nav.is-open {
        transform: translateX(0);
        box-shadow: 0 0 20px 0px #222;
    }
    nav > .top-block {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 40px 50px 20px 50px;
    }
    nav > .top-login-block {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 30px 40px;
    }
    nav > ul {
        padding-bottom: 50px;
    }
    nav > ul > li {
        float: none;
        width: 100%;
        margin-left: 0;
    }
    nav > ul > li > a {
        display: flex;
        justify-content: flex-start;
        align-items: baseline;
        padding: 20px 50px;
        font-size: 16px;
        line-height: 22px;
        height: auto;
        border-top-style: none;
        border-right-style: none;
        border-bottom-style: none;
        border-left-style: none;
    }
    nav > ul > li > a:hover {
        border-top-style: none;
        border-right-style: none;
        border-bottom-style: none;
        border-left-style: none;
        background-color: var(--first-accent-color-2);
    }
    nav > ul > li > a > i {
        display: inline-block !important;
        margin-right: 1rem;
        font-size: 28px;
    }
    /* DROPDOWN */
    nav > ul ul {
        position: relative;
        width: 100%;
        display: none;
        text-align: left;
        padding-left: 35px;
        box-shadow: none;
        border-radius: 0px;
        width: 100%;
        margin-top: 0px;
        margin-bottom: 0px;
        opacity: 1;
        transition: none;
        background-color: var(--first-accent-color-2);
    }
    nav > ul li.active {
        background-color: var(--first-accent-color-2);
    }
    nav > ul > li.nav-drop > a:hover {
        background-color: var(--first-accent-color-2);
    }
    nav > ul > li.nav-drop > a:after {
        content: "";
        display: block;
        width: 10px;
        height: 10px;
        margin: 2px 0 0 8px;
        background: url(/img/svg/ico-chevron-down.svg) no-repeat center;
        background-size: contain;
        transition: .2s ease;
    }
    nav > ul > li.nav-drop.active > a:after {
        transform: rotate(180deg);
    }
    nav > ul > li.nav-drop > ul > li {
        background-color: var(--first-accent-color-2);
    }
    nav > ul > li.nav-drop > ul > li:hover {
        background-color: var(--first-accent-color-3);
    }
    nav > ul > li.nav-drop:hover > ul {
        display: none;
    }
    /* ----- */
    .block.secondary#benefits .block {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
      }
}

@media screen and (max-width: 960px){
    .d-none-96 {
        display: none !important;
    }
    .block.landing {
        max-height: 80vh;
    }
    .container:not(.full) > .inner {
        flex-direction: column !important;
        justify-content: center;
    }
    .container.full > .inner {
        flex-direction: column-reverse !important;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .container > .inner > .inner-content,
    .container > .inner.left > .inner-content,
    .container > .inner.right > .inner-content { width: 100%; }
    .container > .inner > .inner-image { width: 100%; margin-bottom: 2em; }
    .container > .inner img { max-height: 100%; }
    .steps-container { width: 100%; padding: 2rem; }
    .calc-container { width: 100%; }
    .main > main > .block > .container:not(.full) {
        max-width: 720px;
        padding: 2rem 1rem;
    }
    .main > main > .block > .container {
        padding: 2rem 1rem;
    }
    .inner-block { margin: 4em 0; box-shadow: none;}
    .inner-blocks > .inner-left { width: 100%; }
    .inner-blocks > .inner-right { width: 100%; padding-left: 0; margin: 30px auto 0; }
    .main > footer {
        padding-top: 2rem;
        padding-bottom: 1rem;
    }
    .block.secondary#benefits .block {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
      }
}

@media screen and (max-width: 680px) {
    .block.secondary#benefits .block {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
    }
  }

.prices-row {
    /* margin-top: 10px; */
    padding: 8px 16px;
    font-family: "Roboto Flex",sans-serif;
    font-size: 16px;
}
.prices-row .price__detail {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 5px 20px;
    white-space: nowrap;
}
.prices-row td:last-child {
    width: calc(130px + 260*(100vw - 320px)/960);
}

.text-primary {
    color: var(--text-color-11);
}
.text-secondary {
    color: var(--text-color-1);
}
.text-accent {
    color: var(--first-accent-color-2);
}
.border-accent {
    border-color: var(--first-accent-color-2);
}

