@import "./vars.css";

.hidden {
    display: none;
}


#system-msg-box {
    width: 90%;
    height: 40px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 70px;
    padding: 0px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-weight: bold;
    font-size: 16px; /* 12px */
    color: #fff;
    border-radius: 5px;
    z-index: 100000000000000;
}

#system-msg-box.success {
    background-color: rgba(0, 128, 0, 1.0);
    padding-top: 10px;
}

#system-msg-box.error {
    background-color: rgba(128, 0, 0, 1.0);
    padding-top: 10px;
}

#system-msg-box.notice {
    background-color: rgba(205, 127, 50, 1.0);
    padding-top: 10px;
}

#system-msg-box.wait {
    background-color: rgba(170, 170, 170, 1.0);
}

#system-msg-box.wait img {
    width: 25px;
    position: relative;
    right: 4px;
    top: 7px;
}

.sub-heading {
    padding: 20px 0;
    border-bottom: 1px solid var(--lightest-grey-color);
    line-height: 1;
    margin: 0;
    font-weight: 600;
    font-size: 14px;
}
h1 + .sub-heading {
    padding-top: 0;
}
.account-field {
    border-bottom: 1px solid var(--lightest-grey-color);
    padding: 12px;
    font-size: 14px;
}
.account-field .show-field {
    display: flex;
    align-items: center;
}
.account-field .show-field > label {
    flex: 2;
    color: var(--grey-color);
    padding-right: 10px;
}
.account-field .show-field > .value {
    flex: 2;
    position: relative;
}
.account-field .show-field > .edit {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}
.account-field .show-field > .edit a {
    color: #555;
    display: inline-flex;
    width: 24px;
    height: 24px;
    border: 1px solid var(--lightest-grey-color);
    border-radius: var(--border-radius);
    align-items: center;
    justify-content: center;
    font-size: 10px;
}
.account-field .show-field > .edit a:hover {
    color: #fff;
    background: #6BC188;
    border-color: #6BC188;
}
.account-field > .error {
    flex: 0 0 100%;
}
.account-field + .sub-heading {
    margin-top: 20px;
}
.account-field .text-input, .account-field .select-input, .account-field .textarea {
    width: 100%;
    min-width: 345px;
}
.account-field label .show {
    display: none;
    height: 36px;
    align-items: center;
}
.account-field label .show + .show {
    margin-top: 20px;
}
.account-field.editing {
    align-items: flex-start;
    padding: 20px 12px;
}
.account-field.editing .error {
    color: var(--main-color);
    margin-bottom: 20px;
}
.account-field.editing > .show-field > .value,
.account-field.editing > .show-field > .edit {
    display: none;
}
.account-field.editing > .edit a, .account-field.editing > .value {
    display: none;
}
.account-field.editing label .hide {
    display: none;
}
.account-field.editing label .show {
    display: flex;
}
.account-field.success .show-field > .value::before {
    position: absolute;
    left: -25px;
    font-size: 14px;
    top: 0;
    bottom: 0;
    margin: auto;
    color: #00c910;
    content: '\e90b';
    font-family: 'icomoon';
}
.account-field.editing > .edit-field {
    display: block;
}
.account-field.editing .show-field > label {
    color: #C4C4C4;
    font-weight: 500;
}
.account-field > .edit-field {
    display: none;
    margin-top: 25px;
}
.account-field > .edit-field .input {
    display: flex;
    align-items: center;
}
.account-field > .edit-field .input + .input {
    margin-top: 20px;
}
.account-field > .edit-field .input > label {
    width: 230px;
}
.account-field > .edit-field .input .text-field,
.account-field > .edit-field .input select,
.account-field > .edit-field .input textarea {
    width: 350px;
}
.account-field > .edit-field .input .text-field + .checkbox,
.account-field > .edit-field .input textarea + .checkbox,
.account-field > .edit-field .input select + .checkbox {
    margin-left: 20px;
}
.account-field > .edit-field .checkbox .note {
    margin-left: 10px;
}
.account-field > .edit-field .buttons {
    margin-top: 20px;
    display: flex;
    align-items: center;
    margin-left: 230px;
}
.account-field > .edit-field .buttons .save {
    height: 48px;
    margin-right: 20px;
}
.account-field > .edit-field .buttons .cancel {
    text-decoration-line: underline;
}
.account-field > .edit-field .buttons .cancel:hover {
    text-decoration: none;
}
.account-field > .edit-field .modal-trigger {
    margin-bottom: 20px;
}
.account-field > .edit-field .minimize {
    color: #666663;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    margin-top: 30px;
}
.account-field > .edit-field .minimize i {
    transform: rotate(180deg);
    margin-left: 5px;
    font-size: 4px;
    height: 4px;
}

.account-fields > .heading {
    font-weight: 600;
    font-size: 14px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--lightest-grey-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
}
.account-fields > .heading .edit {
    width: 24px;
    height: 24px;
    font-size: 10px;
    align-items: center;
    justify-content: center;
    display: flex;
    border-radius: var(--border-radius);
    border: 1px solid var(--lightest-grey-color);
}
.account-fields .error {
    margin-bottom: 20px;
}
.account-fields + .account-fields {
    margin-top: 40px;
}
.account-fields .show-fields .field {
    margin-top: 20px;
}
.account-fields .show-fields .field {
    display: flex;
    flex-direction: row;
}
.account-fields .show-fields .field label {
    flex: 0 0 30%;
    width: 30%;
    padding-right: 10px;
    color: var(--grey-color);
    margin: 0;
}
.account-fields.main-fields .field label {
    color: var(--green-color);
}
.account-fields.main-fields .field label.empty {
    color: var(--main-color);
}
.account-fields.main-fields .field label.normal {
    color: var(--grey-color);
}
.account-fields .show-fields .field .value > p:first-child {
    margin-top: 0;
}
.account-fields .show-fields .field .value.checkbox-value {
    color: var(--main-color)
}
.account-fields .show-fields .field .value.checkbox-value.checked {
    color: var(--green-color)
}
.account-fields .show-fields .field .value {
    flex: 0 0 70%;
    width: 70%;
}
.account-fields .show-fields .field .value img {
    max-width: 100%;
    width: auto !important;
}
.account-fields .show-fields .field .value .confirmed {
    color: var(--green-color);
}
.account-fields .show-fields .field .value .not-confirmed {
    color: var(--main-color);
}
.account-fields .edit-fields {
    display: none;
}
.account-fields.editing .edit-fields {
    display: block;
}
.account-fields.editing .show-fields {
    display: none;
}
.account-fields .edit-fields .heading {
    color: #C4C4C4;
    font-weight: 500;
    font-size: 14px;
    margin-top: 20px;
}
.account-fields .edit-fields .edit-field + .heading {
    margin-top: 40px;
}
.account-fields .edit-fields .edit-field {
    margin-top: 20px;
}
.account-fields .edit-fields .input {
    display: flex;
    align-items: center;
}
.account-fields .edit-fields .input > label {
    flex: 2 2;
    max-width: 240px;
}
.account-fields .edit-fields .input input,
.account-fields .edit-fields .input .text-field,
.account-fields .edit-fields .input .textarea,
.account-fields .edit-fields .input select {
    max-width: 345px;
    flex: 3 3;
}
.account-fields .edit-fields .input [type="text"],
.account-fields .edit-fields .input textarea {
    border-color: var(--main-color);
}
.account-fields .edit-fields .input [type="text"].has-value,
.account-fields .edit-fields .input textarea.has-value {
    border-color: var(--green-color);
}
.account-fields .edit-fields .buttons {
    margin-top: 15px;
}

