:focus, :active {
    outline:none;
}
:root {
    --green-color: #23a76f;
    --blue-color: #3b6ee0;
    --yellow-color: #ffcc05;
    --red-color: #f52929;
    --danger-color: #e2834f;
}

*, :after, :before {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
a {
    text-decoration: none;
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
    display: block;
}
input, textarea, select, button, optgroup {
    font: inherit;  
}
label {
    display: inline-block;
}
table {
    width: 100%;
}
body {
    -webkit-text-size-adjust: none;
}
h1, h2, h3, h4, h5, h6 {
    font: inherit;
}
ul, ol {
    list-style: none;
}
.preload * {
    -webkit-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}
.svg {
    fill: currentColor;
    color: currentColor;
}
.position-static {
    position: static !important;
}

body {
    color: #000;
    background-color: #fdfdfd;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    min-width: 320px;
    -webkit-text-size-adjust: none;
}
.container {
    max-width: 1440px;
    width: 100%;
    padding-right: 40px;
    padding-left: 40px;
    margin-right: auto;
    margin-left: auto;
}

/*----------------------  [data-icon] ---------------------- */

[data-icon]:before {
    content:attr(data-icon);
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}
.outlined[data-icon]:before {
    font-family: 'Material Icons Outlined';
}
i[data-icon] {
    font-size: 0;
}

/*---------------------- My loading --------------------*/

.my-loading,
.my-loading__ring {
    width: 50px;
    height: 50px;
}
@-webkit-keyframes rotate{
    to {-webkit-transform:rotate(360deg);transform:rotate(360deg);}
}
@keyframes rotate{
    to {-webkit-transform:rotate(360deg);transform:rotate(360deg);}
}
.my-loading__ring {
    position: absolute;
}
.my-loading__ring:first-child {
    -webkit-transform: skew(30deg, 20deg);
        -ms-transform: skew(30deg, 20deg);
            transform: skew(30deg, 20deg);
}
.my-loading__ring:last-child {
    -webkit-transform: skew(-30deg, -20deg) scale(-1,1);
        -ms-transform: skew(-30deg, -20deg) scale(-1,1);
            transform: skew(-30deg, -20deg) scale(-1,1);
}
.my-loading__ring:last-child svg {
    -webkit-animation-delay: -0.5s;
            animation-delay: -0.5s;
}
.my-loading__ring svg {
    -webkit-animation: rotate 1s linear infinite;
            animation: rotate 1s linear infinite;
    fill: rgba(0,0,0, 0.7);
}

/*---------------------- My window --------------------*/

#window-text {
    display: none;
}
.window-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 104;
    background-color: rgba(54,67,100,.5);
}
.window-cont {
    position: fixed;
    top: 0;
    right: -650px;
    bottom: 0;
    width: 650px;
    -webkit-box-shadow: 0 12px 32px rgb(0 51 153 / 12%), 0 8px 20px rgb(0 51 153 / 8%);
            box-shadow: 0 12px 32px rgb(0 51 153 / 12%), 0 8px 20px rgb(0 51 153 / 8%);
    background-color: #fff;
    z-index: 105;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 30px;
    -webkit-transition: right 250ms;
    -o-transition: right 250ms;
    transition: right 250ms;
}
.window-cont .w-header {
    margin-bottom: 30px;
}
.window-cont .w-header .window-close {
    display: inline-block;
    margin-bottom: 30px;
    opacity: 1;
    cursor: pointer;
    background-image: url('/theme/images/icon-cross.svg?v=2');
    background-repeat: no-repeat;
    background-position: center;
    width: 24px;
    height: 24px;
    -webkit-transition: opacity 250ms;
    -o-transition: opacity 250ms;
    transition: opacity 250ms;
}
.window-cont .w-header .window-close:hover {
    opacity: 0.5;
}
.window-cont .w-header .w-title {
    font-size: 18px;
    font-weight: 300;
}
.window-cont .w-cont {
    display: block;
}

/*---------------------- My modal --------------------*/

