* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;

    -webkit-text-size-adjust: 100%;
}

html {
    display: block;
}

body {
    margin: 0;
    padding: 0;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Open Sans', system-ui, sans-serif;
    line-height: 1.15;
    background-color: #f6f6f6;

    -webkit-font-smoothing: subpixel-antialiased;
}

img {
    display: block;
}

/* Main. */

.wrapper {
    padding: 40px;
}

.clear {
    clear: both;
}

.ta_c {
    text-align: center;
}

.ta_r {
    text-align: right;
}

/* Main. */

/* Button. */

.button {
    display: block;

    height: 46px;
    padding: 0 30px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 48px;
    letter-spacing: 1.5px;
    background-color: #5e46bd;
    border-radius: 40px;
    cursor: pointer;

    transition: color 0.25s linear, background-color 0.25s linear,
        border-color 0.25s linear, box-shadow 0.15s linear;

    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.button:hover {
    background-color: #6f53e5;
}

.panel_right .button {
    background-color: #5080ff;
}

.panel_right .button:hover {
    background-color: #4976ec;
}

.button:active {
    line-height: 50px;
}

.button.copy {
    background-color: #06b31b;
}

.button.pass {
    color: #5e46bd;
    background-color: #efebff;
}

.button.pass:hover {
    background-color: #e1ebfe;
}

.button.red {
    color: #fc6221;
    background-color: rgba(254, 101, 44, 0.1);
}

.button.red:hover {
    color: #fff;
    background-color: #fc6221;
}

/* Button. */

/* Inputs. */

.input,
.textarea {
    display: block;

    width: 100%;
    height: 46px;
    padding: 11px 16px 14px;
    color: #111;
    font-size: 15px;
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
    line-height: 19px;
    background-color: #fff;
    border: 1px solid #dee0e8;
    border-radius: 2px;
    /*box-shadow: inset 0 1px 4px 0 rgba(0, 0, 0, .08);*/
    box-shadow: none;
    outline: none;

    transition: background-color 0.13s linear, border-color 0.13s linear;

    -webkit-appearance: none;
}

.input.err,
.textarea.err {
    border-color: #fc6221;
}

.input:hover,
.textarea:hover {
    border-color: #c7c9d1;
}

.input:focus,
.textarea:focus {
    background-color: #fff;
    border-color: #5e46bd;
    box-shadow: none;
}

.input:disabled,
.textarea:disabled {
    opacity: 0.48;
}

.input-prefix-wrap {
    display: flex;

    background-color: #fff;
    border-radius: 2px;
    box-shadow: none;

    transition: background-color 0.25s linear;
}

.input-prefix-wrap.focus {
    background-color: #fff;
    box-shadow: none;
}

.input-prefix-lable {
    height: 46px;
    padding: 13px 0 12px 20px;
    text-align: right;
    line-height: 19px;
    white-space: nowrap;
    border: 1px solid #dee0e8;
    border-right: 0;
    border-radius: 2px 0 0 2px;
    cursor: text;

    transition: border-color 0.13s linear;

    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.input-prefix-wrap:hover .input-prefix-lable,
.input-prefix-wrap:hover .input-prefix-field .input {
    border-color: #c7c9d1;
}

.input-prefix-rev .input-prefix-lable {
    padding-left: 0;
    padding-right: 20px;
    border-radius: 0 2px 2px 0;
    border-right: 1px solid #dee0e8;
    border-left: 0;
}

.input-prefix-field {
    flex-grow: 1;

    white-space: nowrap;
}

.input-prefix-field .input {
    padding-left: 0;
    background-color: transparent;
    border-left: 0;
    border-radius: 0 2px 2px 0;
    box-shadow: none;
}

.input-prefix-rev .input-prefix-field .input {
    padding-left: 20px;
    padding-right: 0;
    text-align: right;
    border-radius: 2px 0 0 2px;
    border: 1px solid #dee0e8;
    border-right: 0;
}

.input-prefix-lable.err,
.input-prefix-rev .input-prefix-lable.err {
    border-color: #fc6221;
}

.input-prefix-lable.focus,
.input-prefix-rev .input-prefix-lable.focus {
    border-color: #5e46bd !important;
}

.input-prefix-rev .input-prefix-field .input:focus,
.input-prefix-wrap.focus .input-prefix-field .input {
    border-color: #5e46bd !important;
}

.input_select {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    background-color: #fff;
    border: 1px solid #dcdcdc;
    border-top: 0 none;
    border-radius: 2px;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.08);
}

.input_select_li {
    overflow: hidden;

    padding: 13px 20px 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;

    transition: background-color 0.25s linear;
}

.input_select_li:hover {
    background-color: #f9f9f9;
}

.input_plus {
    position: absolute;
    top: 13px;
    right: 13px;

    cursor: pointer;
}

.select {
    position: relative;

    height: 46px;
    padding: 13px 20px 12px;
    color: #111;
    font-size: 15px;
    font-weight: 400;
    line-height: 19px;
    background-color: #fff;
    border: 1px solid #dee0e8;
    border-radius: 2px;
    box-shadow: none;
    cursor: pointer;
    z-index: 1;

    transition: background-color 0.13s linear, border-color 0.13s linear;
}

.select:hover {
    border-color: #c7c9d1;
}

.select.active {
    background-color: #fff;
    border-color: #5e46bd;
    border-radius: 2px 2px 0 0;
    z-index: 2;
}

.select:before {
    content: '';
    position: absolute;
    top: 15px;
    right: 20px;

    width: 12px;
    height: 12px;
    background: url('/images/arrow_left.svg') center center no-repeat;
    background-size: 12px auto;

    transition: transform 0.25s linear;
    transform: rotate(270deg) translateX(-1px);
}

.select.active:before {
    transform: rotate(450deg);
}

.select > span {
    overflow: hidden;
    display: block;

    padding-right: 20px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.select > span br {
    display: none;
}

.select_ul {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: -1px;
    right: -1px;

    background-color: #fff;
    border: 1px solid #dcdcdc;
    border-top: 0 none;
    border-radius: 0 0 2px 2px;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.08);
}

.select.active .select_ul {
    display: block;
    overflow-y: scroll;

    max-height: 350px;
}

.select_li {
    padding: 13px 20px 12px;
}

.select_li:hover {
    background-color: #f9f9f9;
}

.select_li_arrow {
    width: 16px;
    height: 16px;
    background: url('/images/arrow.svg') center center no-repeat;
    background-size: 100% auto;
    z-index: 3;
}

.select_li br {
    display: none;
}

.select_li span {
    display: block;

    margin-top: 4px;
    color: #43454e;
    font-size: 13px;
}

.textarea {
    resize: vertical;

    min-height: 200px;
    padding-top: 13px;
    line-height: 22px;
}

.input:-moz-placeholder {
    color: #909090 !important;
    line-height: normal;
}

.input::-webkit-input-placeholder {
    color: #909090;
    line-height: normal;
}

::-webkit-input-placeholder {
    color: #909090;
    line-height: normal;
}

:-ms-input-placeholder {
    color: #909090;
    line-height: normal;
}

::-moz-placeholder {
    color: #909090;
    line-height: normal;
}

:-moz-placeholder {
    color: #909090;
    line-height: normal;
}

.textarea:-moz-placeholder {
    line-height: 22px;
}

.textarea::-webkit-input-placeholder {
    line-height: 22px;
}

.textarea:-ms-input-placeholder {
    line-height: 22px;
}

.textarea::-moz-placeholder {
    line-height: 22px;
}

/* Inputs. */

/* General. */

.general {
}

.general_tabers {
    display: flex;
    margin-bottom: 4px;
}

.general_taber {
    display: block;

    padding: 17px 26px;
    color: #9d9fa9;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px 6px 0 0;

    transition: color 0.23s ease-out;
}

.general_taber.down {
    color: #0f9e35;
}

.general_taber.right {
    padding: 0;

    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    flex-grow: 1;

    text-align: right;
}

.general_taber:hover {
    color: #5e46bd;
}

.general_taber_lable {
    display: flex;
    align-items: center;
    position: relative;
    white-space: nowrap;

    font-weight: 600;

    z-index: 2;
}

.general_taber_lable.gray:hover:before {
    width: 0;
}

.general_taber.right .general_taber_lable {
    display: block;

    margin-left: 30px;
    color: #5e46bd;
    font-size: 14px;
    font-weight: 600;
}

.general_taber.right .general_taber_lable.gray {
    display: inline-block;
    position: relative;

    color: #9d9fa9;
    cursor: pointer;
}

.general_taber.right .general_taber_lable.red {
    color: #fc6221;
}

.general_taber_lable.gray:before {
    content: '';
    position: absolute;
    top: calc(100% + 3px);
    right: 0;

    width: 100%;
    height: 1px;
    background-color: #d5d6e0;

    transition: width 0.2s ease-out;
}

.general_taber_lable svg {
    width: 20px;
    height: auto;
    margin-right: 6px;
}

.general_taber_lable svg path {
    fill: #bfbfc3;

    transition: fill 0.23s ease-out;
}

.general_taber.down .general_taber_lable svg path {
    fill: #0f9e35;
}

.general_taber:hover .general_taber_lable svg path {
    fill: #5e46bd;
}

.general_taber.active {
    position: relative;

    color: #fff;
    background-color: #5e46bd;
}

.general_taber.active .general_taber_lable svg path {
    fill: #fff;
}

.general_overflow {
    overflow: auto;
    position: relative;

    max-height: 90vh;
    background-color: #fff;
    border-radius: 0 12px 12px 12px;
}

.general_overflow::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background: #fafafa;
}