.switcher label {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.switcher label span {
    margin-left: 25px;
}
.switcher label::before {
    content: '';
    flex: 0 0 54px;
    width: 54px;
    height: 28px;
    box-sizing: border-box;
    border: 4px solid #f6f6f6;
    background: var(--main-color);
    border-radius: 14px;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    transition: background .3s;
}
.switcher label::after {
    cursor: pointer;
    content: '';
    display: block;
    position: absolute;
    width: 22px;
    height: 22px;
    left: 3px;
    transition: left .3s;
    background: #FFFFFF;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    top: 0;
    bottom: 0;
    margin: auto;
}
.switcher input {
    display: none;
}
.switcher input:disabled + label:before {
    background: var(--lightest-grey-color);
}
.switcher input:disabled + label:after,
.switcher input:disabled + label:before {
    cursor: default;
}
.switcher input:checked + label::before {
    background: var(--green-color);
}
.switcher input:checked + label::after {
    left: 29px;
}

.info-block {
    background: rgba(255, 239, 215, 0.6);
    border: 1px solid #F7EAD9;
    border-radius: var(--border-radius);
    padding: 16px 20px 16px 58px;
    max-width: 100%;
    font-weight: 400;
    font-size: 13px;
    margin-top: 30px;
    position: relative;
    line-height: 18px;
}
.info-block::before {
    content: '\e90e';
    font-family: 'icomoon';
    font-size: 18px;
    display: inline-block;
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    height: 18px;
    margin: auto;
}
.info-block a:not(.button-red) {
    color: var(--main-color);
    font-weight: 600;
    text-decoration: underline;
}
.info-block .info-block-toggle {
    display: flex;
    font-weight: 500;
    font-size: 13px;
    justify-content: space-between;
    cursor: pointer;
    align-items: center;
}
.info-block .info-block-toggle::after {
    content: '\e909';
    font-family: 'icomoon';
    font-size: 6px;
    display: inline-flex;
    height: 6px;
    transition: transform .3s;
    align-items: center;
}
.info-block .info-block-content {
    display: none;
}
.info-block.active .info-block-content {
    display: block;
}
.info-block.active .info-block-toggle::after {
    transform: rotate(180deg);
}
.info-block.toggle::before {
    top: 16px;
    margin: 0;
}
.info-block p:first-child, .content-block .body p:first-child {
    margin-top: 0;
}
.info-block p:last-child, .content-block .body p:last-child, .info-block ul:last-child {
    margin-bottom: 0;
}
.info-block.no-icon {
    padding-left: 20px;
}
.info-block.no-icon::before {
    display: none;
}
.text-info {
    color: var(--grey-color);
    margin-top: 30px;
    font-size: 14px;
}
.error {
    border: 1px solid #ee8388;
    background: #f3c4c6;
    padding: 10px;
    border-radius: var(--border-radius);
}

.prof-field {
    padding-top: 20px;
}
.prof-field > label {
    margin-bottom: 16px;
    color: var(--grey-color);
    font-weight: 400;
    font-size: 14px;
    display: flex;
    align-items: center;
}
.prof-field > label span {
    height: 16px;
    border-radius: 5px;
    background-color: var(--main-color);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    font-weight: 700;
    font-size: 9px;
    margin-left: 10px;
}
.prof-field > label span.filled {
    background-color: var(--green-color);
}
.prof-field input[type="text"] {
    min-width: 354px;
    width: auto;
}
.prof-field + .prof-field, .info-block + .prof-field.expandable {
    border-top: 1px solid var(--lightest-grey-color);
    margin-top: 20px;
}
.prof-field .checkbox + .checkbox, .prof-field .radio + .radio {
    margin-top: 10px;
}
.prof-field .checkbox label {
    font-weight: 400;
    font-size: 12px;
}
.prof-field.expandable {
    padding: 0 12px 4px;
    margin-top: 0;
}
.prof-field.expandable .prof-field-content {
    display: none;
    padding-bottom: 16px;
}
.prof-field.expandable > label {
    justify-content: space-between;
    cursor: pointer;
    padding: 20px 0 16px;
    margin: 0;
}
.prof-field.expandable > label i {
    color: #8A8A8A;
    font-size: 6px;
    transition: transform .3s;
}
.prof-field.expandable.expanded .prof-field-content {
    display: block;
}
.prof-field.expandable.expanded > label i {
    transform: rotate(180deg);
}
.price-field {
    display: flex;
    align-items: center;
    padding: 17px 0;
    border-bottom: 1px solid var(--lightest-grey-color);
}
.price-field > label {
    width: 230px;
    margin-right: 20px;
}
.price-field .text-field, .price-field .select-field, .price-field .currency {
    margin-right: 10px;
}
.price-field .text-field {
    width: 100px;
    margin-top: 0 !important;
}
.price-field .select-field, .price-field .currency {
    width: 80px;
}
.price-field .note-field {
    margin: 0;
    width: auto;
    flex: 1 1 auto;
}
.info-block + .price-field {
    border-top: 1px solid var(--lightest-grey-color);
    margin-top: 30px;
}

.modal-button {
    position: relative;
}
.modal-button .modal-container {
    position: absolute;
    left: 0;
    top: 30px;
    z-index: 10;
    background: #fff;
    box-shadow: 0px 4px 16px rgba(97, 97, 97, 0.1);
    border-radius: var(--border-radius);
    display: none;
}
.modal-button .modal-container.active {
    display: block;
}
.modal-button .modal-heading {
    font-weight: 500;
    font-size: 18px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 1px solid var(--lightest-grey-color);
}
.modal-button .modal-heading .modal-close i {
    font-size: 10px;
}
.modal-button .modal-body {
    padding: 20px;
}
.modal-button .modal-body .row {
    margin-bottom: 20px;
}
.modal-button .modal-body .button-red {
    padding: 0 20px;
}
.modal-button > a, .account-field > .edit-field .modal-trigger {
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}
.modal-button > a i, .account-field > .edit-field .modal-trigger i {
    font-size: 20px;
    margin-right: 10px;
    color: var(--main-color);
}
.modal-button > a + a {
    margin-left: 40px;
}
.modal-button > a .ui-button-text {
    display: inline-flex;
    align-items: center;
}
.row {
    display: flex;
}
.row .field .text-input, .row .field .textarea {
    width: 100%;
}
.row .field + .field {
    margin-left: 20px;
}
.field {
    display: flex;
    flex-direction: column;
    position: relative;
    flex: 1 1 auto;
}
.field > label {
    font-weight: 500;
    line-height: 1;
    margin-bottom: 14px;
}
.field .ui-autocomplete {
    top: 44px;
    left: 0;
    position: absolute;
}
.field .note {
    font-size: 12px;
    margin-top: 8px;
    color: var(--light-grey-color);
}
.field .select-input, .field .textarea {
    width: 100%;
}
.field .inputs {
    position: relative;
}
.field .inputs input + input {
    margin-left: 10px;
}
.field.inline {
    flex-direction: row;
    align-items: center;
}
.field.inline > label {
    width: 150px;
    padding-right: 10px;
    MARGIN: 0;
}
.field .group {
    display: flex;
}
.field .group input, .field .group select {
    margin-right: 10px;
}
.field.big > label {
    font-weight: 500;
    font-size: 18px;
}
.field.big .note {
    font-size: 13px;
    margin: 0 0 14px;
}
.field .info-block {
    margin-top: 0;
    margin-bottom: 20px;
}
.field > i {
    position: absolute;
    right: 10px;
}

.bootstrap-datetimepicker-widget {
    position: absolute;
}

.table {
    border-collapse: collapse;
    font-size: 14px;
    width: 100%;
}
.table th {
    text-align: left;
    font-weight: 500;
    font-size: 13px;
    padding: 16px 10px;
}
.table th, .table td {
    border-top: 1px solid var(--lightest-grey-color);
    border-bottom: 1px solid var(--lightest-grey-color);
}
.table td {
    padding: 10px;
    color: var(--grey-color);
    transition: all .3s;
}
th:first-child,
.table td:first-child {
    padding-left: 14px;
}
.table tr:hover td {
    background: #FAFAFA;
}
.table.no-top th {
    padding-top: 0;
    border-top: 0;
}
.table.padded td,
.table.padded th {
    padding-left: 5px !important;
    padding-right: 5px !important;
}
.table td:last-child,
.table.padded td:last-child,
.table th:last-child,
.table.padded th:last-child {
    padding-right: 14px !important;
}
.table td:first-child,
.table.padded td:first-child,
.table th:first-child,
.table.padded th:first-child {
    padding-left: 14px !important;
}
.table.border {
    border-left: 1px solid var(--lightest-grey-color);
    border-right: 1px solid var(--lightest-grey-color);
}
.table .actions {
    text-align: right;
}

.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pagination .page-field {
    font-weight: 600;
    font-size: 12px;
}
.pagination .page-field input {
    font-weight: normal;
    width: 80px;
}
.pagination .pages a, .pagination .pages span {
    width: 34px;
    height: 34px;
    background: #FFFFFF;
    border: 1px solid #F0F0F0;
    border-radius: var(--border-radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    box-sizing: border-box;
}
.pagination .pages .prev + a {
    margin-left: 20px;
}
.pagination .pages .next {
    margin-left: 20px;
}
.pagination .pages a + a,
.pagination .pages a + span,
.pagination .pages span + a {
    margin-left: 6px;
}
.pagination .pages span, .pagination .pages a.active {
    background-color: #FAFAFA;
}
.pagination .pages a:hover {
    border: 1px solid #C4C4C4;
    background: #FAFAFA;
}

.typeahead {
    display: flex;
    align-items: center;
}
.typeahead .item {
    height: 36px;
    display: flex;
    padding: 0 14px;
    color: var(--dark-grey-color);
    background: #FAFAFA;
    border: 1px solid #E6E4E4;
    border-radius: var(--border-radius);
    align-items: center;
}
.typeahead .item button {
    margin-left: 14px;
    padding: 0;
    background: none;
    border: 0;
    color: #9D9D9D;
    font-size: 14px;
    cursor: pointer;
}
.typeahead .item button:hover {
    color: var(--main-color);
}
.typeahead .item + .item {
    margin-left: 10px;
}

.icon-file-docx {
    color: var(--blue-color);
}
.icon-file-doc {
    color: var(--blue-color);
}
.icon-file-pdf {
    color: var(--main-color);
}
.icon-file-xlsx {
    color: var(--green-color);
}
.icon-file-xls {
    color: var(--green-color);
}
.icon-file-png {
    color: var(--light-grey-color);
}
.icon-file-jpeg {
    color: var(--light-grey-color);
}
.icon-file-jpg {
    color: var(--light-grey-color);
}

.content-block {
    border: 1px solid var(--lightest-grey-color);
    border-radius: 6px;
}
.content-block > .heading {
    font-weight: 500;
    font-size: 16px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--lightest-grey-color);
    display: flex;
    align-items: center;
}
.content-block > .heading .note {
    margin-left: 10px;
}
.content-block > .body {
    padding: 20px;
    color: var(--grey-color);
}
.content-block > .body.no-padding {
    padding: 0;
}
.content-block .footer {
    border-top: 1px solid var(--lightest-grey-color);
    padding: 20px;
}
.content-block label {
    color: var(--dark-grey-color);
}
.content-block.big .heading {
    border-bottom: 0;
    font-size: 18px;
    padding-bottom: 0;
}
.content-block.big .footer {
    padding: 20px 0;
    margin: 0 20px;
}
.content-block .heading span {
    color: var(--main-color);
}
.content-block h3 {
    font-size: 14px;
}
.content-block h3:first-child {
    margin-top: 0;
}

.info-block ul.list, .content-block ul.list {
    margin: 16px 0;
    padding-left: 20px;
}
.info-block ul.list li + li, .content-block ul.list li + li {
    margin-top: 16px;
}

.stat-block .heading {
    font-weight: 500;
    font-size: 16px;
    padding-bottom: 16px;
}
.stat-block .body {
    border: 1px solid var(--lightest-grey-color);
    border-radius: 6px;
}
.stat-block .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px;
}
.stat-block .row + .row {
    border-top: 1px solid var(--lightest-grey-color);
}
.stat-block .label {
    font-size: 14px;
    color: var(--grey-color);
    padding-right: 10px;
}
.stat-block .value {
    width: 100px;
    flex: 0 0 100px;
}