#modal-text {
    display: none;
}
.modal-cont {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-box-shadow: 0 12px 32px rgb(0 51 153 / 12%), 0 8px 20px rgb(0 51 153 / 8%);
            box-shadow: 0 12px 32px rgb(0 51 153 / 12%), 0 8px 20px rgb(0 51 153 / 8%);
    background-color: #fff;
    z-index: 102;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 30px;
}
.modal-cont .m-back {
    margin-bottom: 30px;
}
.modal-cont .m-back > span {
    display: inline-block;
    text-align: center;
    cursor: pointer;
    -webkit-transition: background-color 150ms;
    -o-transition: background-color 150ms;
    transition: background-color 150ms;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    padding: 8px 30px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    background-color: #ddd;
    color: #111;
}
.modal-cont .m-back > span:hover {
    background-color: #ccc;
}
.modal-cont .m-title {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 30px;
}

/*----------------------- Buttons ------------------------*/

.button {
    position: relative;
    display: inline-block;
    border: 2px solid transparent;
    background-color: transparent;
    text-align: center;
    cursor: pointer;
    -webkit-transition: border-color 150ms, background-color 150ms ease-out, color 150ms ease-out;
    -o-transition: border-color 150ms, background-color 150ms ease-out, color 150ms ease-out;
    transition: border-color 150ms, background-color 150ms ease-out, color 150ms ease-out;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    padding: 9px 25px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
}
.button.loading {
    color: transparent !important;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}
.button.loading:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-image: url('/theme/images/loader-white.svg');
    background-repeat: no-repeat;
    background-size: 24px 24px;
    background-position: center;
    vertical-align: -5px;
    cursor: default;
}
.button--big {
    padding: 14px 34px;
}
.button--min {
    padding: 6px 16px;
    font-size: 13px;
}
.button--supermin {
    padding: 3px 10px;
    font-size: 12px;
    border-width: 1px;
}

.button--green-outline {
    color: var(--green-color);
    border-color: var(--green-color);
}
.button--green,
.button--green-outline.loading,
.button--green-outline.active,
.button--green-outline:hover {
    color: #fff;
    background-color: var(--green-color);
}
.button--green:hover {
    background-color: #222;
}

.button--blue-outline {
    color: var(--blue-color);
    border-color: var(--blue-color);
}
.button--blue,
.button--blue-outline.loading,
.button--blue-outline.active,
.button--blue-outline:hover {
    color: #fff;
    background-color: var(--blue-color);
}
.button--blue:hover {
    background-color: #222;
}

.button--red-outline {
    color: var(--red-color);
    border-color: var(--red-color);
}
.button--red,
.button--red-outline.loading,
.button--red-outline.active,
.button--red-outline:hover {
    color: #fff;
    background-color: var(--red-color);
}
.button--red:hover {
    color: #fff;
    background-color: #222;
}

.button--black-outline {
    color: #000;
    border-color: #000;
}
.button--black,
.button--black-outline.loading,
.button--black-outline.active,
.button--black-outline:hover {
    color: #fff;
    background-color: #000;
}
.button--black:hover {
    color: #fff;
    background-color: #222;
}

.button--gray-outline {
    color: #666;
    border-color: #d6d6d6;
}
.button--gray,
.button--gray-outline.loading,
.button--gray-outline.active,
.button--gray-outline:hover {
    color: #222;
    background-color: #d6d6d6;
}
.button--gray:hover {
    color: #222;
    background-color: #ccc;
}

.button i {
    vertical-align: -3px;
    margin-right: 4px;
    margin-left: 4px;
}
.button i:before {
    font-size: 16px;
}

.button.button--supermin i {
    vertical-align: -2px;
}
.button.button--supermin i:before {
    font-size: 12px;
}

.button.button--min i {
    vertical-align: -2px;
}
.button.button--min i:before {
    font-size: 14px;
}

.button.button--big i {
    vertical-align: -4px;
}
.button.button--big i:before {
    font-size: 18px;
}

/*----------------------- Start MSG BOX ------------------------*/