.general_overflow::-webkit-scrollbar-thumb {
    background: #c8c9ce90;
    border-radius: 4px;
}

.general_overflow::-webkit-scrollbar-thumb:hover {
    background: #c8c9ce;
}

.general_table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.general_table.fixed {
    position: sticky;
    top: 0;

    z-index: 10;
}

.general_table td, .general_table td::before {
    padding: 16px;
    box-shadow: inset -2px 0 0 -1px #eaeaea;
}

.general_table thead th {
    padding: 16px;
}

.general_table tbody td {
    position: relative;
    background: #fff;
    border-bottom: 2px solid #eaeaea;
}

.general_table thead td:first-of-type, .general_table tbody td:nth-of-type(2) {
    position: sticky;
    left: 0;
    z-index: 9;
}

.general_table tbody td:first-child {
    padding-left: 20px;
}

.general_table tbody td:last-child {
    padding-right: 20px;
}

.general_table tbody tr.general_sub td:before,
.general_table tbody tr td:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 1;

    transition: background-color 0.23s ease-out;
}

.general_table tbody tr.general_sub td:before,
.general_table tbody:nth-child(2n) td:before {
    background-color: #fafafa;
}

.general_table tbody tr.general_sub td {
    border-bottom: none;
}

/*.general_table tbody tr.general_sub td:before {
	border-top: 1px solid #F1F1F1;
}*/