.note-block {
    display: flex;
    margin-top: 20px;
    align-items: center;
    line-height: 16px;
}
.note-block i {
    width: 18px;
    height: 18px;
    color: var(--main-color);
    margin-right: 8px;
    font-size: 18px;
}
.note-block.light {
    color: var(--light-grey-color);
}
.note-block.light strong {
    color: var(--dark-grey-color);
}

.note {
    position: relative;
    display: inline-block;
}
.note i {
    border: 2px solid #E5E4E4;
    height: 22px;
    width: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    color: #555;
    box-sizing: border-box;
    border-radius: 50%;
}
.note .note-content {
    display: none;
    position: absolute;
    top: 22px;
    right: 0;
    padding: 10px;
    border-radius: var(--border-radius);
    border: 1px solid #E6E4E4;
    background: #fff;
    font-size: 13px;
    font-weight: 400;
    min-width: 200px;
    z-index: 10;
}
.note:hover .note-content {
    display: block;
}
.filter .mobile-filter-toggle {
    display: none;
}

.scroll-up {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    font-size: 20px;
    color: var(--grey-color);
    align-items: center;
    justify-content: center;
    display: flex;
    border-radius: var(--border-radius);
    border: 1px solid var(--lightest-grey-color);
    cursor: pointer;
    background: #fff;
    transition: all .3s;
}
.scroll-up.hidden {
    display: none;
}
.scroll-up:hover {
    background: #e7e7e7;
}
.scroll-up i {
    transform: rotate(180deg);
}

#header-thin {
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    background-color: #fff;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
    z-index: 10;
}
#header-thin .left {
    display: flex;
    align-items: center;
    height: 100%;
}
#header-thin .left .mobile-menu-toggle {
    display: none;
}
#header-thin .left .mobile-links {
    display: none;
}
#header-thin .left nav {
    height: 100%;
    margin-right: 20px;
}
#header-thin .left nav > ul {
    padding: 0;
    margin: 0;
    display: flex;
    height: 100%;
}
#header-thin .left nav > ul > li > a {
    height: 100%;
}
#header-thin .left ul li {
    display: block;
    position: relative;
}
#header-thin .left nav > ul > li {
    height: 100%;
}
#header-thin .left nav > ul > li + li {
    margin-left: 40px;
}
#header-thin .left ul li ul {
    position: absolute;
    top: 59px;
    background: #FFFFFF;
    box-shadow: 0px 4px 16px rgba(97, 97, 97, 0.1);
    border-radius: 0px 0px var(--border-radius) var(--border-radius);
    left: 0;
    width: 200px;
    margin: 0;
    z-index: 10;
    display: none;
    padding: 16px;
}
#header-thin .left ul li ul li {
    display: block;
}
#header-thin .left ul li ul li a {
    padding: 10px 12px;
    font-weight: 500;
    font-size: 13px;
    display: flex;
    align-items: center;
    border-radius: var(--border-radius);
}
#header-thin .left nav > ul > li > a:hover + ul, #header-thin .left ul li ul:hover {
    display: block;
}
#header-thin .left ul li ul li a:hover {
    background-color: #fafafa;
}
#header-thin .left ul .back-link {
    display: none;
}
#header-thin .left ul a {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    font-size: 13px;
}
#header-thin .left ul i {
    font-size: 6px;
    font-weight: normal;
    color: #8A8A8A;
    margin-left: 6px;
}
#header-thin .logo {
    margin-right: 60px;
}
#header-thin .logo img {
    height: 34px;
}
#header-thin .search {
    flex: 1 0 auto;
    margin-right: 16px;
    width: 172px;
    position: relative;
    overflow: visible;
}
#header-thin .search input {
    height: 20px;
    background: #fff;
    border-radius: var(--border-radius);
    padding: 0 12px 0 38px;
    width: 100%;
    border: 0;
    font-size: 12px;
    position: relative;
    z-index: 1;
    height: 60px;
    font-weight: 500;
}
#header-thin .search .inner > i {
    position: absolute;
    font-size: 20px;
    height: 20px;
    margin: auto;
    left: 0px;
    top: 0;
    bottom: 0;
    z-index: 2;
    color: #555555;
}
#header-thin .search .results {
    top: 60px !important;
    min-height: 500px !important;
}
#header-thin .search .results .top-results {
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}
#header-thin .search .results .search-tabs {
    border-radius: 0 0 0 var(--border-radius);
}
#header-thin .right {
    display: flex;
    height: 100%;
    align-items: center;
    font-size: 10px;
    position: relative;
}
#header-thin .right .tariff {
    background: var(--main-color);
    color: #fff;
    height: 14px;
    min-width: 24px;
    padding: 0 6px;
    border-radius: 4px;
    font-size: 8px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

#account {
    display: flex;
    background-color: #fff;
    border-bottom: 1px solid var(--lightest-grey-color);
    flex: 1 0 auto;
}

