@charset "UTF-8";
/**
  rules of:

- elements position
- elements size
- elements order
- text size, weight, decoration
- buttons size, padding, margin
- input size, padding, margin
 */

html, body{
    max-width: 100%;

}
body{
    box-sizing: border-box;
    position: relative;
    margin: 0;
    min-height: 100vh;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 500;
    color: var(--default-text-color);

}
/* h1-6 */
h1,h2,h3,h4,h5,h6,
.h1,.h2,.h3,.h4,.h5,.h6{
    color: #000000;
    display: block;
    line-height: 1.2;
    font-weight: 700;
    font-family: var(--font-family-h);
}
h1, .h1{
    font-size: 32px;
    margin: 0 0 24px 0;
}
h2, .h2{
    font-size: 24px;
    margin: 0 0 24px 16px;
}
h3, .h3{
    font-size: 18px;
    margin: 0 0 8px 0;
    line-height: 28px;
}
h4, .h4{
    font-size: 14px;
    margin: 0 0 8px 0;
    line-height: 20px;
}
h5, .h5{
    font-size: 14px;
    margin: 0;
    line-height: 24px;
    font-weight: 400;
}
h6, .h6{
    font-size: 14px;
    margin: 0;
    line-height: 24px;
    font-weight: 400;
}
h1:not(:first-child),
.h1:not(:first-child){
    margin-top: 32px;
}
h2:not(:first-child),.h2:not(:first-child) {
    margin-top: 24px;
}
h3:not(:first-child), h4:not(:first-child),
.h3:not(:first-child),.h4:not(:first-child){
    margin-top: 8px;
}
p{
    margin: 0 0 16px 0;
}
strong{
    font-weight: 600;
}
ol{
    list-style: decimal;
}
ul{
    list-style: disc;
}
ol, ul{
    list-style-position: outside;
    margin: 16px 0;
    padding: 0 0 0 22px;
}
ol.no-style, ul.no-style,
ol.no-style ul, ul.no-style ul,
ol.no-style ol, ul.no-style ol{
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}
ol>li, ul>li{
    margin: 4px 0;
    padding: 0 0 0 6px;
}
li>ol, li>ul{
    margin: 8px 0;
}

li.expandable{
    position: relative;
}
li.expandable>ul,
li.expandable:hover>ul{
    display: none;
}
li.expanded.expandable>ul{
    display: block;
}
li.expandable>.expand-button{
    position: absolute;
    top: 3px;
    left: -15px;
}


a, .a, .link{
    display: inline;
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    background: none;
    text-decoration: none;
    cursor: pointer;
    box-shadow: none;
    min-height: auto;
    min-width: auto;
    line-height: 1;
    border-radius: 0;
    color: var(--link-text-color);
    font-weight: 500;
}
a.alternative, .a.alternative, .link.alternative{
    color: var(--link-alternative-text-color);
}
a:hover, .a:hover, .link:hover{
    text-decoration: none;
    color: var(--link-text-color);
}
a.alternative:hover, .a.alternative:hover, .link.alternative:hover{
    color: var(--link-alternative-text-color);
}
/* inputs */
input, textarea, select{
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
    padding: 11px 16px 12px 16px;
    border: var(--default-input-border);
    color: var(--default-input-text-color);
    background: var(--default-input-background-color);
    border-radius: 22px;

}
select {
    text-align: center;
    border: none;
    padding-right: 24px;
    background: var(--content-background);
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    padding: 7px 0;
    -webkit-appearance: none;

}

.filter-form input {
    min-height: 36px;
    height: 36px;
    padding: 8px 16px 9px 16px;
}
.filter-form .custom-select-decorator {
     min-height: 36px;
     height: 36px;
}
.custom-select-decorator {
    border: var(--default-select-border);
    border-radius: 22px;
    padding-right: 15px;
    padding-left: 24px;
    background: var(--content-background);
    position: relative;
}
.custom-select-decorator .selected-option {
    display: none;
}
.custom-select-decorator:after {
    content: " ";
    background: url(/files/image/icon-arrow-up-black.svg) center center no-repeat;
    height: 12px;
    width: 12px;
    position: absolute;
    right: 15px;
    top: 12px;
    transform: rotate(180deg);

}
.custom-select-decorator select {
    padding-right: 8px;
}
.filter-form {
    border:none;
    /*padding-right: 37px;*/
    width: 100%;
    margin: 0;
}
.filter-form select {

}
input:focus, textarea:focus, select:focus{
    outline: none;
}

input[type=checkbox], input[type=radio]{
    height: auto;
    width: auto;
    min-height: auto;
    min-width: auto;
}

