/* #region ~ ПЕРЕМЕННЫЕ ~ */

:root {
    /* ====================================== */
    /* бэкграунд хидеров ---------- */
    /*--bg-main: rgba(55,104,175,1);*/ /* старый */
    /*--bg-main: rgba(17,53,94,0.8);*/
    /*--bg-main: rgba(17,53,94,0.75);*/
    --bg-main: rgb(77,104,134); /* новый */
    /* бэкграунд логона ---------- */
    /*--bg-logon-main: rgba(55,104,175,1);*/ /* старый */
    /*--bg-main-logon: rgba(17,53,94,0.8);*/
    /*--bg-main-logon: rgba(17,53,94,0.75);*/
    --bg-main-logon: rgb(77,104,134); /* новый */
    /* бэкграунд хидера АгентКлиент ---------- */
    /*--bg--main-header-add: rgba(55,104,175,0.8);*/ /* старый */
    /*--bg-main-header-add: rgba(17,53,94,0.6);*/
    /*--bg-main-header-add: rgba(17,53,94,0.55);*/
    --bg-main-header-add: rgb(124,144,166); /* новый */
    /* бэкграунд баланса ---------- */
    /*--bg-main-header-balance: rgba(93,132,189,1);*/ /* старый */
    /*--bg-main-header-balance: rgba(110,132,156,1);*/
    --bg-main-header-balance: rgba(122,142,165,1); /* новый */
    /* цвет наведения в хидере ---------- */
    /*--color-main-header-hovermenu: rgba(0,0,0,1);*/ /* старый */
    --color-main-header-hovermenu: rgba(89,222,242,1); /* новый */
    /* цвет наведения в add хидере на клиента агента ---------- */
    /*--color-main-header-add-hover-ac: rgba(0,0,0,1); */ /* старый */
    --color-main-header-add-hover-ac: rgba(17,53,94,1); /* новый */
    /* ====================================== */
    /* цвета бордера для оборудования (не забыть и в config.cs поменять) */
    --color-border-inmarsat: rgba(17,53,94,0.8);
    --color-border-iridium: rgba(243,187,36,1);
    --color-border-vsat: rgba(0,0,0,0.3);
    --color-border-other: rgba(0,0,0,0.3);
    /* ====================================== */
    /* бэкграунд */
    --bg-default: rgb(240,240,240); /* типа светло-серый */
    --bg-dark: rgb(66,66,66); /* типа тёмный */
    --bg-info: rgb(33,150,243); /* типа голубой */
    --bg-primary: rgb(89,74,226); /* типа фиолетовый */
    --bg-secondary: rgb(255,64,129); /* типа малиновый */
    --bg-warning: rgb(255,152,0); /* типа голд */
    --bg-error: rgb(244,67,54); /* типа красный */
    --bg-tertiary: rgb(30,200,165); /* типа зелёный */
    --bg-success: rgb(0,200,83); /* типа зелёный */
    --bg-sab-blue: rgb(11,124,216); /* типа мой голубой */
    --bg-sab-wheat: rgb(245,222,179); /* типа светло-серый */
    /* бэкграунд при ховере */
    --bg-hover-default: rgb(225,225,225);
    --bg-hover-dark: rgb(46,46,46);
    --bg-hover-info: rgb(12,128,223);
    --bg-hover-primary: rgb(62,44,221);
    --bg-hover-secondary: rgb(255,31,105);
    --bg-hover-warning: rgb(214,129,0);
    --bg-hover-error: rgb(242,28,13);
    --bg-hover-tertiary: rgb(25,169,140);
    --bg-hover-success: rgb(0,163,68);
    --bg-hover-sab-blue: rgb(8,94,163);
    --bg-hover-sab-wheat: rgb(222,184,135);
    /* forecolor при бэкграундe */
    --color-default: rgba(0,0,0,0.8);
    --color-dark: rgba(255,255,255,0.9);
    --color-blue: rgba(255,255,255,0.9);
    --color-primary: rgba(255,255,255,0.9);
    --color-secondary: rgba(255,255,255,0.9);
    --color-warning: rgba(255,255,255,0.9);
    --color-error: rgba(255,255,255,0.9);
    --color-tertiary: rgba(255,255,255,0.9);
    --color-success: rgba(255,255,255,0.9);
    --color-sab-blue: rgba(255,255,255,0.9);
    --color-sab-wheat: rgba(0,0,0,0.9);
    /* прочее */
    --box-shadow-1: 1px 5px 9px rgba(0,0,0,0.25);
    --red: rgba(220,20,60,1);
    --green: rgba(60,179,113,1);
    --green2: rgba(46,139,87,1);
    --green3: rgba(46,139,87,0.9);
    --grey: rgba(0,0,0,0.5);
    --gray: rgba(0,0,0,0.5);
    /* ваще разное */
    --logo-mosaik1: url('../../images/logo-mosaik1.png?ver=@Global.Version'); /* чтобы использовать Global.Version */ /* для скинов */
    --logo-mosaik2: url('../../images/logo-mosaik2.png?ver=@Global.Version'); /* чтобы использовать Global.Version */ /* для скинов */
    /* кнопка хелпа вверху */
    --header-btn-help: rgba(0,255,255,1); /* было: rgb(0,207,255) */
    --header-helper: rgb(76,102,130); /* было: rgb(0,128,128) */
}