#account-sidebar {
    width: 342px;
    flex: 0 0 342px;
    border-right: 1px solid var(--lightest-grey-color);
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.01);
}
#account-sidebar::-webkit-scrollbar {
    width: 6px;
}
#account-sidebar::-webkit-scrollbar-track {
    background-color: transparent;
}
#account-sidebar::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background-color: #777;
}
#account-sidebar ul {
    padding: 0;
    margin: 0;
}
#account-sidebar ul li {
    display: block;
}
#account-sidebar ul a {
    padding: 18px 20px;
    display: block;
    font-weight: 500;
    font-size: 13px;
    color: var(--grey-color);
}
#account-sidebar ul ul a {
    padding: 10px 20px;
}
#account-sidebar ul .selected a, #account-sidebar ul a:hover, #account-sidebar ul a.active {
    background: #e7e7e7;
    color: var(--dark-grey-color);
}
#account-sidebar .root-menu {
    width: 100%;
    padding: 10px 10px 0;
    transition: all .2s;
}
#account-sidebar .root-menu > li > a {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-grey-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#account-sidebar .root-menu > li > a i {
    font-size: 6px;
    color: var(--dark-grey-color);
    font-weight: normal;
    transform: rotate(-90deg);
    transition: all .3s;
}
#account-sidebar .root-menu > li > ul {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}
#account-sidebar .root-menu > li > a.active i {
    transform: rotate(0deg);
}
#account-sidebar .root-menu > li > a.active + ul {
    max-height: 1000px;
    transition: max-height 0.3s ease-in-out;
}
#account-sidebar .sub-title {
    padding: 20px;
    font-weight: 600;
    font-size: 14px;
}
#account-section {
    padding: 20px;
    flex: 1 1;
}

#account-steps {
    width: 463px;
    flex: 0 0 463px;
    padding: 30px;
    border-left: 1px solid var(--lightest-grey-color);
    background: rgba(0, 0, 0, 0.01);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
#account-steps .block {
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 4px 16px rgba(97, 97, 97, 0.1);
    border-radius: var(--border-radius);
    width: 100%;
    font-weight: 400;
    font-size: 13px;
    position: relative;
}
#account-steps .block + .block {
    margin-top: 20px;
}
#account-steps .block.no-shadow {
    border: 1px solid var(--lightest-grey-color);
    box-shadow: none;
}
#account-steps .block a {
    color: var(--main-color);
    text-decoration: underline;
}
#account-steps .block.grey {
    background: #FAFAFA;
}
#account-steps .block.status-block {
    margin-top: 0;
    margin-bottom: 30px;
}
#account-steps .block.yellow-dot::after,
#account-steps .block.green-dot::after {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    content: '';
}
#account-steps .block.yellow-dot::after {
    background-color: #FFD79B;
}
#account-steps .block.green-dot::after {
    background-color: #6BC188;
}
#account-steps .hide-steps {
    font-weight: 500;
    font-size: 12px;
    text-decoration-line: underline;
}
#account-steps .heading {
    font-weight: 500;
    font-size: 14px;
}
#account-steps .heading span {
    color: var(--main-color);
}
#account-steps .content {
    color: var(--grey-color);
    margin-top: 12px;
    margin-bottom: 0;
    font-size: 13px;
}
#account-steps .content + .heading {
    margin-top: 12px;
}
#account-steps .content p {
    margin: 20px 0 0 0;
}
#account-steps .block.complete {
    text-decoration: line-through;
}
#account-steps .block.complete .heading {
    color: #C1C1C1;
}
#account-steps .block.complete .content {
    color: #DEDEDE;
}
#account-steps .progress-block .content {
    margin-bottom: 12px;
}
#account-steps .progress-block .uncompleted-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #FFD79B;
    height: 28px;
    padding: 0 10px;
    border-radius: var(--border-radius);
    font-weight: 400;
    font-size: 12px;
}
#account-steps .progress-block .uncompleted-field + .uncompleted-field {
    margin-top: 6px;
}
#account-steps .progress-block .expand {
    font-weight: 500;
    font-size: 13px;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
}
#account-steps .progress-block .expand i {
    font-size: 4px;
    margin-left: 6px;
}
#account-steps .hide-block .list {
    margin: 20px 0;
    padding: 0 0 0 20px;
}
#account-steps .hide-block .list li {
    margin-bottom: 12px;
    font-weight: 400;
    font-size: 13px;
}
#account-steps .hide-block .hide-me {
    padding: 16px 0;
    border-top: 1px solid var(--lightest-grey-color);
    border-bottom: 1px solid var(--lightest-grey-color);
    font-weight: 500;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
#account-steps .hide-block .note {
    font-weight: 400;
    font-size: 12px;
    margin-bottom: 20px;
}
#account-steps .hide-block .test {
    display: inline-flex;
    align-items: center;
}
#account-steps .hide-block .test a {
    font-weight: 500;
    font-size: 12px;
    text-decoration-line: underline;
    color: var(--grey-color);
}
#account-steps .hide-block .test i {
    font-size: 10px;
    border: 2px solid #E5E4E4;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    color: #9D9D9D;
    text-decoration: none;
}

#account-prof-form [type="submit"] {
    width: 140px;
    margin-top: 30px;
}
#account-prof-form .extra-tab .textarea {
    width: 100%;
    margin-top: 30px;
}
#account-prof-form .typeahead {
    margin-top: 20px;
}

#city-name-autocomplete {
    height: 0;
}

#photo-form img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
}
#photo-form .columns {
    display: flex;
    align-items: center;
    margin-top: 30px;
}
#photo-form .left {
    margin-right: 20px;
}
#photo-form .top {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
}
#photo-form .top .delete {
    background: none;
    border: 0;
    cursor: pointer;
    font-size: 18px;
    margin-right: 20px;
    color: #9D9D9D;
    height: 18px;
}
#photo-form .buttons a,
#photo-form .buttons button {
    height: 36px;
    background: #FAFAFA;
    border: 1px solid #E5E4E4;
    border-radius: var(--border-radius);
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    color: var(--grey-color);
    font-size: 13px;
    cursor: pointer;
    justify-content: center;
}
#photo-form .buttons a + a {
    margin-left: 20px;
}
#photo-form .buttons a i,
#photo-form .buttons button i {
    margin-right: 10px;
}
#photo-form .buttons input {
    display: none;
}
#photo-form .signature-block {
    margin-top: 20px;
}
#photo-form .signature-block .buttons {
    margin-top: 20px;
}
#photo-form .columns .mobile-buttons {
    display: none;
}
#config-form {
    font-size: 14px;
    color: var(--grey-color);
}
#config-form .switcher + .switcher {
    margin-top: 25px;
}
#blacklist {
    margin-top: 30px;
    width: 100%;
    border-collapse: collapse;
}
#blacklist thead td {
    font-weight: bold;
    padding-bottom: 14px;
    font-size: 13px;
}
#blacklist td {
    font-size: 14px;
    color: var(--dark-grey-color);
    border-bottom: 1px solid var(--lightest-grey-color);
    padding: 12px 0;
}
#blacklist tr:hover td {
    background: #FAFAFA;
}
#blacklist td:first-child {
    padding-left: 14px;
}
#blacklist td:last-child {
    padding-right: 14px;
    text-align: right;
}
#blacklist img {
    width: 44px;
    height: 44px;
    vertical-align: middle;
    border-radius: 50%;
    margin-right: 10px;
}
#blacklist .action_bl_delete {
    border: 0;
    background: none;
    font-size: 20px;
    padding: 0;
    cursor: pointer;
    color: #9D9D9D;
}
#blacklist .action_bl_delete:hover {
    color: var(--main-color);
}
#indicator-form .textarea {
    width: 100%;
    margin-bottom: 20px;
}
#indicator-form .info-block {
    margin-bottom: 20px;
}