.general_table tbody tr.general_sub.start td:before {
    border-top: none;
}

.general_table tbody tr.general_sub td:first-child:before,
.general_table tbody tr td:first-child:before {
    /*left: 8px;

	border-radius: 8px 0 0 8px;*/
}

.general_table tbody tr.general_sub td:last-child:before,
.general_table tbody tr td:last-child:before {
    /*right: 8px;

	border-radius: 0 8px 8px 0;*/
}

.general_table tbody tr.general_sub td:first-child:before,
.general_table tbody tr.general_sub td:last-child:before {
    border-radius: 0px;
}

.general_table tbody tr.general_sub.start td:first-child:before {
    /*border-radius: 8px 0 0 0;*/
}

.general_table tbody tr.general_sub.start td:last-child:before {
    /*border-radius: 0 8px 0 0;*/
}

.general_table tbody tr.general_sub.end td {
    border-bottom: 1px solid #f1f1f1;
}

.general_table tbody tr.general_sub.end td:first-child:before {
    /*border-radius: 0 0 0 8px;*/
}

.general_table tbody tr.general_sub.end td:last-child:before {
    /*border-radius: 0 0 8px 0;*/
}

.general_table tbody tr.general_white td:before {
    background-color: transparent;
}

.general_table tbody tr.general_white td {
    border-bottom: 0 none;
}