.msgbox {
    min-height: calc(100vh - 64px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.msgbox__middle {
    margin: auto;
    padding: 0 40px;
}
.msgbox__cont {
    width: 400px;
    max-width: 400px;
    margin: 60px auto;
    position: relative;
    text-align: center;
}
.msgbox__title {
    color: #363f5a;
    font-size: 28px;
    font-weight: 300;
    padding-bottom: 10px;
}
.msgbox__text {
    display: block;
    color: #777;
    font-size: 16px;
    font-weight: 300;
    padding-bottom: 44px;
}

/*----------------------- Notes -----------------------*/

#notes {
    position: fixed;
    bottom: 20px;
    right: 20px;
    cursor: default;
    -o-transition: height 0.45s ease-in-out;
    transition: height 0.45s ease-in-out;
    -webkit-transition: height 0.45s ease-in-out;
    pointer-events: none;
    z-index: 111;
}
#notes .note-item {
    max-height: 192px;
    opacity: 1;
    will-change: opacity, transform;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-touch-callout: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    z-index: 101;
    pointer-events: auto;
    display: -webkit-box;
    display: -moz-flex;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -moz-align-items: flex-start;
    align-items: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    width: 50vw;
    max-width: 320px;
    line-height: 20px;
    color: #fff;
    margin: 20px 0 0;
    transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    padding: 20px;
    border-radius: 10px;
}
#notes .note-item[data-show="false"] {
    pointer-events: none;
    opacity: 0 !important;
    max-height: 0 !important;
    margin-bottom: 0 !important;
}
#notes .note-item[data-type="info"] {
    background-color: rgba(55, 94, 151, 1);
}
#notes .note-item[data-type="warn"] {
    background-color: rgba(235, 172, 0, 1);
    color: #000;
    animation: shake 0.9s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
    -webkit-animation: shake 0.9s cubic-bezier(0.36, 0.07, 0.19,  0.97) both;
}
#notes .note-item[data-type="error"] {
    background-color: rgb(255, 0, 0);
    animation: shake 0.54s cubic-bezier(0.36, 0.07, 0.19,  0.97) both;
    -webkit-animation: shake 0.54s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}
#notes .note-item[data-type="success"] {
    background-color: rgb(60, 165, 87);
}
#notes .note-item .note-item-text {
    -webkit-box-flex: 1;
            flex: auto;
    -webkit-flex: auto;
    -moz-flex: auto;
    -ms-flex: auto;
    padding-right: 6px;
    max-width: calc(100% - 20px);
    max-width: -webkit-calc(100% - 20px);
}
#notes .note-item .note-item-btn {
    width: 20px;
    height: 20px;
    cursor: pointer;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiB4bWw6c3BhY2U9InByZXNlcnZlIiBmaWxsPSIjZmZmIj48cGF0aCBkPSJNMTguMyw1LjcxTDE4LjMsNS43MWMtMC4zOS0wLjM5LTEuMDItMC4zOS0xLjQxLDBMMTIsMTAuNTlMNy4xMSw1LjdjLTAuMzktMC4zOS0xLjAyLTAuMzktMS40MSwwbDAsMCBjLTAuMzksMC4zOS0wLjM5LDEuMDIsMCwxLjQxTDEwLjU5LDEyTDUuNywxNi44OWMtMC4zOSwwLjM5LTAuMzksMS4wMiwwLDEuNDFoMGMwLjM5LDAuMzksMS4wMiwwLjM5LDEuNDEsMEwxMiwxMy40MWw0Ljg5LDQuODkgYzAuMzksMC4zOSwxLjAyLDAuMzksMS40MSwwbDAsMGMwLjM5LTAuMzksMC4zOS0xLjAyLDAtMS40MUwxMy40MSwxMmw0Ljg5LTQuODlDMTguNjgsNi43MywxOC42OCw2LjA5LDE4LjMsNS43MXoiLz48L3N2Zz4=)  no-repeat 0 0 / contain;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s;
    -webkit-transition: opacity 0.2s;
}
#notes .note-item .note-item-btn:hover {
    opacity: 0.6;
}

/* --------------------------- Other ---------------------------*/
.grecaptcha-mobile {
    display: none;
    font-size: 12px;
    color: #777;
    padding-top: 20px;
}
.grecaptcha-mobile a {
    color: var(--blue-color);
}