/* #endregion */

/* #region ~ ЧТО БЫЛО ИЗНАЧАЛЬНО ~ */

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

h1:focus {
    outline: none;
}

a, .btn-link {
    color: #0071c1;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.content {
    padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

/* #endregion */

/* #region ~ ОБЩЕЕ ~ */

html, body {
    font-family: "Open Sans",Roboto,'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: white;
    /**/
    background-color: rgba(240,240,240,1);
    background-color: rgba(242,246,245,1);
    background-color: rgba(246,246,246,1);
    /**/
    /*width: 100%;*/
    /*overflow-x: hidden;*/ /* задолбала горизонтальная прокрутка */
}

.hide {
    display: none !important;
}

.show {
    display: block !important;
}

.visible-off {
    display: none;
}

.visible-on {
    display: block;
}

.div-center {
    width: 100%;
    text-align: center;
}

.ui-pointer {
    cursor: pointer;
}

.ui-input-transparent input:-webkit-autofill,
.ui-input-transparent input:-webkit-autofill:hover,
.ui-input-transparent input:-webkit-autofill:focus,
.ui-input-transparent input:-webkit-autofill:active {
    transition: background-color 5500s ease-in-out 0s;
    -webkit-text-fill-color: rgba(0,0,0,0.8);
}

.ui-container {
    overflow: hidden;
}

.ui-error-lamp {
    position: absolute;
    background-color: red;
    width: 6px;
    height: 6px;
    border-radius: 99px;
    margin-left: 3px;
    margin-top: 5px;
    z-index: 9;
    cursor: pointer;
}

.ui-signal {
    font-family: Roboto,"Yandex Sans Display",Arial !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    color: olive !important;
}

.ui-separator-1 {
    height: 1px;
    background-color: rgba(0,0,0,0.1);
    width: calc(100% - 40px);
    margin-left: 20px;
}

.ui-separator-2 {
    height: 1px;
    background-color: rgba(255,255,255,0.6);
    margin: 15px 0 15px 0;
    width: calc(100% - 40px);
    margin-left: 20px !important;
}

.ui-separator-3 {
    height: 1px;
    margin: 15px 0 15px 0;
    width: calc(100% - 40px);
    margin-left: 20px !important;
    background-color: rgba(0,0,0,0.15);
}

.ui-separator-4 {
    height: 1px;
    background-color: rgba(0,0,0,0.1);
    width: calc(100% - 40px);
    margin-left: 20px;
}

.ui-visible-max {
    display: block !important;
}

.ui-visible-min {
    display: none !important;
}

.ui-header {
    width: calc(100% - 20px);
    display: flex;
    position: relative;
    width: 100%;
    overflow: hidden;
    border-bottom: none;
    height: 70px;
    left: 0;
    right: 0;
    margin-top: 0;
    z-index: 0;
    background-color: var(--bg-main);
}

    .ui-header.shadow {
        box-shadow: 1px 5px 9px rgba(0,0,0,0.25) !important;
    }

.ui-ca-header-shadow {
    box-shadow: var( --box-shadow-1) !important;
}

.ui-grp-tc-sim-list-backcolor {
    background-color: ivory !important;
}

    .ui-grp-tc-sim-list-backcolor .mud-table-cell {
        background-color: ivory !important;
    }

    .ui-grp-tc-sim-list-backcolor .mud-table-toolbar {
        background-color: ivory !important;
    }

.ui-red-color {
    color: red !important;
}

.ui-withoutpers {
    display: flex;
    right: -50px;
}

@media screen and (max-width: 1380px) {

    .ui-visible-max {
        display: none !important;
    }

    .ui-visible-min {
        display: block !important;
    }
}

/* #endregion */

/* #region ~ MUDBLAZOR ~ */

.ui-mud-dp-underline {
    /*border-bottom: 1px solid rgba(0,0,0,0.3); */
}

    .ui-mud-dp-underline.el {
    }

    .ui-mud-dp-underline.x01 {
    }

.ui-mud-datepicker-01 {
    border-bottom: 1px solid rgba(0,0,0,0.3);
    /**/
    background-color: rgba(0,0,0,0.05);
    padding: 0 10px 0 10px;
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 1px 2px 9px rgba(0,0,0,0.07);
    background-color: rgba(246,246,246,1);
}

/* #endregion */

/* #region ~ ENABLED - DISABLED ~ */

.pointer-enabled {
    pointer-events: auto;
}

.enabled {
    pointer-events: auto;
    opacity: 1;
}

.disabled {
    pointer-events: none;
    opacity: 0.8;
}

.enabled-header {
    pointer-events: auto;
    opacity: 1;
}

.disabled-header {
    pointer-events: none;
}

.disabled-0 {
    pointer-events: none;
    opacity: 0;
}

.disabled-1 {
    pointer-events: none;
    opacity: 0.1;
}

.disabled-2 {
    pointer-events: none;
    opacity: 0.2;
}

.disabled-3 {
    pointer-events: none;
    opacity: 0.3;
}

.disabled-4 {
    pointer-events: none;
    opacity: 0.4;
}

.disabled-5 {
    pointer-events: none;
    opacity: 0.5;
}

.disabled-6 {
    pointer-events: none;
    opacity: 0.6;
}

.disabled-7 {
    pointer-events: none;
    opacity: 0.7;
}

.disabled-8 {
    pointer-events: none;
    opacity: 0.8;
}

.disabled-9 {
    pointer-events: none;
    opacity: 0.9;
}

.disabled-10 {
    pointer-events: none;
    opacity: 1;
}

/* #endregion */

/* #region ~ БАТОНЫ ~ */

.ui-btn-01 {
    background-color: var(--bg-sab-blue); /* SKIN!!! */
    color: var(--color-sab-blue); /* SKIN!!! */
    padding-top: 5px;
}

    .ui-btn-01:hover {
        background-color: var(--bg-hover-sab-blue); /* SKIN!!! */
    }

.ui-btn-01-icon {
}

    .ui-btn-01-icon.tracker {
        margin-top: -1px;
    }

    .ui-btn-01-icon.topsim {
        /*margin-top: 7px;*/
    }

.ui-btn-02 {
    background-color: var(--bg-sab-blue); /* SKIN!!! */
    color: var(--color-sab-blue); /* SKIN!!! */
    text-decoration: none;
    padding: 7px 12px 7px 12px;
    box-shadow: 1px 2px 4px rgba(0,0,0,0.3);
    border-radius: 4px;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    font: 600 14px "Open Sans", Arial;
    letter-spacing: 0;
    /**/
    font: 600 12px "Open Sans", Arial;
    /**/
    background-color: var(--bg-info);
}

    .ui-btn-02:hover {
        background-color: var(--bg-hover-sab-blue); /* SKIN!!! */
        /**/
        background-color: var(--bg-hover-info);
    }

.ui-btn-03 {
    /*    background-color: var(--bg-success);
    color: var(--color-success);
    padding-top: 5px;*/
    /*background-color: var(--bg-sab-blue);*/
    color: var(--color-sab-blue);
    padding-top: 5px;
    /**/
    background: linear-gradient(70deg, var(--bg-success), var(--bg-sab-blue));
}

    .ui-btn-03:hover {
        /*background-color: var(--bg-hover-success);*/
        background-color: var(--bg-hover-sab-blue);
    }

.ui-btn-04 {
    background-color: var(--bg-sab-blue); /* SKIN!!! */
    color: var(--color-sab-blue); /* SKIN!!! */
    text-decoration: none;
    padding: 6px 12px 7px 12px;
    box-shadow: 1px 2px 4px rgba(0,0,0,0.3);
    border-radius: 4px;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    /*    font-size: 14px;
    font-weight: 600;*/
    font: 600 12px "Open Sans", Arial;
    letter-spacing: 0;
    /**/
    background-color: var(--bg-info);
}

    .ui-btn-04.x2 {
        font: 600 13px "Open Sans", Arial !important;
    }

    .ui-btn-04:hover {
        background-color: var(--bg-hover-sab-blue); /* SKIN!!! */
        background-color: var(--bg-hover-info);
    }

.ui-btn-05 {
    background-color: transparent;
    color: rgb(11,124,216); /* SKIN!!! */
    text-decoration: none;
    padding: 6px 12px 7px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    font: 600 12px "Open Sans", Arial;
    letter-spacing: 0;
    border: 1px solid rgba(11,124,216,0.5); /* SKIN!!! */
    box-shadow: none;
}

    .ui-btn-05.x1 {
        height: 25px;
    }

    .ui-btn-05.x2 {
        height: 30px;
    }

    .ui-btn-05:hover {
        background-color: rgb(11,124,216); /* SKIN!!! */
        color: white;
    }

.ui-btn-06 {
    padding: 6px 12px 7px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    font: 600 12px "Open Sans", Arial;
    letter-spacing: 0;
}

    .ui-btn-06.x2 {
        font: 600 13px "Open Sans", Arial;
    }

.ui-btn-05:hover {
}

.ui-btn-07 {
    /*    background-color: var(--bg-success);
    color: var(--color-success);
    padding-top: 5px;*/
    /*background-color: var(--bg-sab-blue);*/
    color: var(--color-sab-blue);
    padding-top: 5px;
    margin-top: 5px;
    /**/
    background: linear-gradient(70deg, var(--bg-success), var(--bg-sab-blue));
}

.ui-btn-03:hover {
    /*background-color: var(--bg-hover-success);*/
    background-color: var(--bg-hover-sab-blue);
}

.ui-btn-excel {
    /*background-color: var(--bg-sab-blue);*/
    color: var(--color-sab-blue);
    padding-top: 5px;
    background: linear-gradient(70deg, var(--bg-success), var(--bg-sab-blue));
}

    .ui-btn-excel:hover {
        background-color: var(--bg-hover-sab-blue);
    }


.ui-btn-pdf {
    background-color: var(--bg-sab-blue);
    color: var(--color-sab-blue);
    padding-top: 5px;
    /**/
    background: linear-gradient(70deg, var(--bg-success), var(--bg-sab-blue));
}

    .ui-btn-pdf:hover {
        /*background-color: var(--bg-hover-success);*/
        background-color: var(--bg-hover-sab-blue);
    }


/* #endregion */

/* #region ~ ХИДЕР и КЛИЕНТ-АГЕНТ ~ */

.ui-top-max {
    display: block;
    /**/
}

.ui-top-min {
    display: none;
}

/* общий хидер для биллинга */
.ui-header {
    /*display: flex;*/
    /*position: relative;*/
    width: 100%;
    display: flex;
    min-height: 70px;
    background-color: rgba(55,104,175,1); /* SKIN!!! */
    z-index: 2;
    /*position: absolute;*/
    box-shadow: var(--box-shadow-1); /* SKIN!!! */
    /**/
    background-color: var(--bg-main);
}

.ui-header-add {
    z-index: 1;
    width: 100%;
    min-height: 70px;
    background-color: transparent;
    position: absolute;
    box-shadow: var(--box-shadow-1);
}

.ui-tmp-header {
    width: calc(100% - 20px);
    display: flex;
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: rgba(55,104,175,1);
    border-bottom: none;
    height: 70px;
    /**/
    background-color: var(--bg-main);
}

.ui-tmp-header-nt.shadow {
    box-shadow: var(--box-shadow-1) !important;
}

.ui-header-shadow {
    box-shadow: var(--box-shadow-1) !important;
}

/* #endregion */

/* #region ~ ЗАГОЛОВКИ ~ */

/*.ui-content-title-div {
    min-width: 1px;
    height: 36px;
    text-align: left;
    margin-top: 10px;
    margin-left: 10px;    
}

    .ui-content-title-div.dboard-eq {
        margin-top: -5px;
        margin-left: -5px;
    }

    .ui-content-title-div.dboard-si {
        margin-top: -5px;
        margin-left: -5px;
    }

    .ui-content-title-div.userdata {
        margin-top: -5px;
        margin-left: -5px;
    }

.ui-content-title-lbl {
    white-space: nowrap;
    padding: 3px 20px 5px 20px;
    position: absolute;
    margin: 10px 0 0 10px;
    font: 500 19px Roboto,"Open Sans",sans-serif;
    background-color: rgba(0,0,0,0.05);*/
/**/
/*box-shadow: 1px 2px 15px rgba(0,0,0,0.1);*/ /* SKIN!!! */
/*background: linear-gradient(90deg, rgba(213,220,220,1), rgba(231,233,233,0.2));*/ /* SKIN!!! */
/*border-radius: 25px;*/ /* SKIN!!! */
/*color: rgba(0,0,0,0.6);*/ /* SKIN!!! */
/*background: linear-gradient(90deg, rgba(231,233,233,0.4), rgba(213,220,220,1), rgba(231,233,233,0.2));*/ /* SKIN!!! */
/*border: 1px solid rgba(0,0,0,0.02);*/ /* SKIN!!! */
/*box-shadow: 1px 2px 15px rgba(0,0,0,0.2);*/ /* SKIN!!! */
/*}*/

/* #endregion */

/* #region ~ ТАБЫ ~ */

.ui-mudtab-title {
    font: 600 14px "Open Sans",Arial;
    text-shadow: 1px 2px 5px rgba(0,0,0,0.1);
    padding: 0 20px 0 20px !important;
    /*color: var(--bg-sab-blue) !important;*/ /* SKIN!!! 
    background-color: transparent !important; /* SKIN!!! */
    color: rgb(0,0,0,0.8) !important; /* SKIN!!! */
    background-color: transparent;
}

    .ui-mudtab-title:hover {
        color: rgba(0,0,0,1) !important; /* SKIN!!! */
        background-color: rgb(0,0,0,0.05) !important; /* SKIN!!! */
    }
/* вся мудблазоровская панель с табами */
.ui-mudtab-tab {
    border: none;
}
/* хидер */
.ui-mudtab-header {
    background-color: rgba(55,104,175,0.12); /* SKIN!!! */
    /**/
    /*background-color: var(--bg-main);*/
}
/* панель под хидером */
.ui-mudtab-panel {
    background-color: transparent;
}

/* #endregion */

/* #region ~ ТАБЛИЦЫ ~ */

/* div бокса для таблицы */
.ui-mudtable-box {
    width: calc(100% - 30px);
    margin: 10px 15px 50px 15px !important;
    box-shadow: 1px 2px 9px rgba(0,0,0,0.07);
    background-color: white;
    border-radius: 5px;
    /**/
    /*    overflow: hidden !important;
    min-height: 100px;*/
}
/* div таблицы */
.ui-mudtable-table {
    padding: 10px 10px 0 10px;
    /**/
    /* margin: 10px 10px 0 10px;*/
    /*    display: block !important;
    overflow: hidden !important; 
    min-height: 100px;*/
}

.ui-mudtable2-data .mud-table-cell {
    padding: 5px 8px 5px 10px !important;
    /*    padding-left: 1px !important;
    padding-right: 1px !important;*/
    /**/
    overflow: hidden;
    /**/
    /*padding: 4px 5px 4px 5px !important;*/
    padding: 4px 4px 4px 9px !important;
    /**/
    /*font: 500 13px "Open Sans",Arial !important;*/
}

/* div всей таблицы */
.ui-mudtable-div {
    width: calc(100% - 20px);
    margin: 10px 10px 10px 10px !important;
}

    .ui-mudtable-div.eventlog {
        min-width: calc(100% - 20px);
        width: calc(100% - 20px);
    }

    .ui-mudtable-div.sbdusage-in {
        box-shadow: 1px 2px 9px rgba(0,0,0,0.1);
        width: calc(100% - 20px);
        margin-left: 10px;
        margin-bottom: 20px !important;
    }

    .ui-mudtable-div.sbdusage-out {
        box-shadow: 1px 2px 9px rgba(0,0,0,0.1);
        width: calc(100% - 20px);
        margin-left: 10px;        
    }

/* строка поиска */
.ui-mudtable-search {
    width: 270px;
    right: 20px;
    margin-top: -7px;
    position: absolute;
}
/* хидер */
.ui-mudtable-header {
    /* background-color: rgba(235,241,222,1);*/
    /**/
    background-color: rgba(55,104,175,0.12); /* SKIN!!! */
}

    .ui-mudtable-header.bordered .mud-table-cell {
        border: 1px solid rgba(0,0,0,0.1);
    }
/* хидер - названия полей */
.ui-mudtable-header-label {
    font: 700 12px "Open Sans",Arial !important;
    text-decoration: none;
    color: rgba(0,0,0,0.8) !important;
    /**/
    /* display: block;*/
    /*padding-left: -20px !important;*/
    /*margin-left: -10px !important;*/
}

.ui-mud-tbl-hdr-th {
    font: 700 12px "Open Sans",Arial !important;
    text-decoration: none;
    color: rgba(0,0,0,0.8) !important;
}
/* панель данных */
.ui-mudtable-data {
    background-color: rgba(255,255,255,1) !important;
    /**/
    font-size: 10px;
}
/* сами данные */
.ui-mudtable-row-label {
    font: 400 13px "Open Sans",Arial !important;
}

.ui-mud-tbl-row-td {
    font: 400 13px "Open Sans",Arial !important;
}
/* сами данные (traffic) */
.ui-mudtable-row {
    /*font: 400 10px "Open Sans",Arial !important;*/
}
/* pager */
.ui-mudtable-pager {
    font: 600 13px "Open Sans",Arial;
    color: rgba(0,0,0,0.8) !important;
    background-color: transparent;
}

    .ui-mudtable-pager.firewall-details {
        font: 600 12px "Open Sans",Arial;
        color: rgba(0,0,0,1) !important;
    }
/* батон-иконка в таблице */
.ui-mudtable-btn-icon {
    background-color: var(--bg-sab-blue) !important; /* SKIN!!! */
    background: url('../images/eye-white.svg') no-repeat center; /* SKIN!!! */
    width: 22px !important;
    height: 22px !important;
    box-shadow: 1px 1.9px 1px rgba(0,0,0,0.1);
    background-size: 13px !important;
    margin-left: -8px;
    margin-right: -15px;
}

    .ui-mudtable-btn-icon:hover {
        background-color: var(--bg-hover-sab-blue) !important; /* SKIN!!! */
        box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    }
/* батон-иконка 2 в таблице */
.ui-mudtable-btn-icon-2 {
    background-color: var(--bg-sab-blue) !important; /* SKIN!!! */
    background: url('../images/eye-white.svg') no-repeat center; /* SKIN!!! */
    width: 22px !important;
    height: 22px !important;
    /*box-shadow: 1px 1.9px 1px rgba(0,0,0,0.1);*/
    background-size: 13px !important;
    margin-left: -8px;
    margin-right: -15px;
}

    .ui-mudtable-btn-icon-2:hover {
        background-color: var(--bg-hover-sab-blue) !important; /* SKIN!!! */
        box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    }
/* батон-текст в таблице */
.ui-mudtable-btn-text {
    background-color: var(--bg-sab-blue); /* SKIN!!! */
    color: var(--color-sab-blue); /* SKIN!!! */
}

    .ui-mudtable-btn-text:hover {
        background-color: var(--bg-hover-sab-blue); /* SKIN!!! */
    }

/* для таблиц - бэкгроунд - в зависимости от четности */
/* четный */
.ui-table-even {
    background-color: rgba(0,0,0,0.05);
}
/* нечетный */
.ui-table-odd {
    background-color: rgba(255,255,255,1);
}

/* #endregion */

/* #region ~ ТУЛТИП ~ */

/* сам тултип - делать так, иначе тока radzen меняется  */
.ui-tooltip {
    font-size: 12px;
    font-family: "Open Sans", Arial;
    background-color: rgb(97,97,97);
    color: rgba(255,255,255,0.9);
    /**/
    /*pointer-events: auto !important;*/
}

/* чисто для mudblazor */
.ui-tooltip-mud-1 {
    margin-top: 27px;
    margin-left: -5px;
}

.ui-tooltip-mud-2 {
    margin-top: -5px;
}

.ui-tooltip-mud-3 {
    margin-top: -5px;
}

.ui-tooltip-mud-4 {
    margin-top: -7px;
}

.ui-tooltip-mud-5 {
    margin-top: -8px;
}

.ui-tooltip-mud-6 {
    margin-left: -10px;
}

/* новое поколение */
.ui-tooltip-mud-01 {
    max-width: 400px;
    margin-right: 20px;
    font-size: 13px;
    text-align: left;
}

.ui-tooltip-mud-02 {
}

/* что-то неиспользованное */

.ui-tooltip-resolution {
}

@media screen and (max-height: 600px) {

    .ui-tooltip-resolution {
        display: none !important;
        margin-left: 1000px !important;
    }
}

@media screen and (max-width: 800px) {

    .ui-tooltip-resolution {
        display: none !important;
        margin-left: 1000px !important;
    }
}

/* #endregion */

/* #region ~ HEADER TRACKER & FIREWALL ~ */

.ui-add-header {
    display: flex;
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: rgba(55,104,175,1);
    border-bottom: none;
    min-height: 70px;
    /*box-shadow: var(--box-shadow-1);*/
    /**/
    background-color: var(--bg-main);
}

    .ui-add-header.shadow {
        box-shadow: var(--box-shadow-1) !important;
    }

.ui-add-header-title-1-container {
    margin-left: 20px;
    margin-top: 16px;
}

.ui-add-header-title-2-container {
    margin-left: 20px;
    margin-top: -3px;
}

.ui-add-header-title-1 {
    background-color: rgb(255,255,255);
    padding: 5px 25px 8px 25px;
    border-radius: 9px;
    color: rgba(0,0,0,0.6); /* SKIN!!! */
    /*box-shadow: rgba(0,0,0,0.5) 1px 1px 11px inset;*/
    text-shadow: 1px 1px 2px rgba(0,0,0,0.25);
    white-space: nowrap;
    font-size: 17px;
    font-weight: 700;
    border-radius: 5px;
    /**/
    /*background-color: rgba(55,104,175,0.1);*/
    background-color: rgba(255,255,255,0.6);
}

.ui-add-header-title-2 {
    color: rgba(255,255,255,1); /* SKIN!!! */
    text-shadow: 1px 1px 1px rgba(0,0,0,0.4);
    display: flex;
    margin-top: 20px;
    font-size: 21px;
    font-weight: 700;
    /**/
    margin-top: 22px;
}

/*.ui-add-header-title-1-title {
    font: 600 10px "Open Sans",Arial;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.4);
    color: rgba(0,0,0,0.3);
    position: absolute;
    z-index: 9;
    display: flex;
    top: 45px;
    left: 30px;
}
*/
/* #endregion */

/* #region ~ ЧТО-ТО ДЛЯ ПЛАШЕК ~ */

.ui-card-status-device-title {
    text-decoration: none;
    color: rgba(0,0,0,1);
    padding: 4px 8px 4px 8px;
    border-radius: 9px;
    background-color: rgba(0,0,0,0.1);
    font-weight: 400;
}

.ui-card-status-device-text {
    text-decoration: none;
    color: rgba(0,0,0,0.6);
    margin-left: 10px;
    padding: 3px 0px 1px 0px;
    font-weight: 500;
    font-size: 13px;
    margin-top: 2px;
}

/* #endregion */

/* #region ~ БОРДЕРЫ ДЛЯ ДЛЯ ПЛАШЕК ОБОРУДОВАНИЯ ~ */

.ui-border5-inmarsat {
    border-top: 5px solid var(--color-border-inmarsat) !important;
}

.ui-border5-iridium {
    border-top: 5px solid var(--color-border-iridium) !important;
}

.ui-border5-vsat {
    border-top: 5px solid var(--color-border-vsat) !important;
}

.ui-border5-other {
    border-top: 5px solid var(--color-border-other) !important;
}

.ui-border6-inmarsat {
    border-top: 6px solid var(--color-border-inmarsat) !important;
}

.ui-border6-iridium {
    border-top: 6px solid var(--color-border-iridium) !important;
}

.ui-border6-vsat {
    border-top: 6px solid var(--color-border-vsat) !important;
}

.ui-border6-other {
    border-top: 6px solid var(--color-border-other) !important;
}

.ui-border7-inmarsat {
    border-top: 7px solid var(--color-border-inmarsat) !important;
}

.ui-border7-iridium {
    border-top: 7px solid var(--color-border-iridium) !important;
}

.ui-border7-vsat {
    border-top: 7px solid var(--color-border-vsat) !important;
}

.ui-border7-other {
    border-top: 7px solid var(--color-border-other) !important;
}

.ui-border8-inmarsat {
    border-top: 8px solid var(--color-border-inmarsat) !important;
}

.ui-border8-iridium {
    border-top: 8px solid var(--color-border-iridium) !important;
}

.ui-border8-vsat {
    border-top: 8px solid var(--color-border-vsat) !important;
}

.ui-border8-other {
    border-top: 8px solid var(--color-border-other) !important;
}

.ui-border9-inmarsat {
    border-top: 9px solid var(--color-border-inmarsat) !important;
}

.ui-border9-iridium {
    border-top: 9px solid var(--color-border-iridium) !important;
}

.ui-border9-vsat {
    border-top: 9px solid var(--color-border-vsat) !important;
}

.ui-border9-other {
    border-top: 9px solid var(--color-border-other) !important;
}

.ui-border10-inmarsat {
    border-top: 10px solid var(--color-border-inmarsat) !important;
}

.ui-border10-iridium {
    border-top: 10px solid var(--color-border-iridium) !important;
}

.ui-border10-vsat {
    border-top: 10px solid var(--color-border-vsat) !important;
}

.ui-border10-other {
    border-top: 10px solid var(--color-border-other) !important;
}

/* #endregion */

/* #region ~ ТАБЛИЦЫ ~ таблица 01 ~ */

.ui-mudtable-01-box {
    width: calc(100% - 30px);
    margin: 10px 15px 50px 15px !important;
    box-shadow: 1px 2px 9px rgba(0,0,0,0.07);
    background-color: white;
    border-radius: 5px;
}

.ui-mudtable-01-div {
    width: calc(100% - 20px);
    margin: 10px 10px 10px 10px !important;
}

.ui-mudtable-01-table .mud-table-cell {
    /*background-color: rgba(255,255,255,1) !important;*/
    font-size: 10px !important;
    /**/
    font: 700 11px "Open Sans",Arial !important;
    color: rgb(77,77,77) !important;
}

.ui-mudtable-01-header .mud-table-cell {
    background-color: rgba(55,104,175,0.12);
    /**/
    border: 1px solid rgba(0,0,0,0.1);
    padding: 5px 4px 5px 4px !important;
}

.ui-mudtable-01-row .mud-table-cell {
    /**/
    border: 1px solid rgba(0,0,0,0.1);
    font: 500 12px "Open Sans",Arial !important;
    color: rgb(0,0,0) !important;
    padding: 5px 4px 5px 4px !important;
}

/*.ui-mudtable-01-header-lbl {
    font: 700 12px "Open Sans",Arial !important;
    text-decoration: none;
    color: rgba(0,0,0,0.8) !important;*/
    /**/
    /*font: 700 11px "Open Sans",Arial !important;
}

.ui-mudtable-01-row-lbl {   
}*/

/*.ui-mudtable-01-pager {
    font: 600 13px "Open Sans",Arial;
    color: rgba(0,0,0,0.8) !important;
    background-color: transparent;
}
*/

/*.ui-mudtable-01-search {
    width: 270px;
    right: 20px;
    margin-top: -7px;
    position: absolute;
}*/

.ui-mudtable-01-btn {
    background-color: var(--bg-sab-blue) !important;
    background: url('../images/eye-white.svg') no-repeat center;
    width: 20px !important;
    height: 20px !important;
    box-shadow: 1px 1.9px 1px rgba(0,0,0,0.1);
    background-size: 14px !important;
    margin-left: 0px;
    border-radius: 6px !important;
}

    .ui-mudtable-01-btn:hover {
        background-color: var(--bg-hover-sab-blue) !important; /* SKIN!!! */
        box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    }

/* четный */
.ui-mudtable-01-even {
    background-color: rgba(0,0,0,0.05);
}
/* нечетный */
.ui-mudtable-01-odd {
    background-color: rgba(255,255,255,1);
}

/* #endregion */

/* #region ~ ВЫДЕЛЕНИЕ В ТАБЛИЦАХ ~ */

.ui-selected-green {
    padding: 1px 4px 2px 4px;
    border-radius: 5px;
    background-color: MediumSeaGreen;
    color: white;
    text-decoration: none;
}

.ui-selected-gray {
    padding: 1px 4px 2px 4px;
    border-radius: 5px;
    background-color: rgba(0,0,0,0.05);
    color: rgba(0,0,0,1);
    text-decoration: none;
}

/* #endregion */

/* #region ~ ALERT ~ */

.ui-alert-main-div {
}

.ui-alert-main {
    position: fixed;
    bottom: 20px;
    right: 20px;
    min-width: 300px;
    max-width: 500px;
    transition: right .2s linear;
    z-index: 999;
    font: 500 13px "Open Sans",Arial;
}

/* #endregion */

/* #region ~ MEDIA ~ */
@media screen and (max-width: 1320px) {
}

@media screen and (max-width: 800px) {

    /*    .ui-mud-dp-underline.x01 {
        font-size: 9px !important;
        background-color: red;
    }
*/
}

/* #endregion */

/* #region ~ KEYFRAMES ~ */

@keyframes panelright {

    0% {
        right: -90%;
    }

    10% {
        right: -80%
    }

    20% {
        right: -70%;
    }

    30% {
        right: -60%;
    }

    40% {
        right: -50%;
    }

    50% {
        right: -40%;
    }

    60% {
        right: -30%;
    }

    70% {
        right: -20%;
    }

    80% {
        right: -10%;
    }

    90% {
        right: 0;
    }

    100% {
        right: 0;
    }
}

/* #endregion */

/* #region ~ ШИРИНА TD В ТАБЛИЦАХ (чтобы в мини было норм видно) ~ */

.ui-width-10 {
    width: 10px;
}

.ui-width-20 {
    width: 20px;
}

.ui-width-30 {
    width: 30px;
}

.ui-max-width-10 {
    max-width: 10px;
}

.ui-max-width-20 {
    max-width: 20px;
}

.ui-max-width-30 {
    max-width: 30px;
}

@media screen and (max-width: 800px) {

    .ui-width-10 {
        width: 100%;
    }

    .ui-width-20 {
        width: 100%;
    }

    .ui-width-30 {
        width: 100%;
    }

    .ui-max-width-10 {
        width: 100%;
    }

    .ui-max-width-20 {
        width: 100%;
    }

    .ui-max-width-30 {
        width: 100%;
    }
}

/* #endregion */

/* #region ~ ЦВЕТ КАРТОЧЕК ОБОРУДОВАНИЯ В ЗАВИСИМОСМТИ ОТ СОСТОЯНИЯ ~ */


.ui-sim-status-deactivated {
    background-color: rgba(250,250,250,1) !important;
    border: none !important;
}

.ui-sim-status-inactive {
    background-color: rgba(250,250,250,1) !important;
    border: none !important;
}

.ui-card-status-deactivated {
    background-color: rgba(250,250,250,1) !important;
    border: none !important;
}

.ui-text-status-deactivated {
    padding: 4px 8px 5px 8px !important;
    border-radius: 9px !important;
    background-color: rgba(0,0,0,0.05) !important;
    color: rgba(255,0,0,0.7) !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    margin-top: 6px !important;
}

.ui-sim-online-td {
    width: 1px;
}

.ui-sim-online-text {
    padding: 2.5px 8px 2.5px 8px !important;
    background-color: rgba(0,200,83,1);
    color: white;
    font-size: 10px !important;
    border-radius: 9px;
}

/* #endregion */

/* #region ~ ЦВЕТА (бордера) ПРИ ОШИБКАХ (контроль расходов) ~ */

.ui-device-tcs-err-border .mud-input-label {
    border: 1px solid red !important;
}

.ui-device-tcs-err-color .mud-input-label {
    color: red !important;
}

.ui-device-tcs-tab-err-color {
    color: red !important;
}

/* #endregion */

/* #region ~ ПРОЧЕЕ ~ */

._headerempty2 {
    width: calc(100% - 20px);
    display: flex;
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: rgba(55,104,175,1);
    border-bottom: none;
    height: 70px;
    /**/
    /*position: absolute;*/
    /*top: 0;*/
    left: 0;
    right: 0;
    margin-top: 0;
    z-index: 0;
    background-color: var(--bg-main);
    /**/
    /*position: absolute !important;*/
    top: 0;
}

    ._headerempty2.shadow {
        box-shadow: 1px 5px 9px rgba(0,0,0,0.25) !important;
    }

._menu-bills-empty {
    padding: 1px 20px 1px 20px;
    color: darkred;
    font-size: 14px;
}

.ui-datalabel {
}

.ui-datalabel-data {
    /*font: 600 14px "Open Sans", Arial;
    color: rgba(0,0,0,0.6);*/
    font-size: 13px;
    word-break: break-all;    
}

/* #endregion */

/* #region ~ ВРЕМЕННО. ДЛЯ БЫСТРОЙ НАСТРОЙКИ СТИЛЕЙ. ПОТОМ ОТСЮДА УБРАТЬ ~ */

.a-balance2-saldo-container {
    width: 100%;
    text-align: center !important;
    /**/
    /*    height: 2px;
    background-color: yellow;*/
    position: absolute;
}

.a-balance2-saldo-box {
    width: 400px;
    height: 40px;
    background-color: white;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
    /*border: 1px solid rgba(0,0,0,0.05); */
    margin-top: 20px;
    min-width: 150px;
    /*box-shadow: 1px 2px 9px rgba(0,0,0,0.08);*/
    /* padding: 5px 10px 5px 10px;
        box-shadow: 4px 10px 10px -8px rgba(0,0,0,0.5);
        border-radius: 0 0 9px 9px;
        background-color: white;
        width: fit-content;
        max-width: 330px;
        min-height: 15px;
        font: 400 10px Roboto,"Open Sans",sans-serif;
        background-color: moccasin;
        margin-left: auto;
        margin-right: auto;
        background-color: rgba(93,132,189,1);
        margin-top: -13px;
        z-index: 0;
        position: absolute;
        left: 50%;
        margin-right: -50%;
        transform: translate(-50%, -50%);
        margin-top: 0px;
        border-radius: 0 0 7px 7px;
        background-color: var(--bg-main-header-balance);*/
}

.a-balance2-saldo-lbl {
    font: 400 12px Roboto,"Open Sans",sans-serif;
    color: rgba(0,0,0,0.7);
    color: yellow;
    margin-bottom: -2px;
    display: flex;
    color: white;
}

.a-balance2-saldo-add {
    height: 25px;
}

.ui-wait2 {
    position: absolute !important;
    height: 100vh;
    width: 100%;
    z-index: 999999;
}

.ui-wait3 {
}

@media screen and (max-width: 1000px) {

    .a-balance2-saldo-box {
        margin-top: 10px;
    }

    .a-balance2-saldo-container {
        margin-bottom: 20px;
    }
}

/* #endregion */

.done2 {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    padding: 5px;
}