.general_table tbody tr.general_white.end td {
    border-bottom: 1px solid #f1f1f1;
}

@media (hover: hover) and (pointer: fine) {
    .general_table tbody.merged:hover td:before {
        background-color: #efebff !important;
    }
}

.general_table tbody td.pick:after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;

    padding: 12px 20px;
    background-color: #e2d7ff;
    /*border-radius: 6px;*/
    z-index: 2;
}

.general_table tbody td.pick:first-child:after {
    /*left: 12px;*/
}

.general_table tbody td.pick:last-child:after {
    /*right: 12px;*/
}

.general_table tbody tr:last-child td {
    /*border-bottom: 0 none;*/
}

.general_title {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    white-space: nowrap;
}

.general_subtitle {
    padding-top: 5px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    opacity: 0.6;
}

.general_title_stats {
    width: 12px;
    height: 100%;
    margin: 0 auto;
    background: url('../images/stats.svg') center center no-repeat;
    background-size: 100% auto;
}

.general_chanel {
    position: relative;

    color: #5e46bd;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    z-index: 3;
}

.general_chanel span {
    display: block;
    position: relative;

    padding-top: 4px;
    font-size: 11px;
    font-weight: 400;
    z-index: 2;
}

.general_subs {
    position: relative;

    color: #43454e;
    font-size: 14px;
    font-weight: 600;
    z-index: 3;
}

.general_views {
    position: relative;

    color: #43454e;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    white-space: nowrap;
    z-index: 3;
}

.general_views span {
    font-size: 11px;
}

.general_views_span {
    display: inline;
    font-weight: 600;
}

.general_views_span.link,
.general_views span.link {
    position: relative;

    color: #5e46bd;
}

.general_views_span.link:before,
.general_views span:before {
    content: '';
    position: absolute;
    top: calc(100% - 2px);
    left: 0;

    width: 0;
    height: 1px;
    background-color: #5e46bd;
    opacity: 0.7;

    transition: width 0.2s ease-out;
}

.general_views_span.link:hover:before,
.general_views span.link:hover:before {
    width: 100%;
}

.general_views_span span {
    display: block;
}

.general_views span img {
    display: inline-block;

    width: 12px;
    height: auto;
    margin: 0 2px -2px;
}

.general_stats {
    display: block;
    position: relative;

    width: 36px;
    margin: 0 auto;
    padding: 2px 12px;
    font-size: 0;
    border-radius: 4px;
    background-color: #efebff;
    z-index: 3;

    transition: background-color 0.23s ease-out;
}

.general_stats:hover {
    background-color: #5e46bd !important;
}

table {
    text-align: center;
}

.general_table tbody tr {
    cursor: pointer;
}

.general_table tbody tr.general_sub .general_stats,
.general_table tbody tr:nth-child(odd) .general_stats {
    background-color: #efebff;
}

.general_table tbody tr.general_white .general_stats {
    background-color: #f6f9ff;
}

.general_table tbody tr:hover .general_stats {
    background-color: #efebff;
}

.general_table tbody td.pick .general_stats {
    background-color: #efebff;
}

.general_stats svg {
    width: 12px;
    height: auto;
    fill: #5e46bd;

    transition: fill 0.23s ease-out;
}

.general_stats:hover svg {
    fill: #fff;
}

.general_arrow {
    position: relative;

    width: 16px;
    height: 16px;
    background: url('../images/arrow.svg') center center no-repeat;
    background-size: 100% auto;
    z-index: 3;
}