#status-form {
    display: flex;
    justify-content: space-between;
}
#status-form .left {
    flex: 1 1 auto;
}
#status-form .right {
    margin: 0 70px;
    flex: 0 0 160px;
}
#status-form .steps {
    height: 308px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-weight: bold;
    color: var(--dark-grey-color);
    position: relative;
}
#status-form .steps::before {
    content: '';
    left: 0;
    top: 5px;
    width: 2px;
    height: calc(100% - 10px);
    position: absolute;
    background-color: var(--lightest-grey-color);
}
#status-form .steps::after {
    content: '';
    left: 0;
    top: 5px;
    width: 2px;
    position: absolute;
    background: #6BC188;
}
#status-form .step {
    color: #9D9D9D;
    position: relative;
    padding-left: 21px;
}
#status-form .step::before {
    content: '';
    width: 10px;
    height: 10px;
    display: block;
    background: #E5E4E4;
    border-radius: 50%;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: -4px;
}
#status-form .steps.step-2::after {
    height: calc(33.333% - 10px);
}
#status-form .steps.step-3::after {
    height: calc(66.666% - 10px);
}
#status-form .steps.step-4::after {
    height: calc(100% - 10px);
}
#status-form .steps.step-1 .step:nth-child(1),
#status-form .steps.step-2 .step:nth-child(1),
#status-form .steps.step-2 .step:nth-child(2),
#status-form .steps.step-3 .step:nth-child(1),
#status-form .steps.step-3 .step:nth-child(2),
#status-form .steps.step-3 .step:nth-child(3),
#status-form .steps.step-4 .step:nth-child(1),
#status-form .steps.step-4 .step:nth-child(2),
#status-form .steps.step-4 .step:nth-child(3),
#status-form .steps.step-4 .step:nth-child(4) {
    color: var(--dark-grey-color);
}
#status-form .steps.step-1 .step:nth-child(1)::before,
#status-form .steps.step-2 .step:nth-child(1)::before,
#status-form .steps.step-2 .step:nth-child(2)::before,
#status-form .steps.step-3 .step:nth-child(1)::before,
#status-form .steps.step-3 .step:nth-child(2)::before,
#status-form .steps.step-3 .step:nth-child(3)::before,
#status-form .steps.step-4 .step:nth-child(1)::before,
#status-form .steps.step-4 .step:nth-child(2)::before,
#status-form .steps.step-4 .step:nth-child(3)::before,
#status-form .steps.step-4 .step:nth-child(4)::before {
    width: 24px;
    height: 24px;
    left: -11px;
    background: #6BC188;
    box-sizing: border-box;
    z-index: 1;
}
#status-form .steps.step-2 .step:nth-child(1)::after,
#status-form .steps.step-3 .step:nth-child(1)::after,
#status-form .steps.step-3 .step:nth-child(2)::after,
#status-form .steps.step-4 .step:nth-child(1)::after,
#status-form .steps.step-4 .step:nth-child(2)::after,
#status-form .steps.step-4 .step:nth-child(3)::after,
#status-form .steps.step-4 .step:nth-child(4)::after {
    content: '\e90b';
    font-family: 'icomoon';
    position: absolute;
    left: -4px;
    color: #fff;
    font-size: 8px;
    top: 0;
    bottom: 0;
    height: 8px;
    z-index: 1;
    margin: auto;
}
#status-form .steps.step-1 .step:nth-child(1)::before,
#status-form .steps.step-2 .step:nth-child(2)::before,
#status-form .steps.step-3 .step:nth-child(3)::before {
    background-color: #fff;
    border: 4px solid #6BC188;
}
#status-form .claimed-level strong {
    color:  var(--grey-color);
}
#status-form h2 {
    font-size: 16px;
}
#status-form .note {
    font-size: 14px;
}
#status-form .required {
    margin-bottom: 30px;
}
#status-form .required strong {
    margin-bottom: 14px;
    display: block;
}
#status-form .files {
    display: none;
}
#status-form .file-list table {
    margin-top: 20px;
    font-size: 14px;
    color: var(--grey-color);
    width: 100%;
}
#status-form .file-list tr:first-child td {
    border-top: 1px solid var(--lightest-grey-color);
}
#status-form .file-list td {
    border-bottom: 1px solid var(--lightest-grey-color);;
    padding: 10px 0;
    height: 50px;
    vertical-align: middle;
}
#status-form .file-list .remove {
    text-align: right;
}
#status-form .file-list .remove a {
    color: #9D9D9D;
    font-size: 20px;
}
#status-form .file-list .remove a:hover {
    color: var(--main-color);
}
#status-form .file-list .name {
    padding-left: 40px;
    background-position: left center;
    background-repeat: no-repeat;
}
#status-form .file-list .name.type-jpg {
    background-image: url('/assets/images/new/jpg.png');
}
#status-form .file-list .name.type-docx {
    background-image: url('/assets/images/new/docx.png');
}
#status-form .add-file {
    display: flex;
    color: var(--grey-color);
    margin-top: 20px;
    margin-bottom: 30px;
    align-items: center;
}
#status-form .add-file .note {
    font-size: 12px;
}
#status-form .add-file a {
    background: #FAFAFA;
    border: 1px solid #E5E4E4;
    border-radius: var(--border-radius);
    width: 223px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey-color);
    font-size: 13px;
    margin-right: 20px;
}
#status-form .add-file a i {
    margin-right: 10px;
}
#status-form .send-documents {
    width: 200px;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 40px;
}
#status-form .error {
    margin-bottom: 20px;
}
#status-form #phone-confirm {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
#status-form #phone-confirm h3 {
    margin: 0;
}
#status-form #phone-confirm .info-block {
    margin: 20px 0 30px;
}
#status-form #phone-confirm .phone-field {
    margin-bottom: 18px;
}
#status-form #phone-confirm .phone-field input {
    width: 345px;
    margin-right: 20px;
}
#status-form #phone-confirm .request-sms {
    font-weight: 500;
    font-size: 12px;
    text-decoration-line: underline;
}
#status-form #phone-confirm .timer {
    margin-bottom: 28px;
    display: none;
}
#status-form #phone-confirm .timer span {
    color: var(--main-color);
    font-weight: bold;
}
#status-form #phone-confirm .timer i {
    font-size: 14px;
    color: #5F5F5F;
    vertical-align: middle;
    display: inline-block;
    margin-right: 10px;
}
#status-form #phone-confirm .confirm-code {
    width: 223px;
    margin-bottom: 30px;
    position: relative;
    display: none;
}
#status-form #phone-confirm .confirm-code i {
    font-size: 10px;
    color: #6BC188;
    margin-left: 10px;
    display: none;
}
#status-form #phone-confirm .confirm-code.success i {
    display: block;
}
#status-form #phone-confirm .second-way {
    font-size: 12px;
    text-decoration-line: underline;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 30px;
    line-height: 1;
}
#status-form #phone-confirm .send-documents {
    margin-bottom: 30px;
}
#status-form #phone-confirm .callback {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
}
#status-form #phone-confirm .callback .button-white,
.support .button-white {
    margin-top: 16px;
}
.support .button-white {
    font-weight: 500;
}
.support {
    background: #FAFAFA;
    border: 1px solid var(--lightest-grey-color);
    border-radius: var(--border-radius);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
    max-width: 588px;
}
.support .heading {
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 20px;
}
#status-form #complete .content {
    padding-left: 32px;
    margin-bottom: 26px;
}
#status-form #complete h3 {
    margin: 0 0 16px;
    font-weight: 600;
    font-size: 16px;
}
#status-form #complete h3 i {
    font-size: 13px;
    margin-right: 10px;
    color: #6BC188;
}

#account-form {
    width: calc(100vw - 342px - 463px - 40px - 17px);
}
#account-form .social-provider {
    display: flex;
    align-items: center;
    margin-top: 20px;
}
#account-form .social-provider + .social-provider {
    margin-top: 20px;
}
#account-form .social-provider .name {
    color: var(--dark-grey-color);
    width: 160px;
    display: flex;
    align-items: center;
    font-size: 14px;
    padding-right: 10px;
}
#account-form .social-provider .name i, #account-form .social-provider-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    border-radius: var(--border-radius);
    color: #fff;
    font-size: 16px;
}
#account-form .social-provider .attach, 
#account-form .social-provider .attached {
    height: 34px;
    box-sizing: border-box;
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 12px;
    font-weight: 500;
    border-radius: var(--border-radius);
}
#account-form .social-provider .attached {
    background: #F68D92;
    color: #fff;
}
#account-form .social-provider .attach {
    border: 1px solid #F0F0F0;
    color: var(--grey-color);
}
#account-form .social-provider .detach {
    font-weight: 500;
    color: var(--grey-color);
    text-decoration: underline;
}
#account-form .social-provider.provider-vkontakte i, #account-form .social-provider-icon.icon-vkontakte {
    background-color: #4D76A1;
}
#account-form .social-provider.provider-yandex i, #account-form .social-provider-icon.icon-yandex {
    background-color: var(--main-color);
}
#account-form .social-provider.provider-google i, #account-form .social-provider-icon.icon-google {
    background-color: #4285F4;
}
#account-form .social-provider-icon {
    width: 28px;
    height: 28px;
    font-size: 12px;
}
#account-form .columns {
    display: flex;
}
#account-form > .columns > .left {
    width: 300px;
    flex: 0 0 300px;
    margin-right: 20px;
}
#account-form > .columns > .right {
    flex: 0 0 calc(100% - 320px);
    width: calc(100% - 320px);
}
#account-form > .columns > .right > .info-block {
    margin-top: 0;
    margin-bottom: 20px;
}
#account-form .photo .preview {
    height: 480px;
    width: 100%;
    border: 1px solid var(--main-color);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