.text-input{
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    border: var(--default-input-border);
    background: var(--default-input-background-color);
    min-height: 56px;
    border-radius: 28px;
    font-size: 20px;
}
.text-input input{
    border: none;
    border-radius: 0;
    background: none;
    padding: 0;
    font-size: inherit;
    width: 100%;
}
.text-input .before-input,
.text-input .after-input{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: inherit;
    padding: 0 15px 0 25px;
    flex-shrink: 0;
}
.text-input .before-input{
    color: var(--default-input-before-text-color);
}
.text-input .after-input{
    color: var(--default-input-after-text-color);
}
.text-input input{
    padding: 14px 0;
}
.text-input .fieldblock-error-message {
    top: 55px;
    right: 10px;
    background: transparent;
    text-align: right;
    padding:2px 20px 2px 0;
    width: 105%;
}
select{
    height: 34px;
}
select[size]{
    height: auto;
}
select{
    align-self: normal;
}

/* buttons */
button, .button{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    line-height: 1;
    font-weight: bold;
    cursor: pointer;
    padding: 9px 24px;
    border-radius: 18px;
    border: 2px solid #000000;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    vertical-align: middle;
    text-align: center;
    outline: none;
    white-space: nowrap;
    overflow: hidden;

}
button:focus, .button:focus{
    outline: none;
}

button:disabled, .button.disabled{
    cursor: not-allowed;
}
button:hover, .button:hover{
    text-decoration: none;
}
.button.primary{
    color: var(--primary-button-text-color);
    background: var(--primary-button-background-color);
    border: var(--primary-button-border);
    font-weight: bold;
}
.button.primary.disabled,.button.primary.disabled:hover{
    color: var(--primary-button-text-color);
    background: var(--darkgrey);
    border: none;
    font-weight: bold;
}
.button.primary:hover{
    background-color: var(--primary-button-background-color);
}
.button.primary.alternative{
    color: var(--primary-button-alternative-text-color);
    background: var(--primary-button-alternative-background-color);
    border: var(--primary-button-alternative-border);
}
.button.primary.alternative:hover {
    color: var(--primary-button-alternative-text-color);
    background: var(--primary-button-alternative-background-color);
    border: var(--primary-button-alternative-border);
}
.button.primary.alternative.disabled,.button.primary.alternative.disabled:hover {
    opacity: 0.5;
    box-shadow: 0 0 0 1px var(--primary-border-color), inset 0 0 0 1px var(--primary-border-color);
    border:none;
}
.button.secondary1{
    color: var(--secondary1-button-text-color);
    background: transparent;
    border: var(--secondary1-button-border);
}
.button.secondary1.alternative,.button.secondary1.alternative:hover{
    color: var(--secondary1-button-alternative-text-color);
    background: var(--secondary1-button-alternative-background-color);
    border: var(--secondary1-button-alternative-border);
}

.button.secondary1:hover {
    background-color: transparent;
}
.button.secondary1.disabled,.button.secondary1.disabled:hover {
    border: none;
    color: var(--darkgrey);
    box-shadow: 0px 0px 0px 2px rgba(136, 136, 136, 1) inset;

}
.button.secondary2{
    color: var(--secondary2-button-text-color);
    background: var(--secondary2-button-background-color);
    border: var(--secondary2-button-border);
}
.button.secondary2.disabled,.button.secondary2.disabled:hover {
    border: none;
    background-color: transparent;
}
.button.secondary2.alternative{
    color: var(--secondary2-button-alternative-text-color);
    background: var(--secondary2-button-alternative-background-color);
    border: var(--secondary2-button-alternative-border);
}
.button.secondary2:hover {
    background: var(--default-input-background-color);
}
.button.secondary3 {
    background-color: rgba(255, 255, 255, 1);
    color:var(--secondary1-button-text-color);
    border:none;
}

.a.disabled {
    color:var(--darkgrey);
    cursor: not-allowed;
}
.button.disabled {
    font-weight: 500;
    color: var(--default-text-color);

}
.segment-control-list{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: stretch;
    gap: 5px;
}
.segment-control{
    min-width: 105px;
    border: none;
    text-align: center;
    font-size:10px;
    font-weight: 500;
    line-height: 1;
    border: var(--segment-control-border);
    color: var(--segment-control-text-color);
    background: var(--segment-control-background-color);
    padding: 6px 8px;
}
.segment-control.dark {
    background: var(--default-input-background-color);
}
.segment-control.primary,
.segment-control.active{
     border: var(--primary-segment-control-border);
     color: var(--primary-segment-control-text-color);
     background: var(--primary-segment-control-background-color);
 }

