@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

* {
    box-sizing: border-box;
}

html {
    line-height: 1.15;
    /* 1 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
    color: #e8eaed;
    font-family: 'Roboto', sans-serif;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #1b1b1b;
}

html,
body {
    height: 100%;
}

main {
    display: block;
    flex: 1 0 auto;
}

footer {
    margin-top: 50px;
    flex-shrink: 0;
    width: 100%;
    height: 79px;
    background-color: #323232;
    color: #e8eaed;
}

hr {
    box-sizing: content-box;
    /* 1 */
    height: 0;
    /* 1 */
    overflow: visible;
    /* 2 */
}

pre {
    font-family: monospace, monospace;
    /* 1 */
    font-size: 1em;
    /* 2 */
}

abbr[title] {
    border-bottom: none;
    /* 1 */
    text-decoration: underline;
    /* 2 */
    text-decoration: underline dotted;
    /* 2 */
}

b,
strong {
    font-weight: bolder;
}

img {
    border-style: none;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    /* 1 */
    font-size: 100%;
    /* 1 */
    line-height: 1.15;
    /* 1 */
    margin: 0;
    /* 2 */
}

button,
input {
    /* 1 */
    overflow: visible;
}

button,
select {
    /* 1 */
    text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

textarea {
    overflow: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    /* 1 */
    outline-offset: -2px;
    /* 2 */
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

[hidden] {
    display: none;
}

header {
    height: 80px;
    width: 100%;
    background-color: #323232;
}

ul {
    list-style: none;
}

ul li {
    display: inline;
    padding-right: 15px;
    font-size: 19px;
    text-transform: uppercase;
    position: relative;
}

li a {
    text-decoration: none;
    color: #e8eaed;
}

.container {
    max-width: 1350px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    flex: 1;
}

.head_block {
    justify-content: space-between;
    height: 80px !important;
}

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

.header_block {
    justify-content: space-between;
    width: 100%;
}

header {
    display: flex;
    justify-content: center;
}

.logo {
    height: 62px;
}

.logout:hover svg,
a:hover {
    color: #32b846;
    transition: color .3s cubic-bezier(.645, .045, .355, 1);
}

.logout:hover {
    background-color: rgba(50, 184, 70, 0.1);
}

.logout {
    margin-left: 10px;
    padding: 10px 15px;
    border-radius: 10px;
    color: #72849a;
    transition: background-color .3s cubic-bezier(.645, .045, .355, 1);
}

.logout svg {
    width: 25px;
    height: 25px;
}

.copyr a {
    text-decoration: none;
    color: #32b846;
}

footer li:not(:first-child):before {
    content: '|';
    left: -11px;
    top: 0;
    position: absolute;
    color: #8c8c8c;
}

.page {
    width: 100%;
    height: 100vh;
    justify-content: center;
}

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

.auth_block {
    width: 500px;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    padding: 15px;
    position: relative;
    padding-top: 30px;
    font-size: 1rem;
    color: #495057;
    background-color: #323232;
    background-clip: padding-box;
    border-radius: .25rem;
    text-align: center;
}

.adm_logo {
    width: 70px;
}

.login_panel {
    padding: 60px;
    flex-direction: column;
    width: 100%;
}

.group {
    position: relative;
    margin-bottom: 30px;
}

.form_i {
    font-size: 16px;
    padding: 10px;
    display: block;
    width: 348px;
    border: none;
    border-radius: 7px;
    background-color: #323232;
    color: #fff;
}

.auth-input::after {
    content: '';
    display: inline-block;
    border-bottom: 2px solid #ccc;
    width: 100%;
    position: absolute;
    left: 0px;
}

.auth-input:focus-within::after {
    display: none;
}

.form_i:focus {
    outline: none;
}

.form_label {
    color: #999;
    font-size: 18px;
    position: absolute;
    pointer-events: none;
    left: 10px;
    top: 15px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.form_i:focus~label,
.form_i:valid~label {
    top: -15px;
    font-size: 14px;
    color: #32b846;
}

.bar {
    position: relative;
    display: block;
    width: 348px;
}

.bar:before,
.bar:after {
    content: "";
    height: 2px;
    width: 0;
    bottom: 0;
    position: absolute;
    background: #28a745;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.bar:before {
    left: 50%;
}

.bar:after {
    right: 50%;
}

.form_i:focus~.bar:before,
.form_i:focus~.bar:after {
    width: 50%;
}

.save {
    color: #fff;
    background-color: #32b846;
    border-color: #32b846;
    cursor: pointer;
    width: 97%;
    margin-top: 10px;
}

.save:hover,
.swal2-confirm:hover,
.correct:hover,
.add:hover {
    background-color: #28a745 !important;
    border-color: #28a745;
}

.sign {
    width: 100%;
    border: none;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 15px;
    letter-spacing: 2px;
    padding: 17px 0;
    font-weight: 600;
}


.auth_logo {
    position: absolute;
    top: -35px;
}

h1 {
    font-weight: 500;
    font-size: 25px;
    padding-top: 25px;
    text-align: center;
    text-transform: uppercase;
    margin: 0;
    color: #32b846;
}

.white {
    color: #fff;
}

.rem_label {
    padding-left: 10px;
    color: #fff;
}

.under_form {
    justify-content: space-between;
    width: 100%;
    margin-bottom: 30px;
}

.check {
    cursor: pointer;
    position: relative;
    margin: auto;
    width: 18px;
    height: 18px;
    -webkit-tap-highlight-color: transparent;
    transform: translate3d(0, 0, 0);
}

.check:before {
    content: "";
    position: absolute;
    top: -9px;
    left: -9px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(34, 50, 84, 0.03);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.check svg {
    position: relative;
    z-index: 1;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #c8ccd4;
    stroke-width: 1.5;
    transform: translate3d(0, 0, 0);
    transition: all 0.2s ease;
}

.check svg path {
    stroke-dasharray: 60;
    stroke-dashoffset: 0;
}

.check svg polyline {
    stroke-dasharray: 22;
    stroke-dashoffset: 66;
}

.check:hover:before {
    opacity: 1;
}

.check:hover svg {
    stroke: #28a745;
}

#cbx:checked+.check svg {
    stroke: #28a745;
}

#cbx:checked+.check svg path {
    stroke-dashoffset: 60;
    transition: all 0.3s linear;
}

#cbx:checked+.check svg polyline {
    stroke-dashoffset: 42;
    transition: all 0.2s linear;
    transition-delay: 0.15s;
}

.forgot {
    text-decoration: none;
    color: #28a745;
}

.card {
    background-color: #323232;
    padding: 15px;
    width: 33%;
    border-radius: 8px;
    margin-right: 20px;
}

.card:last-child {
    margin: 0;
}

.date {
    margin-top: 15px;
}

h3 {
    margin: 0;
    padding-bottom: 10px;
    font-size: 20px;
    color: #28a745;
}

.value {
    font-size: 40px;
}

.user_link{
    font-size: 13px;
}

.table {
    margin-top: 15px;
    background-color: #323232;
    border-radius: 8px;
    overflow: hidden;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-style: hidden;
}

tbody,
tfoot {
    text-align: center;
}

tbody td {
    padding: 14px 12px;
    border: 1px solid #706d6d;
}

thead th,
tfoot td {
    background: #456e4f;
    color: #fff;
    text-transform: uppercase;
    padding: 14px 12px;
}

tfoot td {
    background-color: #28a745;
}

.datepicker-here {
    background-color: #28a745;
    width: 110px;
    height: 31px;
    color: #fff;
    border-radius: 6px;
    font-size: 16px;
    text-align: center;
    border: none;
    outline: none;
    cursor: pointer;
}

.datepicker-here::placeholder {
    color: white;
}

.stat-settings {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.picker {
    display: flex;
    margin-top: 15px;
    justify-content: end;
}

.stat-filter {
    display: flex;
    margin-top: 15px;
    justify-content: start;
}

.cal_ico img {
    width: 17px;
}

.cal_text {
    margin-right: 10px;
    font-size: 18px;
    font-weight: 500;
}

.datepicker--button {
    color: #28a745 !important;
}

.datepicker {
    color: #f0f0f0 !important;
    background-color: #2b2b2b !important;
}

.datepicker--cell-day.-other-month-,
.datepicker--cell-year.-other-decade- {
    color: #858c92 !important;
}

.datepicker--cell.-focus- {
    background-color: #717171 !important;
}

.datepicker--nav,
.datepicker--buttons,
.datepicker {
    border-color: #555252 !important;
}

.datepicker--button:hover {
    background-color: #555252 !important;
}

.cal_ico {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    padding: 5px 8px;
    margin-bottom: 0;
    text-align: center;
    white-space: nowrap;
    background-color: #28a745;
    border-right: 1px solid #ffffff6b;
    border-radius: 6px 0 0 6px;
    margin-right: -7px;
    z-index: 9;
    color: #fff;
}

.reg_data {
    font-size: 20px;
    color: #a1a1a1;
}

.login_data,
.pass_data {
    color: #fff;
}

.copy_btn {
    margin-top: 55px;
}

.not_found {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 67vh;
}

.error_text {
    font-size: 1.5em;
    font-weight: 300;
}

.error {
    font-size: 18em;
    margin: 10px;
}

.error img {
    height: 210px;
}

.code-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px 0 10px;
    border-radius: 5px;
    background-color: #323232;
    color: white;
    margin-bottom: 10px;
}

.code-wrapper {
    display: flex;
    width: fit-content;
    margin-top: 10px;
}

.code-delete {
    margin-left: 10px;
    display: flex;
    justify-content: center;
    padding: 0 10px 0 10px;
    border-radius: 5px;
    background-color: #e53e3e;
    color: white;
    margin-bottom: 10px;
    cursor: pointer;
}

.input-counters {
    width: 50%;
    display: flex;
    margin-top: 20px
}

.create-btn {
    color: #fff;
    background-color: #32b846;
    border-radius: 7px;
    padding: 10px 20px;
    cursor: pointer;
    border: none;
}

.live_block2 {
    width: 100%;
    height: 65px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    box-sizing: border-box;
    padding: 6px 0;
    font-weight: 300;
    margin-bottom: 10px;
}

.match_a {
    text-decoration: none;
    justify-content: flex-start;
    align-items: center;
    display: flex;
    padding: 0 10px;
    color: #000323;
    height: 100%;
}

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

.live {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 23px;
}

.main_div,
.blank,
.table_block,
.blank_container {
    background: #1b1b1b;
}

.score,
.status_match,
.minute,
.ht {
    color: #ff2f54;
}

.score {
    font-size: 20px;
    width: 12%;
    justify-content: center;
    white-space: nowrap;
    border-radius: 4px;
}

.main_color,
.vs {
    color: #f0f0f0 !important;
}

.vs,
.rec {
    width: 12%;
    justify-content: center;
    font-size: 21px;
}

.left_team,
.right_team {
    width: 44%;
    box-sizing: border-box;
}

.left_team {
    justify-content: flex-end;
    padding-right: 17px;
}

.right_team {
    padding-left: 17px;
}

.right {
    font-size: 21px;
    width: 100%;
    text-align: center;
    display: flex;
}

.team_title {
    white-space: nowrap;
}

.team_title_right {
    padding-left: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.team_title_left {
    padding-right: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
}

h1,
h2,
h3,
h4,
.rpl_title,
.team_title,
.counter_title,
.time_score,
.l_team span,
.r_team span {
    color: #f3f4f5;
}

.team_logo {
    height: 40px;
}

.code-select {
    display: flex;
    width: 150px;
    height: 30px !important;
}


.code-select select {
    width: 100%;
}

.copy {
    white-space: nowrap;
    padding: 7px 13px;
    border-radius: 7px;
}

.match-tools {
    display: flex;
    align-items: center;
}


.counter-controls {
    justify-content: flex-end;
    margin-right: 50px;
}

.counter-controls:last-child {
    margin-right: 0;
}

.sport-types {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 20px;
}

.sport-type-card {
    margin-left: 12px;
    margin-right: 32px;
    height: 35px;
    background-color: #323232;
    border-radius: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 20px;
}

.sport-type-card.active {
    background-color: #32b846;
}


.type-link {
    text-decoration: none;
    color: white;
}

.code-copy {
    margin-left: 10px;
    display: flex;
    justify-content: center;
    padding: 0 10px 0 10px;
    border-radius: 5px;
    background-color: #32b846;
    color: white;
    margin-bottom: 10px;
    cursor: pointer;
}

.no-margin {
    margin: 0 !important;
}

.select-block {
    display: flex;
    flex-direction: column;
}

.settings {
    margin: 30px 0;
    justify-content: space-between;
}

.settings_line {
    display: flex;
    margin-right: 30px;
}

.cal_block {
    display: flex;
}

.copy_all {
    background-color: #0088cc;
}

.swal2-confirm:focus,
.swal2-input:focus {
    box-shadow: none !important;
    outline: none !important;
}

.dynamic_counter_descr {
    font-weight: bold;
    color: #32b846;
}

.ml-3 {
    margin-left: 12px;
}

.visits-counter {
    color: #32b846;
}

.justify-center {
    display: flex;
    justify-content: center;
    align-items: center;
}


.visit-link {
    color: #32b846;
    text-decoration: none;
}

.dir-column {
    flex-direction: column;
}

.edit-svg {
    width: 24px;
    cursor: pointer;
    margin-left: 5px;
}


.mb-1 {
    margin-bottom: 4px;
}

.edit-cpm {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.w-50 {
    width: 50%;
}

.input-number {
    font-size: 16px;
    padding: 10px;
    display: block;
    width: 348px;
    border: none;
    border-radius: 7px;
    background-color: #1b1b1b;
    color: #fff;
    width: 100px;
}

.mt-3 {
    margin-top: 12px !important;
}

.edit-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    color: white;
}

.w-full {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.ban-btn {
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    background-color: red;
    color: white;
    cursor: pointer;
}

.unban-btn {
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    background-color: #32b846;
    color: white;
    cursor: pointer;
}

.select2-selection {
    background-color: #323232 !important;
    border: none !important;
}

.select2-selection__rendered {
    color: white !important;
}

.select2-results {
    background-color: #323232 !important;
    border: none !important;
}


.select2-results__options {
    background-color: #323232 !important;
    border: none !important;
    display: flex;
    flex-direction: column;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable:hover {
    background-color: #32b846;
}

.select2-results__option .select2-results__option--selectable .select2-results__option--selected .select2-results__option--highlighted {
    background-color: #32b846;
}

.select2-results__option--selectable {
    background-color: #323232 !important;
    text-transform: none !important;

}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #32b846 !important;
}

.select2-results__option .select2-results__option--selectable .select2-results__option--selected {
    background-color: #323232 !important;
}

.select2-dropdown--below {
    border: none !important;
}

.edit-wrap .select2-selection--single {
    padding-top: 5px !important;
    height: 38px !important;
}

.edit-wrap .select2-selection__arrow {
    margin-top: 5px !important;
}

.reg-form {
    display: flex;
}

.reg-form .select2-selection--single {
    padding-right: 250px !important;

}

.reg-form .select2-selection__rendered {
    width: 200px !important;
    padding-right: 250px !important;
}

.copy-match-mobile {
    display: none;
}

.hamb {
    display: none;
}

.m-menu {
    display: none;
}

.period-descr {
    display: flex;
}

.period-descr-mob {
    display: none;
}

.unique-users-mob {
    display: none;
}

.unique-users-desk {
    display: flex;
}

.active a:hover {
    color: white !important;
}

.visits_stat {
    color: #fff;
    font-size: 14px;
    position: absolute;
}
.visits_stat_value {
    color: #32b846;
}

@media screen and (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    .date {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 20px 10px 0 10px;
    }

    .card {
        display: flex;
        width: 100%;
        margin-right: 0;
        margin-top: 10px !important;
        align-items: center;
        justify-content: space-between;

    }

    .card>span {
        font-size: 20px !important;
    }

    .card>h3 {
        padding: 0;
    }

    .stat-settings {
        display: flex;
        flex-direction: column;
        margin-left: 10px;
        margin-top: 10px;
    }

    .picker {
        justify-content: flex-start;
    }

    .code-wrapper {
        margin-left: 10px;
        margin-top: 50px;
    }

    .input-counters {
        margin-left: 10px;
        width: 95% !important;
    }

    .code-wrapper {
        margin-top: 0px;
    }

    #dynamic_counter_descr {
        margin-left: 10px;
    }

    .settings {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-left: 20px;
    }



    .link-only-check-wrap {

        display: flex;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }

    .match-tools {
        align-items: flex-start;
        justify-content: flex-start;

    }

    .copy_func {
        justify-content: flex-start;
        display: flex;
    }

    .selectors {
        display: flex;
        flex-direction: column;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }

    .link-only-check-wrap {
        margin-top: 20px;
    }

    .copy-div {
        margin-left: -5px;
    }

    .match-tools {
        margin-top: 20px;
    }

    .link-only-check-wrap {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .copy_func {
        display: flex;
        flex-direction: column;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }

    .copy-match {
        display: none;
    }

    .copy-match-mobile {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .copy {
        white-space: nowrap;
        padding: 6px 8px;
        border-radius: 7px;
        margin-left: 5px;
    }

    .sport-type-card {
        padding: 15px;
        margin-right: 15px;
    }

    .live_block2 {
        height: 50px;
        font-weight: normal;
    }

    .match_a {
        padding: 0 10px;
    }

    .right {
        justify-content: center;
    }

    .right_league,
    .right {
        font-size: 14px;
        width: 100%;
    }

    .pr_left_team img,
    .pr_right_team img {
        height: 100px;
        padding-bottom: 25px;
    }

    .vs {
        width: 15%;
        font-size: 14px;
    }

    .vs_text {
        font-size: 55px;
        padding-top: 20px;
    }

    .pr_vs {
        width: 200px;
    }

    .pr_vs {
        padding: 0;
        display: flex;
        order: 3;
        width: 100%;
    }

    .logo_left {
        padding-left: 5px;
    }

    .team_logo {
        height: 30px;
    }

    .team_m {
        width: 42.5%;
    }

    .team_m_basket {
        width: 39.5% !important;
    }

    .team_title {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .pr_left_team,
    .pr_right_team {
        font-size: 23px;
        width: 120px;
        text-align: center;
        justify-content: end;
    }

    .left_team {
        width: 100%;
        max-width: 160px !important;
    }

    .right_team {
        width: 100%;
        max-width: 200px !important;
    }

    .right {
        justify-content: center;
    }

    .left_team {
        width: 40%;
        padding: 0 6px;
    }

    .right_team {
        width: 46%;
        padding: 0 6px;
    }


    body {
        overflow-x: hidden;
    }



    .left_team {
        justify-content: space-between;
        max-width: 200px;
    }

    .right_team {
        justify-content: space-between;
        max-width: 200px;
    }

    .vs {
        width: 55px;
    }

    .copyr {
        margin-left: 10px;
    }

    .copy-img {
        width: 15px;
    }

    .logo_block {
        margin-left: 10px;
    }

    .menu,
    .exit {
        display: none;
    }

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

    .hamb__field {
        padding: 10px 20px;
        cursor: pointer;
    }

    .bar {
        display: block !important;
        width: 30px;
        height: 3px;
        margin: 5px auto;
        background-color: #fff;
        transition: 0.2s;
    }

    .popup {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: 100%;
        z-index: 100;
        display: flex;
        transition: 0.3s;
        background: rgba(25, 25, 25, 0.95);
        backdrop-filter: saturate(220%) blur(50px);
    }

    .popup.open {
        left: 0;
    }

    .popup .m-menu {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: start;
        padding: 50px 0;
        overflow: auto;
    }

    .popup .m-menu>li {
        width: 100%;
    }

    .popup .m-menu>li>a {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 20px 0;
        font-size: 20px;
        font-weight: bold;
        color: #fff;
    }

    .logout-btn {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 20px 0;
        font-size: 20px;
        font-weight: bold;
        color: #fff;
        background-color: transparent;
        border: none;
        text-transform: uppercase;
        cursor: pointer;
    }

    .popup .m-menu>li>button:hover {
        background-color: #32b846;
    }

    .popup .m-menu>li>a:hover {
        background-color: #32b846;
    }

    .hamb__field.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamb__field.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamb__field.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    body.noscroll {
        overflow: hidden;
    }

    .auth_block {
        width: 100%;
    }

    .mobile-balance {
        color: #32b846
    }

    .m-menu li:hover .mobile-balance {
        color: #fff;
    }

    .bar:before,
    .bar:after {
        display: none !important;
    }

    .auth_logo {
        top: 35px
    }

    .page {
        overflow: hidden !important;
    }

    .under_form,
    .login_panel {
        align-items: flex-start !important;
    }


    .auth-form {
        width: 100%;
    }

    .login-bar {
        display: none !important;
    }

    .period-descr {
        display: none;
    }

    .period-descr-mob {
        display: flex;
    }

    .datepickers-container {
        margin-left: 30px !important;
    }

    .datepicker--pointer {
        display: none;
    }

    .reg-url {
        display: none;
    }

    #codes {
        width: 100%;
    }

    .input-counters {
        width: 100%;
    }

    .invite-row {
        margin: 0px;
    }

    .user-nickname {
        margin-left: 0px !important;
    }

    #search {
        margin-left: 10px !important;
    }

    .ml-10 {
        margin-left: 10px !important;
    }

    .table {
        overflow-x: scroll !important;
    }

    .current-balance {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .payment-order {
        align-items: flex-start !important;
    }

    .unique-users-mob {
        display: flex;
    }

    .unique-users-desk {
        display: none;
    }

    .counter-name {
        width: 50%;
    }


    .log-page {
        height: 100%;
        width: 100%;
        margin: 0;
        padding: 0;
        overflow: hidden !important;
    }

    .auth_block {
        width: 100vh !important;
        height: 100% !important;
    }

    .reg-title {
        margin-top: 30px;
    }

    .reg_panel {
        padding: 0;
    }

    .login-title {
        margin-top: 70px;
        padding-right: 40px !important;
        padding-left: 40px !important;
    }

    .no-data-plug-wrap {
        margin-right: 10px !important;
        margin-top: 10px;
    }

    .no-data-plug {
        white-space: normal;
    }
}