#account-form .photo .preview:hover .photo-overlay,
#account-form .signature:hover .signature-overlay,
#account-form .avatar:hover .avatar-overlay {
    display: flex;
}
#account-form .photo .preview.has-image {
    border-color: var(--green-color);
}
#account-form .photo .preview .photo-overlay,
#account-form .signature-overlay,
#account-form .avatar-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(78, 73, 73, 0.6);
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    display: none;
    border-radius: var(--border-radius);
}
#account-form .photo .preview .delete-photo,
#account-form .signature-overlay .delete-signature,
#account-form .avatar-overlay .delete-avatar {
    position: absolute;
    top: 20px;
    right: 20px;
    height: 18px;
    font-size: 18px;
    color: #fff;
}
#account-form .avatar-overlay:not(.active) {
    display: none !important;
}
#account-form .photo .preview .upload-photo, #account-form .photo .preview .social-photo {
    margin-top: 10px;
}
#account-form .photo .preview .upload-photo,
#account-form .photo .preview .social-photo,
#account-form .avatar .edit-avatar {
    display: flex;
    align-items: center;
    color: #fff;
}
#account-form .photo .preview .upload-photo i,
#account-form .photo .preview .social-photo i,
#account-form .avatar .edit-avatar i {
    width: 24px;
    height: 24px;
    font-size: 10px;
    color: var(--grey-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: var(--border-radius);
    margin-right: 10px;
}
#account-form .photo .preview img {
    max-width: calc(100% - 40px);
    max-height: calc(100% - 40px);
    border-radius: var(--border-radius);
}
#account-form #photo {
    display: none;
}
#account-form .photo .buttons .button-white {
    width: 100%;
    justify-content: flex-start;
}
#account-form .photo .buttons .button-white + .button-white {
    margin-top: 10px;
}
#account-form .photo .buttons .button-white i {
    color: #555;
    margin-right: 10px;
}
#account-form .sign,
#account-form .mini-avatar {
    margin-top: 20px;
}
#account-form .sign .heading,
#account-form .mini-avatar .heading {
    font-size: 14px;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 20px;
}
#account-form .sign .text,
#account-form .mini-avatar .text {
    color: var(--grey-color);
    font-size: 12px;
}
#account-form .sign .button-white,
#account-form .mini-avatar .button-white {
    width: 100%;
    margin-top: 20px;
}
#account-form .sign .button-white i,
#account-form .mini-avatar .button-white i {
    color: #555;
    margin-right: 10px;
}
#account-form .sign .signature,
#account-form .mini-avatar .avatar {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
#account-form .sign .signature img,
#account-form .mini-avatar .avatar img {
    max-width: 100%;
    max-height: 230px;
    border-radius: var(--border-radius);
}
#account-form .indicator .input {
    margin-top: 20px;
}
#account-form #new-photo, #account-form #signature, #account-form #avatar {
    display: none;
}
#account-form .crop-form {
    position: fixed;
    z-index: 11;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0px 4px 16px rgba(97, 97, 97, 0.1);
    width: 672px;
    max-width: 100%;
    left: 0;
    right: 0;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    display: none;
}
#account-form .crop-form.active {
    display: block;
}
#account-form .crop-form .heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    border-bottom: 1px solid var(--lightest-grey-color);
    padding: 0 20px;
    font-weight: 600;
    font-size: 16px;
}
#account-form .crop-form .heading .close {
    font-size: 12px;
    height: 12px;
    color: var(--grey-color);
}
#account-form .crop-form .columns {
    padding: 20px;
    display: flex;
    justify-content: space-between;
}
#account-form .crop-form .left {
    display: flex;
    align-items: center;
    justify-content: center;
}
#account-form .crop-form .right,
#account-form .crop-form .left {
    flex: 0 0 calc(50% - 10px);
}
#account-form .crop-form .right {
    color: var(--grey-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#account-form .crop-form .right .buttons {
    margin-top: 20px;
}
#account-form .crop-form .crop > img {
    max-width: 100%;
}
#account-form .crop-form .jcrop-keymgr {
    display: none !important;
}
#account-form .phone-sms-field .error {
    margin-top: 15px;
}
#account-form .code-input, #account-form .code-block {
    display: none;
}
#account-form  .code-input.active {
    display: flex;
}
#account-form .code-block.active {
    display: block;
}

#account-quickpay form {
    display: flex;
}
#account-quickpay .left {
    width: 588px;
    margin-right: 20px;
}
#account-quickpay .left label {
    margin-bottom: 30px;
    display: block;
}
#account-quickpay .left input {
    width: 466px;
    max-width: 100%;
    margin-bottom: 30px;
}
#account-quickpay .left .buttons {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
#account-quickpay .left .buttons .link-button {
    text-decoration: none;
    margin-left: 20px;
}
#account-quickpay .left .row {
    margin-bottom: 30px;
}
#account-quickpay .left .row a {
    color: var(--main-color);
    font-weight: 500;
    margin-left: 6px;
}
#account-quickpay .left .button-grey {
    margin-bottom: 30px;
}
#account-quickpay .left .collapse {
    display: none;
}
#account-quickpay .left .collapse img {
    border: 1px solid #E5E4E4;
    border-radius: 6px;
    max-width: 100%;
}
#account-quickpay .right .info-block {
    margin-top: 0;
}

#account-myawards th, #account-purchases th {
    padding-top: 0;
    border-top: 0;
}
#account-myawards .download {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
#account-myawards .download a, #account-purchases .download a {
    border: 1px solid var(--lightest-grey-color);
    border-radius: 6px;
    font-size: 10px;
    display: flex;
    align-items: center;
    color: #555;
    justify-content: center;
    margin-left: 38px;
    width: 24px;
    height: 24px;
    background: #fff;
    transition: all .3s;
}
#account-myawards .download a:hover, #account-purchases .download a:hover {
    background: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
}
#account-purchases td, #account-purchases th {
    padding: 20px 14px;
}
#account-purchases .name {
    display: flex;
    align-items: center;
}
#account-purchases .name i {
    font-size: 28px;
    margin-right: 14px;
}
#account-invites .recommend {
    margin-bottom: 30px;
}
#account-invites .recommend i {
    font-size: 18px;
    margin-right: 8px;
    color: var(--main-color);
    display: inline-block;
    vertical-align: middle;
}
#account-invites .recommend a {
    color: var(--main-color);
    font-weight: 600;
}
#account-invites .recommend .collapsed {
    display: none;
    margin-top: 10px;
}
#account-invites .columns {
    display: flex;
}
#account-invites .left {
    margin-right: 20px;
    flex: 6 6;
}
#account-invites .right {
    flex: 5 5;
}
#account-invites .recommend-link, #account-invites .recommend-form {
    margin-bottom: 30px;
}
#account-invites .recommend-link .link {
    font-weight: 500;
    font-size: 14px;
    color: var(--main-color);
    margin-top: 20px;
}
#account-invites .recommend-link .link i {
    margin-left: 10px;
    font-size: 10px;
    color: #555;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--lightest-grey-color);
    border-radius: 6px;
}
#account-invites #letter-preview {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 99;
    display: none;
}
#account-invites #letter-preview .inner {
    position: fixed;
    background: #FAFAFA;
    box-shadow: 0px 4px 30px rgba(97, 97, 97, 0.1);
    border-radius: 6px;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    width: 852px;
    max-width: 100%;
    transform: translateY(-50%);
    z-index: 100;
    text-align: center;
}
#account-invites iframe {
    border: 0;
}
#account-invites .close {
    font-size: 12px;
    color: #555;
    top: 20px;
    right: 20px;
    position: absolute;
}
#account-invites #reload-preview {
    margin: 10px 0 20px;
}
#account-invites .content-block .radio label {
    font-weight: 500;
}
#account-invites .recommend-form .radio-buttons, #account-invites .recommend-form .buttons {
    display: flex;
    align-items: center;
}
#account-invites .recommend-form .radio-buttons .radio + .radio {
    margin-left: 20px;
}
#account-invites .recommend-form .field, #account-invites .recommend-form .radio-buttons {
    margin-bottom: 20px;
}
#account-invites .recommend-form .buttons {
    justify-content: space-between;
}
#account-invites .recommend-form .buttons button {
    padding: 0 20px;
}
#account-invites .registered-block {
    margin-bottom: 30px;
}
#account-invites .registered-block .value {
    color: var(--green-color);
    font-weight: 600;
}
#account-invites .terms, #account-invites .gift {
    color: var(--light-grey-color);
    margin-top: 20px;
}
#account-invites .gift {
    display: none;
}
#account-invites .terms strong {
    color: var(--dark-grey-color);
}