.switch{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    background: var(--switch-background-color);
    color: var(--switch-text-color);
    padding: 2px;
    border-radius: 12px;
    gap:2px;
    overflow: hidden;
}
.switch label{
    font-size: 10px;
    font-weight: 500;
    line-height: 1;
    position: relative;
    background: inherit;
    margin: 0;
}
.switch label.disabled {
    background: var(--grey-alternative);
    border-radius: 12px;
}
.switch label span{
    padding: 4px 13px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    position: relative;
    z-index: 1;
    cursor: pointer;
}
.switch input[type=radio]{
    opacity:0;
    position: absolute;
    z-index: 0;
}
.switch input[type=radio]:checked+span{
    background: var(--switch-selected-background-color);
}
.options{
    position: relative;
    background: var(--options-background-color);
    color: var(--options-text-color);
    border: var(--options-border);
    border-radius: 35px;
    white-space: nowrap;
}
.options>.options-label{
    padding: 12px 24px;
    cursor: pointer;
    line-height: 1;
}
.options>.options-list{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
}
.options.active >.options-list,
.options:hover>.options-list{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 1px 0 0 0;
    padding: 0;
    list-style: none;
    background: var(--options-list-background-color);
    color: var(--options-list-text-color);
    border: var(--options-list-border);
    box-shadow: 0 0 3px #aaa;
    border-radius: var(--options-list-radius);
}
.options.active>.options-list>li,
.options:hover>.options-list>li{
    width: 100%;
    padding: 3px 15px;
    text-align: left;
    cursor: pointer;
}
.options.alternative{
    background: var(--options-alternative-background-color);
    color: var(--options-alternative-text-color);
    border: var(--options-alternative-border);
}
.expandable>.expand-button{
    margin: 0 !important;
    border-radius: unset;
}
.expandable>.expand-button.collapse-action{
    display: none;
}
.expandable.expanded>.expand-button.expand-action{
    display: none;
}
.expandable.expanded>.expand-button.collapse-action{
    display: block;
}

/* text */
.text-center{
    text-align: center;
}
.text-right{
    text-align: right;
}
.no-decoration{
    text-decoration: none;
}
.no-text{
    font-size: 0;
    line-height: 0;
}
.nowrap{
    white-space: nowrap;
}