@media (max-width: 1000px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 768px) {
    .button--big {
        padding: 12px 28px;
    }
    .button--big i {
        vertical-align: -5px;
    }
    .button--min {
        padding: 4px 12px;
    }
    .grecaptcha-badge {
        visibility: hidden;
    }
    .grecaptcha-mobile {
        display: block;
    }
    .window-cont {
        width: 100%;
        -webkit-box-shadow: none;
        box-shadow: none;
        padding: 20px;
    }
}/*----------------------- Header ------------------------*/

.header {
    background-color: #fff;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,.1);
            box-shadow: inset 0 -1px 0 rgba(0,0,0,.1);
}
.header .header__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 64px;
}
.header .header__nav {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
    height: inherit;
}
.header .header__logo {
    display: inline-block;
    margin-right: 60px;
    font-size: 0;
}
.header .header__logo img {
    width: 130px;
    height: 30px;
}
.header .header-mobile__logo {
    display: none;
    padding: 40px 20px;
    font-size: 0;
    border-bottom: 1px solid #edeeed;
}
.header .header-mobile__logo a {
    display: inline-block;
}
.header .header-mobile__logo img {
    width: 130px;
    height: 30px;
}
.header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: inherit;
}
.header__menu > li {
    position: relative;
    height: inherit;
}
.header__menu > li.active:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--blue-color);
}
.header__menu > li + li {
    margin-left: 30px;
}
.header__menu > li > a,
.header__menu > li > span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: inherit;
    font-weight: 700;
    color: #222;
    -webkit-transition: color 250ms;
    -o-transition: color 250ms;
    transition: color 250ms;
    cursor: pointer;
}
.header__menu > li > span {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
.header__menu > li.active > a,
.header__menu > li > a:hover,
.header__menu > li > span.open,
.header__menu > li.active > span,
.header__menu > li > span:hover {
    color: var(--blue-color);
}

.header__menu > li > span > i {
    -webkit-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
    -webkit-transform: rotateX(0);
            transform: rotateX(0);
}
.header__menu > li > span > i:before {
    font-size: 20px;
}
.header__menu > li > span.open > i {
    -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
            transform: rotate(-180deg);
}

.header-nav__open-mobile {
    display: none;
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
}
.header-nav__open-mobile span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: #304167;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out; 
}
.header-nav__open-mobile span:nth-child(1) {
    top: 0px;
    -webkit-transform-origin: left center;
        -ms-transform-origin: left center;
            transform-origin: left center;
}
.header-nav__open-mobile span:nth-child(2) {
    top: 10px;
    -webkit-transform-origin: left center;
        -ms-transform-origin: left center;
            transform-origin: left center;
}
.header-nav__open-mobile span:nth-child(3) {
    top: 20px;
    -webkit-transform-origin: left center;
        -ms-transform-origin: left center;
            transform-origin: left center;
}

.multi__menu {
    display: none;
    position: absolute;
    background: #ffffff;
    padding: 10px 0;
    border-radius: 0 0 5px 5px;
    pointer-events: none;
    min-width: 300px;
    top: 100%;
    left: 0;
    -webkit-box-shadow: 0 0 12px 5px rgb(0 0 0 / 10%);
            box-shadow: 0 0 12px 5px rgb(0 0 0 / 10%);
    z-index: 80;
}
.header__menu > li > span.open ~ .multi__menu {
    display: block;
    pointer-events: auto;
}
.multi__menu > li a,
.multi__menu > li span {
    display: block;
    padding: 10px 20px;
    color: #222;
    font-weight: 500;
    -webkit-transition: background-color 250ms;
    -o-transition: background-color 250ms;
    transition: background-color 250ms;
    cursor: pointer;
}
.multi__menu > li span:hover,
.multi__menu > li a:hover {
    background-color: #e8f1fc;
}
.multi__menu > li span i,
.multi__menu > li a i {
    margin-right: 5px;
    vertical-align: -2px;
    color: #35487a;
}
.multi__menu > li span i:before,
.multi__menu > li a i:before {
    font-size: 15px;
}
.header__buts > .button {
    margin-left: 15px;
}
.header-mobile__buts {
    display: none;
}
.header__profile {
    margin-left: auto;
    padding-left: 30px;
    height: inherit;
}