#account-leads .modal-button {
    margin-bottom: 30px;
}
#account-leads .filter .filter-options {
    display: flex;
    flex-wrap: wrap;
}
#account-leads .filter .field {
    flex: 0 0 auto;
    width: 220px;
}
#account-leads .filter .date-field {
    width: auto;
}
#account-leads .filter .field {
    margin-right: 20px;
    margin-bottom: 20px;
}
#account-leads .filter .buttons {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
#account-leads .filter .buttons button {
    margin-left: 20px;
    border: 0;
    padding: 0;
    background: none;
    color: var(--grey-color);
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    cursor: pointer;
}
#account-leads .filter .buttons button i {
    font-size: 20px;
    margin-right: 6px;
    color: #9D9D9D;
}
#account-leads .table th {
    padding-top: 0;
    border-top: 0;
}
#account-leads .table .dropdown-toggle {
    background: #FFFFFF;
    border: 1px solid var(--lightest-grey-color);
    border-radius: 6px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    color: var(--grey-color);
    cursor: pointer;
}
#account-leads .table .btn-group {
    position: relative;
}
#account-leads .table td, #account-leads .table th {
    padding: 16px 10px;
}
#account-leads .table .btn-group .dropdown-menu {
    position: absolute;
    box-shadow: 0px 4px 30px rgb(97 97 97 / 10%);
    padding: 0 !important;
    top: 24px;
    margin: 0;
    padding: 0;
    width: 300px;
    background: #fff;
    border-radius: var(--border-radius);
    display: none;
    z-index: 10;
}
#account-leads .table .btn-group .dropdown-menu.active {
    display: block;
}
#account-leads .table .btn-group .dropdown-menu li {
    display: block;
}
#account-leads .table .btn-group .dropdown-menu li a {
    font-weight: normal;
    font-size: 12px;
    padding: 10px 20px;
    display: block;
    cursor: pointer;
}
#account-leads .table .btn-group .dropdown-menu li:first-child a {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}
#account-leads .table .btn-group .dropdown-menu li:last-child a {
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}
#account-leads .table .btn-group .dropdown-menu li a:hover {
    background: #F6F6F6;
}
#account-leads .table td:last-child {
    text-align: left;
}
#account-leads .pagination {
    margin-top: 30px;
}
#account-leads .modal-body {
    max-width: 100%;
    width: 476px;
}
#account-leads .modal-body .contact *, #account-leads .modal-body .contact {
    width: 100%;
}
#account-leads .modal-body .button-red {
    width: 207px;
}
#account-leads .modal-body .link-button {
    text-decoration: none;
}

#account-dashboard .columns {
    display: flex;
}
#account-dashboard .left {
    flex: 1 1 calc(60% - 20px);
    margin-right: 20px;
}
#account-dashboard .right {
    flex: 1 1 40%;
}
#account-dashboard .content-block + .content-block {
    margin-top: 20px;
}
#account-dashboard .promotion ul {
    margin: 0;
    padding: 0;
}
#account-dashboard .promotion li {
    display: block;
}
#account-dashboard .promotion a {
    color: var(--grey-color);
    height: 46px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    font-weight: 500;
    transition: all .3s;
}
#account-dashboard .promotion li + li a {
    border-top: 1px solid var(--lightest-grey-color);
}
#account-dashboard .promotion a:hover {
    background: #F6F6F6;
    color: var(--dark-grey-color);
}
#account-dashboard .favorites .body {
    display: flex;
}
#account-dashboard .favorites .list {
    margin-right: 20px;
}
#account-dashboard .favorites .list,
#account-dashboard .favorites .stats {
    flex: 1 1 50%;
}
#account-dashboard .favorites ul {
    margin: 0;
    padding: 0;
}
#account-dashboard .favorites li {
    display: flex;
    justify-content: space-between;
}
#account-dashboard .favorites li + li {
    margin-top: 16px;
}
#account-dashboard .favorites a {
    font-size: 14px;
    color: var(--grey-color);
    text-decoration: underline;
}
#account-dashboard .favorites a:hover {
    text-decoration: none;
    color: var(--dark-grey-color);
}
#account-dashboard .level {
    font-size: 14px;
    display: flex;
    align-items: center;
}
#account-dashboard .level a, #account-dashboard .reps a {
    width: 22px;
    height: 22px;
    border: 2px solid #E5E4E4;
    border-radius: 50%;
    font-size: 8px;
    color: #555;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}
#account-dashboard .reps {
    display: flex;
    align-items: center;
    margin-top: 20px;
}
#account-dashboard .reps > * + * {
    margin-left: 20px !important;
}
#account-dashboard .reps .rep {
    display: flex;
    align-items: center;
}
#account-dashboard .reps .rep i {
    margin-right: 12px;
}
#account-dashboard .reps .rep:nth-child(1) i {
    font-size: 14px;
}
#account-dashboard .reps .rep:nth-child(2) i {
    font-size: 16px;
}
#account-dashboard .reps .rep:nth-child(3) i {
    font-size: 15px;
}
#account-dashboard .vcard-block {
    margin-bottom: 20px;
}
#account-dashboard .vcard-block .heading {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 16px;
}
#account-dashboard .vcard-block .status {
    font-size: 12px;
    height: 28px;
    display: inline-flex;
    padding: 0 12px;
    border: 1px solid var(--main-color);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    align-items: center;
}
#account-dashboard .vcard-block .status.success {
    border-color: var(--green-color);
}
#account-dashboard .vcard-block .button-red {
    margin-top: 20px;
}
#account-dashboard .indicator {
    color: var(--grey-color);
    margin-bottom: 20px;
    line-height: 18px;
}

#account-private .info-block {
    margin-bottom: 20px;
}
#account-private .current-login {
    margin-bottom: 20px;
}
#account-private form > .button-red, #account-private form .content-block, #account-private form .content-block .button-red {
    margin-top: 20px;
}
.scroll-table {
    width: calc(100vw - 40px - 342px - 463px);
    overflow-x: auto;
}

#account-password .field {
    margin-bottom: 20px;
}