.general_arrow.center {
    margin: 0 auto;
}

.general_arrow.right {
    float: right;
}

.general_mobile_lable {
    display: none;

    padding-bottom: 0 !important;
}

.general_table.fixed .general_thead {
    display: flex;
}

.general_table.fixed .general_thead tr {
    display: flex;
    box-shadow: 0px 4px 20px -12px rgba(0, 0, 0, 0.2);
}

.general_table .general_thead td {
    color: #fff;
    font-weight: 700;
    background-color: #5e46bd;
}

.general_table.fixed .general_thead td {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
}

/* General. */

/* Tags. */

.tags {
    position: relative;

    margin: 0 -6px;
    font-size: 0;
    z-index: 3;
}

.tags_tag {
    display: inline-block;

    margin: 2px;
    padding: 2px 4px;
    color: #5e46bd;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    border-radius: 2px;
    background-color: #efebff;
    cursor: pointer;

    transition: color 0.23s ease-out, background-color 0.23s ease-out;
}

.tags_tag:hover {
    background-color: #efebff;
}

/*.general_table .tags_tag:hover {
	color: #FFF;
	background-color: #5E46BD !important;
}*/

.tags_tag.active {
    color: #fff;
    background-color: #5e46bd !important;
}

.general_table tbody tr.general_sub .tags_tag,
.general_table tbody tr:nth-child(odd) .tags_tag {
    background-color: #efebff;
}

.general_table tbody tr.general_white .tags_tag {
    background-color: #f6f9ff;
}

.general_table tbody tr:hover .tags_tag {
    background-color: #efebff;
}

.general_table tbody td.pick .tags_tag {
    background-color: #efebff;
}

/* Tags. */

/* Toolbar. */

.toolbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;

    padding: 16px 0;
    background-color: #fff;
    border-top: 1px solid #eaeaea;
    z-index: 11;

    transition: transform 0.23s ease-out;
    transform: translate3d(0, 100%, 0);
}

.toolbar.active {
    transform: translate3d(0, 0, 0);
}

.toolbar_button {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.toolbar_button .button {
    margin: 0 6px;
}

/* Toolbar. */

/* Panel. */

.panel {
    display: flex;
    flex-wrap: wrap;

    width: 800px;
    margin: 44px auto;
}

.panel_left {
    align-self: flex-start;
    position: sticky;
    top: 32px;

    width: 200px;
    padding: 16px;
    background-color: #fff;
    border-radius: 8px;
}

.panel_center {
    width: calc(100% - 464px);
    margin: 0 32px;
    padding: 16px;
    background-color: #fff;
    border-radius: 8px;
}

.panel_right {
    align-self: flex-start;
    position: sticky;
    top: 32px;

    width: 200px;
    padding: 16px;
    background-color: #fff;
    border-radius: 8px;
}

.panel_button {
}

.panel_button.top {
    margin-top: 16px;
}

.panel_title {
    font-size: 24px;
    font-weight: 600;
}

.panel_descr {
    padding-top: 24px;
    font-size: 13px;
    line-height: 21px;
}

/* Panel. */

/* Nav. */

.nav {
}

.nav_ul {
}

.nav_ul_li {
}

.nav_ul_li a {
    display: block;

    padding: 10px 8px;
    color: #5080ff;
    font-size: 16px;
    text-decoration: none;
    border-radius: 4px;
}

.nav_ul_li a:hover {
    background-color: #f6f9ff;
}

.nav_ul_li a.gray {
    color: #909090;
}

.nav_ul_li a.gray:hover {
    background-color: #f6f6f6;
}

/* Nav. */

/* List. */

.list {
}

.list_blocks {
}

.list_block {
}

.list_block {
    display: block;

    padding: 10px 8px;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
}

.list_block:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.02);
}

.list_block:hover {
    background-color: #f6f9ff;
}