/*----------------------- Default Container ------------------------*/

.container-default {
    padding: 40px 0;
}
.container-default__title {
    color: #363f5a;
    font-size: 36px;
    font-weight: 300;
    padding-bottom: 10px;
}
.container-default__subtitle {
    display: block;
    color: #777;
    font-size: 14px;
    font-weight: 300;
    padding-bottom: 44px;
}
.container-default__subtitle > a {
    color: #000;
    margin-right: 5px;
    opacity: 0.3;
    transition: opacity 250ms;
}
.container-default__subtitle > a:hover {
    opacity: 0.5;
}
.container-default__subtitle > a i {
    vertical-align: -7px;
}
.container-default__name {
    color: #000;
    font-weight: 700;
    font-size: 16px;
    padding-bottom: 20px;
}
.container-default__name > a {
    color: var(--blue-color);
    border-bottom: 1px dashed;
    transition: border-color 250ms;
}
.container-default__name > a:hover {
    border-bottom-color: transparent;
}

/*----------------------- Auth page ------------------------*/

.container-auth {
    min-height: calc(100vh - 64px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.container-auth__middle {
    margin: auto;
}
.container-auth__wrap {
    width: 400px;
    max-width: 400px;
    margin: 60px auto;
    position: relative;
}
.container-auth__buttons > * {
    display: block;
    width: 100%;
    margin-top: 15px;
}
.container-auth__msg {
    display: none;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--danger-color);
}
.container-auth__title {
    color: #363f5a;
    font-size: 36px;
    font-weight: 300;
    text-align: center;
    padding-bottom: 10px;
}
.container-auth__subtitle {
    display: block;
    color: #777;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    padding-bottom: 44px;
}
.container-auth__subtitle a {
    color: var(--blue-color);
    border-bottom: 1px dotted;
    -webkit-transition: border-color 250ms;
    -o-transition: border-color 250ms;
    transition: border-color 250ms;
}
.container-auth__subtitle a:hover {
    border-bottom-color: transparent;
}

/* -------------------- Tabs -------------------- */

.tabs {
    height: 50px;
    overflow: hidden;
    margin-bottom: 20px;
}
.tabs__wrap {
    overflow: hidden;
    padding-bottom: 50px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}
.tabs__list {
    display: inline-block;
    min-width: 100%;
    list-style: none;
    font-size: 0;
    white-space: nowrap;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    border-bottom: 3px solid #eaeaea;
}
.tabs__list > li {
    display: inline-block;
}
.tabs__list > li + li {
    margin-left: 30px;
}
.tabs__list > li > a,
.tabs__list > li > span {
    display: inline-block;
    cursor: pointer;
    text-align: center;
    color: #777;
    font-size: 16px;
    font-weight: 600;
    background-color: transparent;
    -webkit-transition: background-color 250ms ease;
    -o-transition: background-color 250ms ease;
    transition: background-color 250ms ease;
    padding: 10px 0;
    border-bottom: 3px solid transparent;
    margin-bottom: -3px;
}
.tabs__list > li.active > a,
.tabs__list > li.active > span {
    border-color: var(--blue-color);
    color: #111;
}
.tab__close {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: -4px;
    margin-left: 4px;
    cursor: pointer;
    transition: opacity 250ms;
    opacity: 0.7;
}
.tab__close:before,
.tab__close:after {
    content: '';
    position: absolute;
    top: 4px;
    left: 9px;
    height: 13px;
    width: 3px;
    background-color: var(--blue-color);
}
.tab__close:before {
    transform: rotate(45deg);
}
.tab__close:after {
    transform: rotate(-45deg);
}
.tab__close:hover {
    opacity: 0.85;
}

.tabs__buttons-top {
    margin-top: -10px;
    margin-bottom: 20px;
}
.tabs__buttons-top > .button {
    margin-right: 10px;
}

/* ---------------------------- Form ---------------------------- */

.form__group {
    position: relative;
    padding: 15px 15px 10px;
    border: 1px solid #bbb;
    border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.form__group + .form__group {
    margin-top: 30px;
}
.form__group-label {
    position: absolute;
    top: -13px;
    left: 20px;
    padding: 0 10px;
    line-height: 25px;
    font-weight: bold;
    text-transform: uppercase;
    color: #111;
    background: #fdfdfd;
}
.form__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
}
.form__row > .col,
.form__row > [class*=col-] {
    padding-right: 5px;
    padding-left: 5px;
}
.mb-3 {
    margin-bottom: 10px !important;
}

.form__table-wrap {
    overflow-x: auto;
    position: relative;
    -webkit-overflow-scrolling: touch;
}
.form__table {
    display: table;
    margin: 10px 0;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
}
.form__table .t-row {
    display: table-row;
}
.form__table .t-row.t-header {
    font-weight: 700;
}
.form__table .t-cell {
    padding: 10px 12px;
    display: table-cell;
    vertical-align: middle;
    border-bottom: 2px solid #ddd;
}
.form__table .t-row .t-cell > a {
    color: var(--blue-color);
    border-bottom: 1px dashed;
    font-weight: 700;
    transition: border-bottom 250ms;
}
.form__table .t-row .t-cell > a:hover {
    border-bottom-color: transparent;
}
.form__table .t-cell.t-center {
    text-align: center;
}
.form__table .t-cell.t-100 {
    width: 100px;
}
.form__table .t-cell.t-icon > i {
    cursor: pointer;
    float: left;
}
.form__table .t-cell.t-icon > i.ic-red {
    color: var(--danger-color);
}
.form__table .t-row:last-child .t-cell {
    border-bottom: 0;
}

.form__control {
    display: block;
    width: 100%;
    padding: 4px 8px;
    font-size: 16px;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 4px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.form__control--medium {
    padding: 10px 16px;
}
.form__control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 3px rgb(0,123,255, 0.25);
}
select.form__control:not([multiple]) {
    height: 34px;
}
textarea.form__control {
    min-height: 80px;
    resize: vertical;
}
.form__control:disabled,
.form__control[readonly] {
    background-color: #e9ecef;
    opacity: 1;
}
.form__item {
    margin-bottom: 20px;
}
.form__check {
    position: relative;
    display: block;
    padding-left: 15px;
}
.form__check-input {
    position: absolute;
    margin-top: 4px;
    margin-left: -15px;
}
.form__check-label {
    margin-bottom: 0;
}
.form__select {
    display: inline-block;
    width: 100%;
    height: 34px;
    font-size: 16px;
    padding: 4px 20px 4px 8px;
    line-height: 1.5;
    color: #495057;
    vertical-align: middle;
    background-color: #fff;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 6px center;
    background-size: 8px 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    appearance: none;
}
.form__select:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 3px rgb(0,123,255, 0.25);
}
.form__select::-ms-value {
    color: #495057;
    background-color: #fff;
}
.form__select[multiple],
.form__select[size]:not([size="1"]) {
    height: auto;
    padding-right: 12px;
    background-image: none;
}
.form__select:disabled {
    background-color: #e9ecef;
    opacity: 1;
}
.form__select::-ms-expand {
    opacity: 0;
}