@media (max-width: 1600px) {
    .scroll-table, #account-form {
        width: calc(100vw - 40px - 280px - 380px - 17px);
    }
    #account-steps {
        padding: 30px 14px;
        width: 380px;
        flex: 0 0 380px;
    }
    #account-sidebar {
        width: 280px;
        flex: 0 0 280px;
    }
}
@media (max-width: 1440px) {
    .scroll-table, #account-form {
        width: calc(100vw - 40px - 280px - 17px);
    }
    #account-steps {
        /* display: none; */
    }
}
@media (max-width: 1280px) {
    #header-thin .left nav > ul > li + li {
        margin-left: 20px;
    }
}
@media(max-width: 1024px) {
    .scroll-table, #account-form {
        width: calc(100vw - 28px - 17px);
    }

    #account-sidebar {
        display: none;
    }
    #header-thin {
        padding: 0 15px;
        height: 64px;
        position: fixed;
        width: 100%;
        top: 0;
    }
    #header-thin .left {
        flex: 1 1;
    }
    #header-thin .search .inner {
        width: auto !important;
    }
    #header-thin .left .mobile-menu-toggle {
        display: flex;
        font-size: 20px;
        color: var(--grey-color);
        margin-right: 20px;
    }
    #header-thin .left nav {
        position: fixed;
        top: 64px;
        left: 0;
        width: 360px;
        background: #fff;
        height: calc(100% - 64px);
        overflow: hidden;
        display: none;
        z-index: 10;
    }
    #header-thin .left nav.active {
        display: block;
    }
    #header-thin .left nav > ul {
        display: block;
        position: absolute;
        left: 0;
        width: 100%;
        transition: left .3s;
    }
    #header-thin .left nav > ul.sub-active {
        left: -100%;
    }
    #header-thin .left nav > ul > li, #header-thin .left ul li ul li {
        height: 46px;
    }
    #header-thin .left .mobile-links {
        display: block;
    }
    #header-thin .left nav > ul > li > a, #header-thin .left ul li ul li a {
        padding: 0 34px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 14px;
        border: 0;
    }
    #header-thin .left nav > ul > li > a i {
        transform: rotate(-90deg);
        font-size: 6px;
    }
    #header-thin .left nav > ul > li + li {
        margin: 0;
    }
    #header-thin .left ul li {
        position: static;
    }
    #header-thin .left ul li ul {
        position: absolute;
        width: 100%;
        left: 100%;
        top: 0;
        box-shadow: none;
    }
    #header-thin .left ul li.active ul {
        display: block;
    }
    #header-thin .left ul li ul .title {
        height: 46px;
        padding: 0 14px;
        font-weight: 600;
        font-size: 14px;
        display: flex;
        align-items: center;
    }
    #header-thin .left ul li ul .back-link {
        margin: 0 14px;
        padding: 20px 0;
        border-bottom: 1px solid var(--lightest-grey-color);
        font-weight: 500;
        font-size: 12px;
        display: flex;
        align-self: center;
    }
    #header-thin .left ul li ul .back-link i {
        font-size: 10px;
        margin-right: 8px;
        margin-left: 0;
        border: 2px solid #E5E4E4;
        border-radius: 50%;
        color: #555555;
        width: 24px;
        height: 24px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    #header-thin .left ul li .services li a img {
        display: none;
    }

    #status-form,
    #status-form .add-file {
        flex-direction: column;
    }
    #status-form .right {
        margin: 0 0 20px;
        order: 0;
    }
    #status-form .left {
        order: 1;
    }
    #status-form .left,
    #status-form .right {
        flex: 0 0 100%;
    }
    #status-form .add-file a {
        width: 100%;
        margin-bottom: 20px;
    }
    #status-form .add-file .note {
        text-align: center;
    }
    #status-form .steps {
        flex-direction: row;
        height: auto;
    }
    #status-form .steps::before {
        height: 2px;
        top: 11px;
        left: 12.5%;
        width: 75%;
    }
    #status-form .steps::after {
        top: 11px;
        left: 12.5%;
        height: 2px !important;
        position: absolute;
    }
    #status-form .steps.step-2::after {
        width: 25%;
    }
    #status-form .steps.step-3::after {
        width: 50%;
    }
    #status-form .steps.step-4::after {
        width: 75%;
    }
    #status-form .step {
        display: flex;
        flex-direction: column;
        padding-left: 0;
        text-align: center;
        flex: 0 0 25%;
        align-items: center;
    }
    #status-form .step::before {
        position: static;
        margin: 0 0 10px;
    }
    #status-form .step::after {
        width: 10px;
        left: 0 !important;
        right: 0;
        top: 7px !important;
        bottom: initial !important;
    }
    #status-form .steps.step-1 .step:nth-child(2), #status-form .steps.step-1 .step:nth-child(3), #status-form .steps.step-1 .step:nth-child(4),
    #status-form .steps.step-2 .step:nth-child(3), #status-form .steps.step-2 .step:nth-child(4), #status-form .steps.step-3 .step:nth-child(4) {
        margin-top: 7px;
    }
    #status-form .steps.step-1 .step:nth-child(2)::before, #status-form .steps.step-1 .step:nth-child(3)::before, #status-form .steps.step-1 .step:nth-child(4)::before,
    #status-form .steps.step-2 .step:nth-child(3)::before, #status-form .steps.step-2 .step:nth-child(4)::before, #status-form .steps.step-3 .step:nth-child(4)::before {
        margin-bottom: 17px;
    }
}
@media(max-width: 768px) {
    #account-form > .columns > .right {
        width: auto;
        flex: 1 1 auto;
    }
    #account-form .columns {
        flex-direction: column;
    }
    #account-form > .columns > .left {
        width: auto;
        margin-right: 0;
        margin-bottom: 20px;
    }
    #account {
        margin-bottom: 0;
    }
    #account-section {
        padding: 14px;
    }
    .user-menu-toggle .text {
        display: none;
    }
    body {
        padding-top: 64px;
    }
    #header-thin .logo {
        margin-right: 20px;
    }
    #header-thin .search {
        width: auto;
    }
    #header-thin .search input {
        display: none;
    }
    #header-thin .search .inner > i {
        position: static;
    }
    #header-thin .search.active {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        right: 0;
        padding: 0 0 0 20px;
        margin: 0;
        background: #fff;
    }
    #header-thin .search.active .inner {
        display: flex;
    }
    #header-thin .search.active input {
        display: block;
        padding-left: 10px;
    }

    .tabs {
        flex-direction: column;
    }
    .tabs a {
        padding: 15px 10px;
    }
    .tabs a + a {
        margin-top: 10px;
    }

    .price-field {
        flex-wrap: wrap;
    }
    .price-field > label {
        width: 100%;
        flex: 0 0 100%;
        margin-right: 0;
        margin-bottom: 18px;
    }
    .price-field .text-field {
        flex-grow: 2;
    }
    .price-field .select-field {
        flex-grow: 1;
        margin-right: 0;
    }
    .price-field .select-field select {
        width: 100%;
    }
    .price-field .note-field {
        margin-top: 10px !important;
    }

    #account-dashboard .columns, #account-invites .columns {
        flex-direction: column;
    }
    #account-dashboard .right, #account-dashboard .left, #account-invites .left, #account-invites .right {
        flex: 0 0 auto;
        margin: 0;
        width: 100%;
    }
    #account-dashboard .right, #account-invites .right {
        margin-top: 20px;
    }
    #account-myawards .download {
        justify-content: flex-start;
    }
    #account-myawards .mobile-table td:first-child img {
        max-width: 60px;
        max-height: 60px;
    }
    #account-myawards .download a, #account-purchases .download a {
        margin-left: 0;
    }

    #account-leads .filter, #account-leads .filter .filter-options {
        flex-direction: column;
    }
    #account-leads .filter .field {
        margin-left: 0 !important;
        margin-top: 20px;
    }
    #account-leads .filter .buttons button {
        margin-left: 0;
    }

    #photo-form .columns {
        flex-wrap: wrap;
    }
    #photo-form .columns .right {
        flex: 1 1;
    }
    #photo-form .columns .right .top {
        margin-bottom: 0;
    }
    #photo-form .columns .buttons {
        display: none;
    }
    #photo-form .columns .mobile-buttons {
        display: flex;
        justify-content: space-between;
        margin-top: 20px;
        flex: 0 0 100%;
    }
    #photo-form .columns .mobile-buttons a {
        flex: 0 0 calc(50% - 10px);
    }

    .filter .filter-options {
        display: none;
    }
    .filter .mobile-filter-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: var(--main-color);
        height: 44px;
        padding: 0 20px;
        font-weight: 600;
        font-size: 14px;
        color: #fff;
        border-radius: var(--border-radius);
    }
    .filter .mobile-filter-toggle .text {
        display: flex;
        align-items: center;
    }
    .filter .mobile-filter-toggle .text i {
        margin-right: 10px;
        font-size: 20px;
    }
    .filter .mobile-filter-toggle > i {
        font-size: 4px;
    }
    .filter.active .mobile-filter-toggle > i{
        transform: rotate(180deg);
    }
    .filter.active .filter-options {
        display: block;
    }

    .modal-button {
        display: flex;
    }
    .modal-button > a, #account-leads .filter .buttons button {
        flex: 1 1 auto;
    }
    .modal-button > a + a {
        margin-left: 0;
    }
    .modal-button .modal-container {
        width: 100% !important;
    }

    .account-field > .edit-field .input {
        flex-direction: column;
        align-items: flex-start;
    }
    .account-field > .edit-field .input > label {
        width: auto;
        margin-bottom: 18px;
    }
    .account-field > .edit-field .buttons {
        margin-left: 0;
    }
    .account-field > .edit-field .input .text-field, .account-field > .edit-field .input select, .account-field > .edit-field .input textarea {
        width: 100%;
    }

    .support {
        width: 100%;
        max-width: initial;
    }

    .account-fields .edit-fields .input > input, .account-fields .edit-fields .input > select, .account-fields .edit-fields .input .text-field {
        width: auto;
    }
}

@media(min-width: 1024px) {
    #header-thin .left ul li .services {
        flex-wrap: wrap;
        width: 620px;
        padding: 8px;
        transform: translate(calc(-50% + 55px));
        height: 352px;
    }
    #header-thin .left nav > ul > li > a:hover + .services, #header-thin .left ul li .services:hover {
        display: flex;
    }
    #header-thin .left ul li .services li {
        width: calc(50% - 16px);
        flex: 0 0 calc(50% - 16px);
        margin: 4px 8px;
    }
    #header-thin .left ul li .services li a {
        display: flex !important;
        align-items: center;
        border-bottom: 0;
        padding: 10px;
        border-radius: var(--border-radius) !important;
        color: #555555;
        font-size: 13px;
    }
    #header-thin .left ul li .services li a:hover {
        color: #2C2C2C;
    }
    #header-thin .left ul li .services li a img {
        margin-right: 8px;
        display: block;
    }
    #header-thin .left ul li .services .icon-active, #header-thin .left ul li .services a:hover .icon {
        display: none;
    }
    #header-thin .left ul li .services a:hover .icon-active {
        display: block;
    }
}

#header-thin .hover_service:hover .hoverable-red {
    fill: #F04149;
}