.list_block_title {
    overflow: hidden;

    color: #43454e;
    font-size: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.list_block_title br {
    display: none;
}

.list_block_title svg {
    width: 12px;
    height: auto;
    fill: #43454e;
}

.list_block_title_arrow {
    width: 16px;
    height: 16px;
    background: url('/images/arrow.svg') center center no-repeat;
    background-size: 100% auto;
    z-index: 3;
}

.list_block_title span {
    display: block;

    margin-top: 4px;
    color: #43454e;
    font-size: 13px;
}

/* List. */

/* Form. */

.form {
}

.form_header {
    margin: 0 -16px 16px;
    padding: 16px 16px 0;
    border-top: 1px solid #dee0e8;
}

.form_header:first-child {
    padding-top: 0;
    border-top: 0;
}

.form_title {
    color: #43454e;
    font-size: 13px;
    font-weight: 600;
}

.form_title br {
    display: none;
}

.form_subtitle {
    margin-top: 6px;
    color: #43454e;
    font-size: 13px;
}

.form_block {
    margin-bottom: 20px;
}

.form_block:last-child {
    margin-bottom: 0;
}

.form_lable {
    margin-bottom: 8px;
    color: #43454e;
    font-size: 14px;
    font-weight: 600;
}

.form_input {
}

/* Form. */

/* Dragon. */

.gragon_placeholder {
    display: block;

    height: 38px;
    background-color: #5080ff;
    border-radius: 4px;
}

/* Dragon. */

/* Warning. */

.warning {
    padding: 0 40px 32px;
}

.warning_blocks {
    display: flex;
    flex-wrap: wrap;

    margin: -16px;
}

.warning_block {
    width: calc(100% / 3 - 32px);
    margin: 16px;
    padding: 28px 32px;
    background-color: #fff;
    border-radius: 12px;
}

.warning_att {
    display: inline-block;

    margin-bottom: 16px;
    padding: 4px 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
    white-space: nowrap;
    border-radius: 2px;
    background-color: #ffd500;
}

.warning_att.blue {
    color: #fff;
    background-color: #5e46bd;
}

.warning_title {
    font-size: 16px;
    font-weight: 600;
}

.warning_descr {
    padding-top: 16px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
}

.warning_descr a {
    color: #5e46bd;
    text-decoration: none;
}

.logo {
    margin: 0 40px 32px;
}

/* Warning. */

/* Contacts. */

.contacts {
    padding: 0 40px;
}

.contacts_blocks {
    display: flex;
    flex-wrap: wrap;

    margin: -16px;
}

.contacts_block {
    display: flex;
    justify-content: space-between;
    align-items: center;

    /*width: calc(50% - 32px);*/
    width: 100%;
    margin: 16px;
    padding: 18px 40px;
    background-color: #fff;
    border-radius: 0 0 6px 6px;
}

.contacts_pretitle {
    display: inline-block;

    padding: 4px 6px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
    white-space: nowrap;
    border-radius: 2px;
    background-color: #5e46bd;
}

.contacts_title {
    padding-top: 3px;
    font-size: 16px;
    font-weight: 700;
    line-height: 21px;
    color: #6d7186;
}

.contacts_left {
    width: 140px;
}

.contacts_info {
    width: 140px;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;

    font-weight: 600;
}

.contacts_telegram {
    width: 36px;
    height: 36px;
    margin-left: 24px;
    padding: 8px;
    background-color: #f6f6f6;
    border-radius: 8px;
    cursor: pointer;

    transition: background-color 0.23s ease-out;
}

.contacts_telegram:hover {
    background-color: #f6f9ff;
}

.contacts_telegram svg {
    width: 100%;
    height: auto;
}

.contacts_telegram svg path {
    fill: #bfbfc3;

    transition: fill 0.23s ease-out;
}

.contacts_telegram:hover svg path {
    fill: #5e46bd;
}

.contacts_descr {
    font-size: 14px;
    text-align: right;
    line-height: 22px;
}

.contacts_descr a {
    color: #5e46bd;
    text-decoration: none;
}

.contacts_descr a.gray {
    color: #6d7186;
}

/* Contacts. */