.form__error {
    display: none;
    margin-top: 3px;
    color: var(--red-color);
    font-size: 12px;
    line-height: 16px;
}
.form__item--error .form__error {
    display: block;
}
.form__item--error .form__control,
.form__item--error .form__select {
    border-color: var(--red-color);
}

.form__attr {
    display: block;
    margin-top: 3px;
    color: #777;
}

.form__switch {
    position: relative;
    display: block;
    width: 46px;
    height: 22px;
}
.form__switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.form__switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #eaeaea;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}
.form__switch .slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    top: 3px;
    background: #dadada;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}
.form__switch input:checked + .slider {
    background: #91baec;
}
.form__switch input:disabled + .slider {
    background-color: #e5e5e5;
    cursor: default;
}
.form__switch input:focus + .slider {
    -webkit-box-shadow: 0 0 1px #91baec;
            box-shadow: 0 0 1px #91baec;
}
.form__switch input:checked + .slider:before {
    -webkit-transform: translateX(23px);
    -ms-transform: translateX(23px);
    transform: translateX(23px);
    background: var(--blue-color);
}
.form__switch input:disabled + .slider:before {
    background-color: #a5a5a5;
}
.form__switch .slider.round {
    border-radius: 12px;
}
.form__switch .slider.round:before {
    border-radius: 50%;
}

