body {
    font-family: 'Montserrat', sans-serif;
}

tr {
    counter-increment: section;
}

tr:before {
    content: counter(section);
}

.header {
    background: #212121;
    color: #ffffff;
}

.header__wrap {
    display: flex;
    align-items: center;
}

.header a {
    color: #ffffff;
}

.header a[href="#"] {
    opacity: 0.5;
    pointer-events: none;
}

.header__menu {
    width: calc(100% - 200px);
}

.header__profile {
    width: 400px;
    text-align: right;
}

.container {
    width: 100%;
}

.container__row {
    width: 96%;
    margin: auto;
    padding: 20px 0;
}

.container__row_flex {
    display: flex;
}

.menu__item {
    display: inline-block;
    margin-right: 20px;
    font-weight: 300;
}

.menu__item a {
    text-decoration: none;
}

.hidden {
    display: none;
}

.panel {
    border: 1px solid #e1e1e1;
    padding: 10px;
    background: #f7f7f7;
    margin: 10px 0;
}

.direction-row:first-child:last-child .remove-direction {
    display: none;
}

.roles-table {
    width: 100%;
}

.roles-table td {
    padding: 10px 0;
}

.roles-table tr:hover {
    background: #f7f7f7;
}

.button {
    padding: 10px 20px;
    border: 1px solid #000;
    background: #000;
    color: #ffffff;
    cursor: pointer;
    text-decoration: none;
    box-sizing: border-box;
    display: inline-block;
    border-radius: 3px;
}

.button.gray {
    background: #efefef;
    color: #636363;
    border: 1px solid #b5b5b5;
    margin-left: 20px;
}

.button.no-border {
    background: transparent;
    color: #636363;
    border: 1px solid transparent;
}

.button:hover {
    opacity: .8;
}

label {
    cursor: pointer;
}

.rate-areas {
    display: flex;
    justify-content: flex-start;
}

.rate-areas > div {
    margin-right: 50px;
}

.rate-areas textarea {
    padding: 10px 20px;
    line-height: 1.5;
    resize: vertical;
}

.rate-block {
    margin-bottom: 40px;
}

.textarea {
    border: 1px solid #b5b5b5;
    border-radius: 3px;
    outline: none;
}

.textarea:focus {
    border-color: #08244d;
}

.checkbox {
    -webkit-appearance: none;
    position: relative;
    width: 27px;
    height: 27px;
    display: inline-block;
    vertical-align: middle;
    outline: none;
    cursor: pointer;
    margin-right: 10px;
    transition: background 200ms;
}

.checkbox:before {
    content: '';
    display: inline-block;
    width: 27px;
    height: 27px;
    position: absolute;
    box-sizing: border-box;
    border: 1px solid #000;
    transition: box-shadow 200ms;
}

.checkbox:checked {
    background: #000;
}

.checkbox:checked:before {
    box-shadow: inset 0 0 0 7px #ffffff;
}

.points {
    margin-left: 20px;
    font-size: 24px;
}

.online {
    display: inline-block;
    background: #25cc57;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-left: 10px;
}

th {
    text-align: left;
    padding: 10px 0;
    cursor: pointer;
}

.notify {
    padding: 5px 15px;
    border: 1px solid #dedede;
    background: #f4f4f4;
    color: #848484;
    position: relative;
}

.notify__close {
    position: absolute;
    top: 15px;
    right: 20px;
    transform: rotate(45deg);
    font-weight: bold;
    font-size: 24px;
    cursor: pointer;
}

.photo-helper {
    display: inline-block;
    position: relative;
}

.photo-helper .photo-icon:hover + .photo-img {
    opacity: 1;
}

.photo-helper .photo-icon img {
    width: 20px;
    height: 20px;
    background-size: contain;
    display: inline-block;
    opacity: 0.6;
    cursor: pointer;
}

.photo-helper .photo-img {
    width: 192px;
    height: 192px;
    display: inline-block;
    top: calc(100% + 10px);
    left: -86px;
    background: #ffffff;
    box-shadow: 0 0 1px #00000066;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    z-index: 10;
    transition: opacity 100ms;
}

.half {
    width: 49%;
    display: inline-block;
    vertical-align: top;
    padding: 10px;
    box-sizing: border-box;
}

.half.n {
    background: #fed9cf;
}

.half.p {
    background: #c6ffdd;
}

.tab__header {
    display: flex;
    width: 100%;
    border-bottom: 1px solid #e1e1e1;
}

.tab__title {
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: bold;
    border: 1px solid #e1e1e1;
    margin-right: 5px;
    border-bottom: 0;
    cursor: pointer;
    background: #f1f1f1;
    margin-bottom: -1px;
}

.tab__title_active {
    background: #fff;
    pointer-events: none;
}

input[type=range] {
    -webkit-appearance: none;
    width: 200px;
    margin: 14.2px 0;
}

input[type=range]:focus {
    outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4.6px;
    cursor: pointer;
    box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
    background: #ffffff;
    border-radius: 25px;
    border: 0.6px solid rgba(1, 1, 1, 0.58);
}

input[type=range]::-webkit-slider-thumb {
    box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
    border: 1px solid #000000;
    height: 33px;
    width: 11px;
    border-radius: 1px;
    background: #000000;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -14.8px;
}

input[type=range]:focus::-webkit-slider-runnable-track {
    background: #ffffff;
}

input[type=range]::-moz-range-track {
    width: 100%;
    height: 4.6px;
    cursor: pointer;
    box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
    background: #ffffff;
    border-radius: 25px;
    border: 0.6px solid rgba(1, 1, 1, 0.58);
}

input[type=range]::-moz-range-thumb {
    box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
    border: 1px solid #000000;
    height: 33px;
    width: 11px;
    border-radius: 1px;
    background: #000000;
    cursor: pointer;
}

input[type=range]::-ms-track {
    width: 100%;
    height: 4.6px;
    cursor: pointer;
    background: transparent;
    border-color: transparent;
    color: transparent;
}

input[type=range]::-ms-fill-lower {
    background: #f2f2f2;
    border: 0.6px solid rgba(1, 1, 1, 0.58);
    border-radius: 50px;
    box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
}

input[type=range]::-ms-fill-upper {
    background: #ffffff;
    border: 0.6px solid rgba(1, 1, 1, 0.58);
    border-radius: 50px;
    box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
}

input[type=range]::-ms-thumb {
    box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
    border: 1px solid #000000;
    height: 33px;
    width: 11px;
    border-radius: 1px;
    background: #000000;
    cursor: pointer;
    height: 4.6px;
}

input[type=range]:focus::-ms-fill-lower {
    background: #ffffff;
}

input[type=range]:focus::-ms-fill-upper {
    background: #ffffff;
}

.w50 {
    width: 50%;
}

.anon-next {
    display: none;
    margin-left: 30px;
    color: #999999;
}

.checkbox:checked + .anon-next {
    display: inline-block;
}

.tabs .tab__header {
    overflow-x: auto;
    overflow-y: hidden;
}

.tabs .tab__header::-webkit-scrollbar {
    width: 6px; /* ширина scrollbar */
    height: 6px;
}

.tabs .tab__header::-webkit-scrollbar-track {
    background: #eee; /* цвет дорожки */
}

.tabs .tab__header::-webkit-scrollbar-thumb {
    background-color: #212121; /* цвет плашки */
    border-radius: 20px; /* закругления плашки */
    border: 3px solid #212121; /* padding вокруг плашки */
}

/*# sourceMappingURL=main.css.map */