/* flex */
.row{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.row.justify{
    justify-content: space-between;
}
.column{
    display: flex;
    flex-direction: column;
}

/* img size */
img.cover{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
img.contain{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* grid */
.grid-columns{
    display: grid;
    gap: 16px;
    align-items: flex-start;
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    width: 100%;
}
.grid-columns.compact{
    gap: 8px;
}
.grid-columns.grid-columns-1{
    grid-template-columns: 1fr;
}
.grid-columns.grid-columns-2{
    grid-template-columns: 1fr 1fr;
}
.grid-columns.grid-columns-3{
    grid-template-columns: 1fr 1fr 1fr;
}
.grid-columns.grid-columns-4{
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
.grid-columns.grid-columns-5{
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
.grid-columns.grid-columns-2-1{
    grid-template-columns: 2fr 1fr;
}
.grid-columns.grid-columns-1-2{
    grid-template-columns: 1fr 2fr;
}
.grid-columns.grid-columns-1-2-1{
    grid-template-columns: 1fr 2fr 1fr;
}
.grid-columns.grid-columns-3-1{
    grid-template-columns: 3fr 1fr;
}
.grid-columns.grid-columns-1-3{
    grid-template-columns: 1fr 3fr;
}
.grid-columns.grid-columns-1-3-1{
    grid-template-columns: 1fr 3fr 1fr;
}
.grid-columns.grid-columns-4-1{
    grid-template-columns: 4fr 1fr;
}
.grid-columns.grid-columns-1-4{
    grid-template-columns: 1fr 4fr;
}
.grid-columns.grid-columns-1-4-1{
    grid-template-columns: 1fr 4fr 1fr;
}
.grid-columns.grid-columns-auto-1{
    grid-template-columns: auto 1fr;
}
.grid-columns>.grid-entire-row{
    grid-column: 1 / -1;
}
.grid-columns.stretch{
    align-items: stretch;
}
ul.grid-columns, ol.grid-columns{
    list-style: none;
    padding: 0;
}
.hidden{
    display: none!important;
}
.no-padding{
    padding: 0 !important;
}
.no-padding-horizontal{
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.no-padding-vertical{
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.no-margin{
    margin: 0 !important;
}
.no-margin-horizontal{
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.no-margin-vertical{
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
/* dropdown */
.dropdown{
    display: none;
    position: absolute;
    margin: 0;

}
.dropdown.dropdown-down{
    top: 100%;
}
.dropdown.dropdown-top{
    bottom: 100%;
}
.dropdown.dropdown-left{
    right: 0;
}
.dropdown.dropdown-right{
    left: 0;
}
ul.dropdown {
    list-style:none;
    gap: 16px;
    display: none;
    flex-direction: column;
}
ul.dropdown li {
    margin:  0;
    padding: 0;

}
ul.dropdown li i {
    margin-right: 10px;
}
ul.dropdown li.delimiter {
    border-top:1px solid var(--default-border-color);
    margin-right: -16px;
    margin-left: -16px;
}

.dropdown.expanded{
    display: flex;
}
*:hover>.dropdown>ul{
    /*display: block;*/
}

/* navigations */
nav ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background: inherit;
}
nav li{
    margin: 0;
    padding: 0;
    position: relative;
}

nav a{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    width: 100%;
    height: 100%;
    min-height: inherit;
}
nav.vertical>ul>li{
    margin-top: 5px;
}
nav.vertical>ul>li:first-child{
    margin-top: 0;
}
nav.horizontal>ul,
nav.horizontal>div>ul{
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
nav.horizontal>ul>li,
nav.horizontal>div>ul>li{
    margin-left: 15px;
}
nav.horizontal>div>ul>li:first-child,
nav.horizontal>ul>li:first-child{
    margin-left: 0;
}

nav.nowrap a{
    white-space: nowrap;
}
nav ul ul{
    display: none;
    z-index: 10;
}
nav ul li:hover>ul{
    display: block;
}
nav li li,
nav li a{
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}
nav li a:hover{
    color: initial;
    text-decoration: initial;
}
/* page-title */
.page-title{
    margin: 10px 16px 16px;
}

/* flex table */
/* flex-table */
.flex-table-wrapper {
    position: relative;
}
.flex-table {
    width: 100%;
    display: inline-block;
    margin: 0;
    font-size: 14px;
    line-height: 16px;
}
.flex-table .flex-table-body .flex-table-row{
    margin-bottom:0;
}

.flex-table .flex-table-cell{
    width: 100%;
    min-width: 50px;
    flex-shrink: 1;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 6px 20px;
    font-size: 13px;
    line-height: 19px;
    font-weight: 500;
    background: none;
    border: none;
    position: relative;
    word-wrap: break-word;
}
.flex-table .flex-table-cell>.cell-title{
    display: none;
    margin-right: 5px;
}

.flex-table .flex-table-title .flex-table-cell {
    padding: 0 16px 7px 16px;
}
.table-footer-block {
    padding: 7px 16px;
}
.flex-table .flex-table-title .flex-table-cell,
.flex-table .flex-table-title .flex-table-cell a{
    flex-wrap: nowrap;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    color: inherit;
    align-items: center;
}
.flex-table .flex-table-title .flex-table-cell.sortable{
    position: relative;
}
.flex-table .flex-table-title .flex-table-cell.sortable::after{
    opacity: 0;
}
.flex-table .flex-table-title .flex-table-cell.sortable a{
    position: relative;
}
.flex-table .flex-table-title .flex-table-cell.sortable a::after{
    content: "↕";
    margin: 0 0 0 6px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.5s ease;
    font-size: 15px;
    line-height: 15px;
    position: absolute;
    left: 100%;
    top: 0;
}
.flex-table .flex-table-title .flex-table-cell.sortable:hover a::after{
    opacity: 1;
}
.flex-table .flex-table-title .flex-table-cell.sortable.sort-asc a,
.flex-table .flex-table-title .flex-table-cell.sortable.sort-desc a{
    border: none;
}
.flex-table .flex-table-title .flex-table-cell.sortable.sort-desc a::after{
    content: "\25be";
    opacity: 1;
}
.flex-table .flex-table-title .flex-table-cell.sortable.sort-asc a::after{
    content: "\25b4";
    opacity: 1;
}

.flex-table .flex-table-subtitle{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px;
}
.flex-table .flex-table-title,
.flex-table .flex-table-subtitle{
    font-style: normal;
    font-size: 14px;
    line-height: 17px;
    text-align: left;
    /*text-transform: uppercase;*/
}
.flex-table .flex-table-title{
    position: relative;
    margin-bottom: 5px;
}
.flex-table .flex-table-cell .fieldblock>label{
    display: none;
}

.flex-table .flex-table-cell .modal .fieldblock>label{
    display: block;
}

.flex-table .flex-table-cell .fieldblock-error{
    top: -20px;
    left: 0;
    width: 100px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.flex-table .flex-table-cell .fieldblock-error:hover{
    white-space: normal;
    box-shadow: 0 0 3px #aaa;
    width: 200px;
    background: #ffffff;
    padding: 10px;
    z-index: 10;
}
.flex-table > .flex-table-title {
    position: sticky;
    top: 0;
    /*z-index: 1;*/
    justify-content: space-between;
    background: #FFFFFF;
}
.flex-table.dashboard > .flex-table-title {
    top: -20px;
}
.flex-table .flex-table-title, .flex-table .flex-table-body {
    display: inline-block;
    min-width: 100%;
    width: 100%;
}
.flex-table .flex-table-cell.buttons a{
    padding-left: 10px;
}
.flex-table  .flex-table-cell.buttons a:first-child{
    padding-left: initial;
}
.flex-table .flex-table-cell.actions a,
.flex-table .flex-table-cell.actions button,
.flex-table .flex-table-cell.actions .button{
    font-size: 14px;
    line-height: 16px;
    padding: 3px 6px;
    display: inline-block;
    font-weight: 300;
    text-transform: none;
    margin-left: 5px;
    min-height: auto;
    min-width: auto;
}
.flex-table .flex-table-cell.actions a:first-of-type,
.flex-table .flex-table-cell.actions button:first-of-type,
.flex-table .flex-table-cell.actions .button:first-of-type{
    margin-left: 0;
}
.flex-table .flex-table-title{
    display: flex;
    flex-direction: row;
}
.flex-table .flex-table-title,
.flex-table .flex-table-head,
.flex-table .flex-table-body{
    display: inline-block;
    min-width: 100%;
    width: 100%;
}
.flex-table .flex-table-row{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;

}
.flex-table .flex-table-cell.flex-table-title{
    text-align: left;
    justify-content: flex-start;
}
.flex-table.compact .flex-table-cell{
    padding: 8px 13px 8px 4px;
}
.flex-table .flex-table-template-row{
    display: none;
}
.content-wrapper>.stretch-content-wrapper .flex-table-wrapper{
    margin-left: 20px;
    margin-right: 20px;
}
.content-wrapper>.stretch-content-wrapper .flex-table-row{
    padding-left: 40px;
    padding-right: 40px;
}
/* pager */
.pages {
    display: flex;
    flex-direction: row;
    padding: 16px;
    align-items: center;
    width: 100%;
}
.pages ul {
    margin-left: 10px;
}
.pages ul li {
    margin: 0 3px;
}
.pages a,.pages noa,.pages.short-pages .disabled,.pages span {
    display: block;
    height: 40px;
    width: 40px;
    padding: 12px;
    border-radius: 20px;
    text-align: center;
}
.pages .active span{
    font-weight: 600;
}
.page_jump input {
    width: 50px;
    height: 40px;
    padding: 0 5px;
    text-align: right;
    margin: 0 3px;
    min-height: auto;
}
.short-pages .disabled {
    opacity: 0.5;
}
.pages.short-pages svg {
    width: 100%;
    height: 100%;
}
.pages.short-pages button {
    margin: 0 5px;
}
.pages ul {
    display: flex;
    flex-direction: row;
}
.pages.short-pages a,.pages.short-pages noa {
    background: none;
}
.pages.short-pages button svg {
    width: 25px;
    height: 18px;
}
.pages form{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    white-space: nowrap;
}


/* fieldblock */
.fieldblock{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 0 0 22px 0;
    max-width: 100%;
    width: 100%;
    position: relative;
}

.fieldblock>.from-to-fieldblock,.fieldblock .from-to-block{
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
}
.fieldblock.fieldblock-width-2{
    width: 160px;
}
.fieldblock.fieldblock-width-3{
    width: 240px;
}
.fieldblock-type-hidden {
    display: none;
}
.fieldblock>label,
.fieldblock>.fieldblock-label-block{
    margin: 0 0 5px 0;
    max-width: 100%;
}
.fieldblock>label {
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    margin-bottom: 5px;
}

.fieldblock>.fieldblock-input-block{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}
.fieldblock>.fieldblock-input-block>input,
.fieldblock>.fieldblock-input-block>select{
    margin-right: 10px;
}

.fieldblock-buttons{
    margin: 20px 0 0 0;
}
.fieldblock.fieldblock-horizontal{
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 0 0 10px 0;
}

.fieldblock.fieldblock-horizontal>label,
.fieldblock.fieldblock-horizontal>.fieldblock-label-block{
    margin: 0 10px 0 0;
}
.fieldblock .fieldblock-label-block{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
}
.fieldblock .fieldblock-label-block input+label{
    margin: 0 0 0 10px;
}

.fieldblock.fieldblock-horizontal{
    display: flex;
    flex-direction: row;
}
.fieldblock.fieldblock-horizontal.wrap{
    flex-wrap: wrap;
}

.fieldblock>.from-to-fieldblock input+input{
    margin-left: 5px;
}
.fieldblock.fieldblock-buttons{
    flex-direction: row;
    align-items: center;
}
.fieldblock.fieldblock-buttons button,
.fieldblock.fieldblock-buttons .button{
    margin-left: 20px;
}
.fieldblock.fieldblock-buttons button:first-child,
.fieldblock.fieldblock-buttons .button:first-child{
    margin-left: 0;
}
.fieldblock.fieldblock-buttons>.expand-button-widget{
    margin-left: 20px;
}
.fieldblock.fieldblock-checkbox{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}
.fieldblock.fieldblock-disabled {
    opacity: 0.6;
}
.fieldblock.fieldblock-checkbox input[type=checkbox] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 24px;
    width: 24px;
    z-index: 1;
}

.fieldblock.fieldblock-checkbox .checkmark {
    height: 24px;
    width: 24px;
    background: url(/files/image/icon-checkbox.svg) center center no-repeat;
    background-size: contain;
}
.fieldblock.fieldblock-checkbox.checked .checkmark {
    background: url(/files/image/icon-checkbox-checked.svg) center center no-repeat;
}
.fieldblock.fieldblock-checkbox.fieldblock-error .checkmark {
    border: 1px solid var(--red);
    border-radius: 24px;
}
.fieldblock-error-message {
    position: absolute;
    top: 100%;
    left: 0px;
    font-size: 13px;
    color:var(--red);
    /*background: var(--white);*/
    padding: 2px 20px;
}
.fieldblock .checking-icon {
    display: none;
}
.fieldblock.fieldblock-checkbox label{
    order: 2;
    margin: 0 0 0 12px;
}
.fieldblock-row{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}
.fieldblock-row>.fieldblock{
    margin-left: 15px;
}
.fieldblock-row>.fieldblock:first-of-type{
    margin-left: 0;
}

.fieldblock input[type=text],
.fieldblock input[type=password],
.fieldblock select,
.fieldblock textarea{
    width: 100%;

}
.text-input.focus,
.fieldblock input:focus,
.fieldblock textarea:focus{
    outline: 1px solid var(--primary-border-color);
}
.text-input .fieldblock input:focus,
.text-input .fieldblock.fieldblock-error input {
    outline: none;
}
.fieldblock.fieldblock-error > .custom-select-decorator,
.text-input.fieldblock-error,
.fieldblock.fieldblock-error input,
.fieldblock.fieldblock-error textarea,
.fieldblock.fieldblock-error > select {
    outline: 1px solid var(--red);
    border: none;
}

.fieldblock textarea{
    resize: none;
    height: 192px;
}

.fieldblock-list{
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}
.fieldblock-list>li{
    padding-left: 0;
}
.fieldblock-list>.extra-field{
    display: none;
}
.fieldblock-list.expanded>.extra-field{
    display: flex;
}
.fieldblock-hidden{
    margin: 0;
    padding: 0;
}

.fieldblock.fieldblock-wo-label label{
    display: none;
}

.fieldblock.fieldblock-label-left{
    flex-direction: row;
    align-items: center;
}

.fieldblock.fieldblock-label-left label{
    display: inline-block;
    flex-shrink: 0;
}
.fieldblock.fieldblock-label-right label {
    margin-left: 10px;
    order: 2;
}

.fieldblock.fieldblock-type-image input[type=file] {
    display: none;
}
/* backgrounds */
.primary-background{
    background: var(--primary-background-color);
}
.secondary-background{
    background: var(--secondary-background-color);
}
.secondary2-background{
    background: var(--secondary2-background-color);
}


/* icons */
.icon{
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url(/files/image/icon-template.png) center center no-repeat;
    background-size: contain;
}
.icon.icon-top-up{
    background: url(/files/image/top-up-icon.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-notification{
    background: url(/files/image/icon-notification.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-dots{
    background: url(/files/image/icon-dots.svg) center center no-repeat;
    height: 36px;
    width: 36px;
    background-size: contain;
}
.icon.icon-flag {
    background: url(../image/flag/xx.svg) center center no-repeat;
    background-size: contain;
    width: 24px;
    height: 16px;
}
.icon.icon-flag.en,.icon.icon-flag-usa{
    background: url(/files/image/flag/us.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-flag.ua{
    background: url(/files/image/flag/ua.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-flag.es{
    background: url(/files/image/flag/es.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-flag.ru{
    background: url(/files/image/flag/ru.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-flag.it{
    background: url(/files/image/flag/it.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-flag.vi{
    background: url(/files/image/flag/vn.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-flag.tr{
    background: url(/files/image/flag/tr.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-flag.de{
    background: url(/files/image/flag/de.svg) center center no-repeat;
    background-size: contain;
}

.icon.icon-profile{
    background: url(/files/image/icon-profile.png) center center no-repeat;
    background-size: contain;
}
/* left navigation */
.icon.icon-settings{
    background: url(/files/image/settings-icon-inactive.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-burger{
    background: url(/files/image/burger-icon-inactive.svg) center center no-repeat;
    background-size: contain;
    height: 36px;
    width: 36px;
}
.icon.icon-balance{
    background: url(/files/image/balance-icon-inactive.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-dashboard{
    background: url(/files/image/dashboard-icon-inactive.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-package{
    background: url(/files/image/packages-icon-inactive.svg) center center no-repeat;
    background-size: contain;
}

.icon.icon-package.p1,
.icon.icon-package.pkg1{
    background: url(/files/image/icon-package-p1.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-package.p2,
.icon.icon-package.pkg2 {
    background: url(/files/image/icon-package-p2.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-package.p3,
.icon.icon-package.pkg3{
    background: url(/files/image/icon-package-p3.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-package.p4,
.icon.icon-package.pkg4 {
    background: url(/files/image/icon-package-p4.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-package.p5,
.icon.icon-package.pkg5 {
    background: url(/files/image/icon-package-p5.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-package.p6,
.icon.icon-package.pkg6 {
    background: url(/files/image/icon-package-p6.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-package.p7,
.icon.icon-package.pkg7 {
    background: url(/files/image/icon-package-p7.svg) center center no-repeat;
    background-size: contain;
}


.icon.icon-package.p0,
.icon.icon-package.pkg0 {
    background: url(/files/image/icon-package-p0.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-package.pro {
    background: url(/files/image/icon-package-p00.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-team{
    background: url(/files/image/team-icon-inactive.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-vouchers{
    background: url(/files/image/vouchers-icon-inactive.svg) center center no-repeat;
    background-size: contain;
}
/* left navigation - active*/
.active .icon.icon-settings,
.icon.icon-settings.active{
    background-image: url(/files/image/settings-icon-active.svg);
}
.active .icon.icon-balance{
    background-image: url(/files/image/balance-icon-active.svg);
}
.active .icon.icon-dashboard{
    background-image: url(/files/image/dashboard-icon-active.svg);
}
.active .icon.icon-package{
    /*background-image: url(/files/image/packages-icon-active.svg);*/
}
.active .icon.icon-team{
    background-image: url(/files/image/team-icon-active.svg);
}
.active .icon.icon-vouchers{
    background-image: url(/files/image/vouchers-icon-active.svg);
}
.active .icon.icon-burger{
    background-image: url(/files/image/burger-icon-active.svg);
}

.icon.icon-copy{
    background: url(/files/image/icon-copy.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-account-current{
    background: url(/files/image/account-current-icon.svg) center center no-repeat;
    background-size: contain;
    width: 24px;
    height: 24px;
}
.icon.icon-account-credit{
    background: url(/files/image/account-credit-icon.svg) center center no-repeat;
    background-size: contain;
    width: 24px;
    height: 24px;
}
.icon.icon-account-vouchers{
    background: url(/files/image/account-vouchers-icon.svg) center center no-repeat;
    background-size: contain;
    width: 24px;
    height: 24px;
}
.icon.icon-account-tokens{
    background: url(/files/image/account-tokens-icon.svg) center center no-repeat;
    background-size: contain;
    width: 24px;
    height: 24px;
}
.icon.icon-account-points{
    background: url(/files/image/account-tokens-icon.svg) center center no-repeat;
    background-size: contain;
    width: 24px;
    height: 24px;
}

.icon.icon-filter{
    background: url(/files/image/icon-filter.svg) center center no-repeat;
    background-size: contain;
    width: 24px;
    height: 24px;
}
.icon.icon-plus{
    background: url(/files/image/icon-plus.svg) center center no-repeat;
    background-size: contain;
    width: 14px;
    height: 14px;
}
.icon.icon-minus{
    background: url(/files/image/icon-minus.svg) center center no-repeat;
    background-size: contain;
    width: 16px;
}
.icon.icon-arrow-up {
    background: url(/files/image/icon-arrow-up.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-arrow-left{
    background: url(/files/image/icon-arrow-up.svg) center center no-repeat;
    background-size: contain;
    transform: rotate(-90deg);

}
.icon.icon-arrow-right{
    background: url(/files/image/icon-arrow-up.svg) center center no-repeat;
    background-size: contain;
    transform: rotate(90deg);

}
.icon.icon-arrow-down {
    background: url(/files/image/icon-arrow-up.svg) center center no-repeat;
    background-size: contain;
    transform: rotate(180deg);
}
.icon.icon-arrow-down.black,
.icon.icon-arrow-up.black,
.icon.icon-arrow-left.black,
.icon.icon-arrow-right.black
{
    background: url(/files/image/icon-arrow-up-black.svg) center center no-repeat;
}
.icon.icon-arrow-up.white,
.icon.icon-arrow-down.white,
.icon.icon-arrow-left.white
{
    background: url(/files/image/icon-arrow-up-white.svg) center center no-repeat;
}

.icon.icon-user {
    background: url(/files/image/icon-user.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-history {
    background: url(/files/image/icon-history.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-package-blue {
    background: url(/files/image/icon-package-blue.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-income {
    background: url(/files/image/icon-income.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-transfer {
    background: url(/files/image/icon-transfer.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-user-black {
    background: url(/files/image/icon-blackuser.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-user-blue {
    background: url(/files/image/icon-blueuser.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-send {
    background: url(/files/image/icon-send-primary.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-info {
    background: url(/files/image/icon-info.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-camera {
    background: url(/files/image/icon-camera.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-exit {
    background: url(/files/image/icon-exit.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-voucher-blue {
    background: url(/files/image/icon-voucher-blue.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-close{
    background: url(/files/image/icon-close.svg) center center no-repeat;
    background-size: contain;
}
.primary > .icon.icon-close{
    background: url(/files/image/icon-close-primary.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-error.accent{
    background: url(/files/image/icon-error-accent.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-success{
    background: url(/files/image/icon-success.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-error{
    background: url(/files/image/icon-error.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-confirm{
    background: url(/files/image/icon-confirm.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-check{
    background: url(/files/image/icon-check.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-checkbox{
    background: url(/files/image/icon-checkbox.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-checkbox-checked{
    background: url(/files/image/icon-checkbox-checked.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-xmark{
    background: url(/files/image/icon-xmark.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-exchange{
    background: url(/files/image/icon-exchange.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-exchange-2{
    background: url(/files/image/icon-exchange.svg) center center no-repeat;
    background-size: contain;
    transform: rotate(90deg);
}
.icon.icon-exchange-white{
    background: url(/files/image/icon-exchange-white.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-dollar{
    background: url(/files/image/icon-dollar.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-token{
    background: url(/files/image/icon-token.svg) center center no-repeat;
    background-size: contain;

}
.icon.icon-token2{
    background: url(/files/image/icon-token2.svg) center center no-repeat;
    background-size: contain;
    height: 21px;
    width: 21px;
}
.icon.icon-faq{
    background: url(/files/image/icon-faq.svg) center center no-repeat;
    background-size: contain;
    height: 40px;
    width: 40px;

}
.icon.icon-contact {
    background: url(/files/image/icon-contact.svg) center center no-repeat;
    background-size: contain;
    height: 40px;
    width: 40px;
}
.icon.icon-security {
    background: url(/files/image/icon-security.svg) center center no-repeat;
    background-size: contain;
    height: 40px;
    width: 40px;
}
.icon.icon-logo {
    background: url(/files/image/logo-blue.svg) center center no-repeat;
    background-size: contain;
    height: 40px;
    width: 40px;
}
.icon.icon-video {
    background: url(/files/image/icon-video.svg) center center no-repeat;
    background-size: contain;
    height: 40px;
    width: 40px;
}

.icon.icon-desktop {
    background: url(/files/image/icon-desktop.svg) center center no-repeat;
    background-size: contain;
    height: 40px;
    width: 40px;
}
.icon.icon-mobile {
    background: url(/files/image/icon-mobile.svg) center center no-repeat;
    background-size: contain;
    height: 40px;
    width: 40px;
}
.icon.icon-globe{
    background: url(/files/image/icon-globe.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-tip{
    background: url(/files/image/icon-tip.svg) center center no-repeat;
    background-size: contain;
}

.icon.icon-hyperhub{
    background: url(/files/image/icon-hyperhub.svg) center center no-repeat;
    background-size: contain;
    height: 22px!important;
    width: 22px!important;
    margin-top: 2px;

}
.icon.icon-wizzesuite{
    background: url(/files/image/icon-wizzesuite.svg) center center no-repeat;
    background-size: contain;
    height: 22px!important;
    width: 22px!important;
}
.icon.icon-wizzebuilder{
    background: url(/files/image/icon-wizzebuilder.svg) center center no-repeat;
    background-size: contain;
    height: 22px!important;
    width: 22px!important;
}
.icon.icon-video-black{
    background: url(/files/image/icon-video-black.svg) center center no-repeat;
    background-size: contain;
    height: 40px;
    width: 40px;
}
.icon.icon-wizze{
    background: url(/files/image/icon-wizze.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-hyperhub-blue{
    background: url(/files/image/icon-hyperhub-blue.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-question{
    background: url(/files/image/icon-question.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-telegram{
    background: url(/files/image/icon-telegram.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-promo{
    background: url(/files/image/icon-promo.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-task{
    background: url(/files/image/icon-task.svg) center center no-repeat;
    background-size: contain;
}
nav ul li .icon.icon-promo {
    background-size: 16px 16px;
}
body {
    scrollbar-width:thin;
}
::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-track {
    background: #EAECED;
}
::-webkit-scrollbar-thumb {
    background: #888888;
}
#registration-form .fieldblock-password.fieldblock-error{
    margin-bottom: 36px;
}
.fieldblock.fieldblock-with-before input:focus {
    outline: none;
    border:  1px solid var(--primary-border-color);
    border-left: none;
}
.fieldblock.fieldblock-with-before .before-input.focus {
    border:  1px solid var(--primary-border-color);
    border-right: none;
}

.withdraw-fee{
    color: var(--package-p3-color);
    margin: 20px 0 0 0;
}
.icon.icon-optima{
    background: url(/files/image/icon-optima.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-star{
    background: url(/files/image/icon-star.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-star-half{
    background: url(/files/image/icon-star-half.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-calendar{
    background: url(/files/image/icon-calendar.svg) center center no-repeat;
    background-size: contain;
}
.icon.icon-optima-black{
     background: url(/files/image/icon-optima-black.svg) center center no-repeat;
     background-size: contain;
}
.icon.icon-career{
    background: url(/files/image/icon-career.svg) center center no-repeat;
    background-size: contain;
}
.icon.bar-icon-career {
    background: url(/files/image/icon-career-blue.svg) center center no-repeat;
    background-size: contain;
}
.icon.bar-icon-career.achieved {
    background: url(/files/image/icon-career-blue-achieved.svg) center center no-repeat;
    background-size: contain;
}
.icon.bar-icon-bonus {
    background: url(/files/image/icon-bonus.svg) center center no-repeat;
    background-size: 19px 19px;
}