.form__radio,
.form__checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.form__radio span,
.form__checkbox span {
    display: block;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    cursor: pointer;
}
.form__radio span::before,
.form__checkbox span::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    border: 2px solid #A2A2A2;
    border-radius: 2px;
    margin: 0 8px 0 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
    vertical-align: -3px;
}
.form__radio span::before {
    border-radius: 50%;
}
.form__radio input,
.form__checkbox input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}
.form__radio input:disabled + span {
    cursor: default;
    color: #999;
}
.form__radio input:checked + span::before,
.form__checkbox input:checked + span::before {
    border-color: var(--blue-color);
    background-color: var(--blue-color);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}
.form__radio input:not(:checked):disabled + span::before {
    border-color: #c6c6c6;
}

.form__label {
    display: inline-block;
    color: #111;
    font-size: 14px;
    margin-bottom: 4px;
}
.input-group {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}
.input-group-append,
.input-group-prepend {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.input-group-prepend {
    margin-right: -1px;
}
.input-group-append {
    margin-left: -1px;
}
.input-group-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 4px 8px;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: 4px;
}
.input-group > .input-group-prepend > .input-group-text {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.input-group > .input-group-append > .input-group-text {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.input-group > .form__select,
.input-group > .form__control {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
}
.input-group > .form__select:not(:last-child),
.input-group > .form__control:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.input-group > .form__select:not(:first-child),
.input-group > .form__control:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.is-loading {
    position: relative;
}
.is-loading > .form__control,
.is-loading > .form__select {
    padding-right: 24px;
}
.is-loading > .form__select.loading {
    background-image: none;
}
.is-loading > .spinner-border {
    display: inline-block;
    width: 14px;
    height: 14px;
    vertical-align: -2px;
    border-top-left-radius: 50% !important;
    border-bottom-left-radius: 50% !important;
    border: 2px solid currentcolor;
    border-right-color: transparent;
    border-radius: 50%;
    background-color: #fff;
    animation: 0.75s linear infinite spinner-border;
}
.is-loading > .form__control ~ .spinner-border,
.is-loading > .form__select ~ .spinner-border {
    display: none;
    position: absolute;
    top: 10px;
    right: 6px;
    z-index: 4;
}
.is-loading > .form__control.loading ~ .spinner-border,
.is-loading > .form__select.loading ~ .spinner-border {
    display: block;
}

@keyframes spinner-border {
  to {transform: rotate(360deg)}
}

.form__buttons {
    padding-top: 10px;
    margin: 0 -5px;
}
.form__buttons > .button {
    margin: 0 5px;
}

.edit-comment {
    cursor: pointer;
}

/* ------------------------ Dropdown Menu --------------------------- */

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
}
.dropdown-menu > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
    color: #fff;
    text-decoration: none;
    background-color: #428bca;
    outline: 0;
}

/* ------------------------ Table --------------------------- */

.my-table {
    display: grid;
    max-width: calc(100vw - 40px);
    grid-template-columns: repeat(7, minmax(min-content, 1fr));
    border-radius: 4px;
    overflow-y: hidden;
    overflow-x: auto;
}
.my-table.my-table__542 {
    grid-template-columns: 30px repeat(6, minmax(min-content, 1fr));
}
.my-table.my-table__legend {
    grid-template-columns: 120px repeat(3, minmax(min-content, 1fr));
}
.my-table.my-table__swifts {
    grid-template-columns: repeat(9, minmax(min-content, 1fr));
}
.my-table.my-table__employee {
    grid-template-columns: repeat(3, minmax(min-content, 1fr)) 60px;
}
.my-table.my-table__issuers {
    grid-template-columns: min-content repeat(6, minmax(min-content, 1fr));
}
.my-table.my-table__brokers {
    grid-template-columns: min-content 2fr 1fr;
}
.my-table.my-table__brokers-mnemonics {
    grid-template-columns: min-content repeat(6, minmax(min-content, 1fr));
}
.my-table.my-table__depositories {
    grid-template-columns: min-content repeat(3, minmax(min-content, 1fr));
}
.my-table.my-table__posinq {
    grid-template-columns: min-content repeat(8, minmax(min-content, 1fr));
}
.my-table .t-row {
    display: contents;
    font-size: 14px;
}
.my-table .t-cell {
    background-color: #f8f8f8;
}
.my-table .t-cell.t-center {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.my-table .t-cell.t-icon > i {
    cursor: pointer;
    font-size: 22px;
    vertical-align: -8px;
}
.my-table .t-cell.t-icon > i.ic-green {
    color: var(--green-color);
}
.my-table .t-row:hover .t-cell {
    background-color: #f1f1f1;
}
.my-table .t-row.unread .t-cell {
    background-color: #fff3ea;
}
.my-table .t-row.unread:hover .t-cell {
    background-color: #ffe9e0;
}
.my-table .t-row .t-indicator {
    display: none;
}
.my-table .t-row.unread .t-indicator {
    display: inline-block;
    vertical-align: -4px;
    margin-right: 10px;
    color: #ff4512;
}
.my-table .t-row.unread .t-indicator i:before {
    font-size: 18px;
}
.my-table .t-row .t-action {
    cursor: pointer;
    display: inline-block;
    vertical-align: -6px;
    margin-left: 10px;
    color: rgba(0,0,0,0.75);
    transition: opacity 250ms;
}
.my-table .t-row .t-action i:before {
    font-size: 22px;
}
.my-table .t-row .t-action:hover {
    opacity: 0.75;
}
.my-table .t-cell,
.my-table .t-head {
    padding: 14px 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.my-table .t-row .t-head {
    padding-top: 6px;
    padding-bottom: 6px;
    background: #c5d7f9;
    color: #000;
    font-size: 14px;
    font-weight: 700;
}
.my-table .t-row .t-head:last-child {
    border: 0;
}
.my-table .t-row.t-total .t-cell {
    padding-top: 6px;
    padding-bottom: 6px;
    grid-column: 1/-1;
    background: var(--blue-color);
    color: #fff;
}
.my-table .t-cell .t-link {
    color: #000;
    font-weight: 700;
    border-bottom: 1px dotted;
    cursor: pointer;
}
.my-table .t-cell .t-link:hover {
    border-bottom-color: transparent;
}
.my-table .t-cell .t-gray {
    display: inline-block;
    color: gray;
    margin-left: 5px;
}

.my-dropdown-block__item {
    position: relative;
    width: 100%;
    padding: 20px;
    background-color: #e7eeff;
    border-radius: 10px;
    margin-bottom: 20px;
    cursor: pointer;
}
.my-dropdown-block__item.opened {
    cursor: default;
}
.my-dropdown-block__wrap {
    display: flex;
    align-items: center;
}
.my-dropdown-block__item.opened .my-dropdown-block__wrap {
    cursor: pointer;
}
.my-dropdown-block__info {
    flex-grow: 1;
}
.my-dropdown-block__title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #363f5a;
}
.my-dropdown-block__arrow {
    width: 24px;
}
.my-dropdown-block__text {
    display: none;
    margin-top: 20px;
}
.my-dropdown-block__text .info {
    margin-bottom: 20px;
}

.next-page {
    width: 100%;
    margin-top: 25px;
}

.upload-button {
    margin-left: -5px;
}
.upload-button > * {
    margin-left: 5px;
}
.upload-button input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}
.upload-reset.hide {
    display: none;
}

.form_import_log {
    display: none;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid red;
}

/* --------------------------------------------- MEDIA ----------------------------------------- */

@media (min-width: 768px) {
    .col-md-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .col-md-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }
    .col-md-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
    .col-md-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-md-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    .col-md-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
    .col-md-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-md-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .col-md-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-md-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-md-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .col-md-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }
}

@media (max-width: 600px) {
    .container-auth__title {
        font-size: 30px;
        line-height: 1;
    }
    .container-auth__subtitle {
        font-size: 13px;
    }
}

@media (max-width: 440px) {
    .container-auth__wrap {
        width: 100%;
        max-width: none;
    }
    .container-auth__middle {
        padding: 0 20px;
    }
}