@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Exo+2:wght@100;200;300;400;500;600;700&display=swap");

/* RESET CSS
================================================================== */
* {
    outline: none;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
}

main {
    display: block;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

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

a {
    background-color: transparent;
}

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

b, strong {
    font-weight: bolder;
}

code, kbd, samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

small {
    font-size: 80%;
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

img {
    border-style: none;
}

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

button, input {
    overflow: visible;
}

button, select {
    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;
}

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type=checkbox], [type=radio] {
    box-sizing: border-box;
    padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
    height: auto;
}

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

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

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

details {
    display: block;
}

summary {
    display: list-item;
}

template {
    display: none;
}

[hidden] {
    display: none;
}

/* MAIN CSS
================================================================== */
a {
    color: #00d5ff;
    transition: color 0.3s Linear;
}

a:hover {
    color: #00ffde;
}

h1 {
    font-size: 2.5rem;
    line-height: 2.5rem;
    margin: 1rem 0 2rem;
}

h2 {
    font-size: 2.25rem;
    line-height: 1.4;
}

h3 {
    font-size: 2rem;
    line-height: 1.4;
}

h4 {
    font-size: 1.75rem;
    line-height: 1.4;
}

h5 {
    font-size: 1.5rem;
}

p {
    margin: 0 0 1rem;
}

svg {
    pointer-events: none;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: -webkit-fill-available;
    background: #1d1f25;
    font-size: 1rem;
    color: #fff;
    font-family: "Exo 2", sans-serif !important;
    line-height: 1.6rem;
    min-height: 100vh;
}

.main {
    flex: 1 auto;
}

@media screen and (max-width: 767px) {
    h1, h2 {
        font-size: 1.5rem;
    }
}

.main-product-block {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    margin: 2rem 0 2rem;
    background: linear-gradient(to right, #1d1f25, #252936, #1d1f25);
}

.main-product-block__item {
    width: 12.5%;
}

.main-product-block__item.item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: transparent;
    border-radius: 0.5rem;
    transition: background 0.15s Linear, color 0.15s Linear;
}

.main-product-block__item.item:hover {
    background: #282c38;
    border-radius: 0.5rem;
}

.main-product-block__item.item:hover .item__title {
    color: #00d5ff;
}

.main-product-block__item.item:hover .item__variants {
    opacity: 1;
    visibility: visible;
}

.main-product-block__item .item__image {
    width: auto;
    height: 100px;
}

.main-product-block__item .item__title {
    color: #fff;
    text-decoration: none;
}

.main-product-block__item .item__variants {
    position: absolute;
    top: calc(100% - 0.5rem);
    left: 0;
    right: 0;
    z-index: 1;
    padding: 0 0.5rem 1rem;
    background: #282c38;
    border-radius: 0 0 0.5rem 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0.15s Linear, opacity 0.15s Linear;
    text-align: center;
}

.main-product-block__item .item__variants a {
    display: inline-block;
    border: 1px Solid #565c6c;
    padding: 0.25rem;
    font-size: 0.7rem;
    color: #565c6c;
    text-decoration: none;
    border-radius: 0.15rem;
    line-height: 1;
    transition: color 0.15s Linear, border-color 0.15s Linear;
}

.main-product-block__item .item__variants a:hover {
    color: #00d5ff;
    border-color: #00d5ff;
}

.main-product-block__button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 3rem;
}

@media screen and (max-width: 991px) {
    .main-product-block__item {
        width: 25%;
    }
}

@media screen and (max-width: 767px) {
    .main-product-block__item {
        width: 33.33333%;
    }

    .main-product-block__item .item__variants {
        position: relative;
        top: 0;
        padding: 0.25rem;
        visibility: visible;
        opacity: 1;
        background: transparent;
    }
}

@media screen and (max-width: 480px) {
    .main-product-block__item {
        width: 50%;
    }

    .main-product-block__item .item__variants {
        position: relative;
        top: 0;
        padding: 0.25rem;
        visibility: visible;
        opacity: 1;
        background: transparent;
    }
}

/* MOBILE BOTTOM FIXED MENU
================================================================== */
.overflow {
    overflow: hidden;
}

.mobile-bottom-menu {
    display: none;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
    position: fixed;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1000;
    background: #202430;
    border-radius: 0.5rem 0.5rem 0 0;
    padding: 0.5rem 0.75rem;
    box-shadow: 0 -0.5rem 1rem 0 rgba(0, 0, 0, 0.15);
}

.mobile-bottom-menu__item {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    text-decoration: none !important;
}

.mobile-bottom-menu__item .item__icon {
    position: relative;
    display: inline-block;
    text-align: center;
}

.mobile-bottom-menu__item .item__icon svg {
    width: 1.6rem;
    height: 1.6rem;
    color: #959fa7;
    transition: color 0.3s Linear;
}

.mobile-bottom-menu__item .item__icon svg:last-child {
    margin: 0;
}

.mobile-bottom-menu__item .item__icon .count {
    display: block;
    position: absolute;
    right: 0.25rem;
    bottom: 0.25rem;
    width: 0.9rem;
    height: 0.9rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    background: #e44f70;
    text-align: center;
    border-radius: 50%;
    line-height: 0.9rem;
}

.mobile-bottom-menu__item .item__text {
    display: inline-block;
    color: #959fa7;
    font-size: 0.7rem;
    text-align: center;
    line-height: 1;
    transition: color 0.3s Linear;
}

.mobile-bottom-menu__item:hover svg {
    color: #00b2ff;
}

.mobile-bottom-menu__item:hover .item__text {
    color: #00b2ff;
}

@media screen and (max-width: 768px) {
    .mobile-bottom-menu {
        display: flex;
    }
}

.btn {
    display: inline-flex;
    justify-content: center;
    border: none;
    padding: 0.75rem 1rem !important;
    background: #0080ff !important;
    color: #fff !important;
    font-size: 1rem !important;
    font-weight: normal !important;
    text-decoration: none !important;
    line-height: 1 !important;
    border-radius: 0.25rem !important;
    transition: background 0.3s Linear, color 0.3s Linear;
    cursor: pointer !important;
    white-space: nowrap !important;
}

.btn:hover {
    background: #00b2ff !important;
    color: #fff !important;
}

.btn--buy {
    background: #3bc440 !important;
    color: #000 !important;
    background: #3bc440 !important;
    font-size: 1.4rem !important;
    align-items: center !important;
    padding: 0.5rem 1rem !important;
}

.btn--buy:hover {
    background: #62d666 !important;
    color: #000 !important;
}

.btn--cancel {
    background: #e3722f !important;
    color: #fff !important;
}

.btn--cancel:hover {
    background: #e88951 !important;
    color: #fff !important;
}

.btn svg {
    margin: 0 0.5rem 0 0;
    color: #000;
}

.btn.active {
    background: #00b2ff !important;
    color: #fff !important;
}

.icon {
    margin: 0 0.5rem 0 0;
    width: 1rem;
    height: 1rem;
}

.icon--big {
    /*width: 2rem;*/
    /*height: 2rem;*/
    width: 1.8rem;
    height: 1.8rem;
}

.icon--medium {
    width: 1.25rem;
    height: 1.25rem;
}

.icon--small {
    width: 0.5rem;
    height: 0.5rem;
}

.icon--white {
    color: #fff;
}

.action-buttons {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.action-buttons__item {
    display: flex;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0 0.5rem 0 0;
    color: #565c6c;
    transition: color 0.3s Linear;
    cursor: pointer !important;
    position: relative;
    z-index: 1;
}

.action-buttons__item:last-child {
    margin: 0;
}

.action-buttons__item:hover {
    color: #00b2ff;
}

.action-buttons__item.in-compare, .action-buttons__item.in-favorite, .action-buttons__item.in-basket-category-tile {
    color: #0080ff;
}

.action-buttons__item svg {
    width: 1.15rem;
    height: 1.1rem;
    position: relative;
    z-index: -1;
}

.heading-center {
    text-align: center;
}

.heading-center .breadcrumb {
    justify-content: center;
}

.no-underline {
    text-decoration: none;
}

.num-monospace {
    font-variant: tabular-nums;
}

.no-white-space {
    white-space: nowrap;
}

.img-title-left {
    display: block;
    text-align: left;
}

.img-title-center {
    display: block;
    text-align: center;
}

.img-title-right {
    display: block;
    text-align: right;
}

.img-center {
    display: block;
    margin: 1rem auto;
}

.img-25 {
    width: 100% !important;
    max-width: 25% !important;
}

.img-50 {
    width: 100% !important;
    max-width: 50% !important;
}

.img-75 {
    width: 100% !important;
    max-width: 75% !important;
}

.img-100 {
    width: 100% !important;
    max-width: 75% !important;
}

.error-404 {
    margin: 0 0 1rem;
}

.error-404__code {
    font-size: 23rem;
    line-height: 1;
    max-width: 800px;
    font-weight: bold;
    color: #32394b;
}

.error-404__text {
    font-size: 1.5rem;
    color: #3a4257;
}

@media screen and (max-width: 768px) {
    .error-404__code {
        font-size: 12rem;
    }
}

.error {
    width: 100%;
    max-width: 1270px;
    margin: 1rem auto;
    padding: 1rem;
    background: #cc374e;
    border-radius: 0.5rem;
}

div#jivo-iframe-container {
    display: none !important;
}

.ya-site-form {
    max-width: 300px;
}

.ya-site-form__input {
    position: relative;
}

.ya-site-form__search-input {
    padding: 0 !important;
}

.ya-site-form__input-text {
    background: #2b3040 !important;
    border: 1px Solid #2b3040 !important;
    padding: 0.75rem 1rem !important;
    color: #fff !important;
    transition: border 0.15s Linear;
}

.ya-site-form__input-text:focus {
    border: 1px Solid #00ffde !important;
}

#ya-site-form0 .ya-site-form__form {
    color: #fff !important;
}

#ya-site-form0 .ya-site-form__form .ya-site-form__input-text:focus {
    border: 1px Solid #00ffde !important;
}

#ya-site-form0 .ya-site-form__form .ya-site-form__input-text {
    color: #fff !important;
}

#ya-site-form0 .ya-site-suggest-list {
    min-width: auto !important;
    border: none !important;
    box-shadow: 0 9px 17px 0 rgba(0, 0, 0, 0.3) !important;
}

#ya-site-form0 .ya-site-suggest__iframe {
    min-width: auto !important;
    background: #2b3040 !important;
    border-radius: 0 0 0.25rem 0.25rem !important;
    max-width: 300px !important;
}

#ya-site-form0 .ya-site-suggest-items {
    min-width: auto !important;
    overflow: hidden !important;
    border-radius: 0 0 0.25rem 0.25rem !important;
    font-size: 13px !important;
}

.ya-site-suggest-elem.ya-site-suggest-elem-link {
    color: #fff !important;
    padding: 0.75rem !important;
}

.ya-site-suggest-elem.ya-site-suggest-elem-link:hover {
    background: #313749 !important;
    color: #fff !important;
    padding: 0.75rem !important;
}

.ya-site-form__search-input-layout-r {
    display: none;
}

#ya-site-form0 .ya-site-form__form * {
    color: #c2c2c2 !important;
}

.ya-site-suggest__content {
    font-size: 13px !important;
}

style + .search__button {
    top: 10px !important;
    right: 10px !important;
    background: #2b3040 !important;
    bottom: 10px !important;
}

/* TABS */
.tabs {
    margin: 2rem 0 1rem;
}

.tabs-list {
    display: flex;
    flex-direction: row;
    padding: 0;
    margin: 0;
    list-style: none;
}

.tabs-list__item {
    padding: 0;
    margin: 0;
    font-size: 0;
}

.tabs-list__item span {
    display: inline-block;
    padding: 0.5rem 1rem;
    color: #959fa7;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    white-space: pre;
    background: #30333c;
    border-radius: 0.5rem;
    transition: color 0.3s Linear, background-color 0.3s Linear;
}

.tabs-list__item span:hover {
    color: #fff;
    background: #00b2ff;
}

.tabs-list__item.active span {
    color: #fff;
    background: #0080ff;
}

.tabs-content__item {
    display: none;
}

.tabs-content__item.active {
    display: block;
}

.tab-main-item.active {
    display: flex;
    flex-direction: row;
}

.tab-main-item.active p {
    margin: 0;
}

.tab-icon {
    font-size: 170px;
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 200px;
    width: 200px;
    margin: 0 1rem 0 0;
    text-align: center;
    color: #00ccfc;
    line-height: 0 !important;
    border: 1px Solid #30333d;
    background: #30333d;
    border-radius: 0.5rem;
}

@media screen and (max-width: 768px) {
    .tab-main-item.active {
        flex-direction: column;
    }

    .tab-main-item.active img {
        width: 100% !important;
        margin: 0 0 1rem !important;
    }

    .tab-icon {
        width: 100%;
        margin: 0 0 1rem !important;
    }
}

.firmware-updates {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 0 3rem;
}

.firmware-updates__columns {
    background: #202430;
    width: calc(50% - 0.5rem);
    border-radius: 0.5rem;
}

.firmware-updates a {
    display: block;
    border-top: 1px solid #242c39;
    padding: 0.7rem 0.5rem;
    text-decoration: none;
}

.firmware-updates a:first-child {
    border: none;
}

@media screen and (max-width: 767px) {
    .firmware-updates {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin: 0 0 3rem;
    }

    .firmware-updates__columns {
        background: #202430;
        width: 100%;
    }

    .firmware-updates__columns:first-child {
        border-radius: 0.5rem 0.5rem 0 0;
    }

    .firmware-updates__columns:last-child {
        border-radius: 0 0 0.5rem 0.5rem;
    }

    .firmware-updates__columns:last-child a:first-child {
        border-top: 1px solid #242c39;
    }
}

/* GRID CSS
================================================================== */
.container, .footer__container {
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    max-width: 1300px;
}

.row {
    margin: 0 -1rem;
}

.flex {
    display: flex;
}

.flex-row {
    flex-direction: row;
}

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

.flex-space-between {
    justify-content: space-between;
}

.flex-align-start {
    align-items: flex-start;
}

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

.flex-align-end {
    align-items: end;
}

/* HEADER BITRIX PANEL
================================================================== */
/* HEADER CSS
================================================================== */
.header {
    background: #202430;
    padding: 0;
    z-index: 1002;
}

.header__desktop .header__item {
    padding: 0 0.5rem;
    line-height: 1.2rem;
}

.header__desktop .header__item:first-child {
    padding-left: 0;
}

.header__desktop .header__item:last-child {
    padding-right: 0;
}

.header__item__container {
    display: flex;
    flex-direction: column;
}

.header__item__mail {
    margin-bottom: .2rem;
}

.header__desktop .logo {
    display: inline-block;
    background: #0084ff;
    padding: 0.5rem;
    margin: 0;
    border-radius: 0 0 0.25rem 0.25rem;
    line-height: 0;
}

.header__desktop .logo img {
    width: 40px;
    height: 40px;
}

.header__desktop .big-phone {
    font-size: 2rem;
}

.header__desktop .cart, .header__desktop .compare, .header__desktop .favorite {
    display: inline-block;
    position: relative;
}

.header__desktop .cart .count, .header__desktop .compare .count, .header__desktop .favorite .count {
    display: block;
    position: absolute;
    right: 0.25rem;
    bottom: 0.25rem;
    width: 0.9rem;
    height: 0.9rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    background: #e44f70;
    text-align: center;
    border-radius: 50%;
    line-height: 0.9rem;
}

.header__desktop .menu {
    background: #252936;
    margin: 0.5rem 0 0;
}

.header__desktop .main-menu {
    flex-grow: 1;
}

.header__desktop .main-menu__list {
    display: flex;
    flex: auto;
    flex-direction: row;
    padding: 0;
    margin: 0;
    list-style: none;
}

.header__desktop .main-menu__item {
    position: relative;
    flex: auto;
}

.header__desktop .main-menu__item > a {
    position: relative;
    display: block;
    padding: 0.75rem 1rem;
    letter-spacing: 0.25px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    transition: color 0.15s Linear, background 0.15s Linear;
}

.header__desktop .main-menu__item > a:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #00ffde;
    transition: left 0.15s Linear, width 0.15s Linear;
}

.header__desktop .main-menu__item:hover > a {
    color: #00ffde;
    background: #282e3e;
}

.header__desktop .main-menu__item:hover > a:after {
    left: 0;
    width: 100%;
}

.header__desktop .main-menu__item:hover > .dropdown__list {
    display: block;
}

.header__desktop .main-menu .dropdown__list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 100;
    padding: 0.5rem 0 1rem;
    margin: 0;
    background: #282e3e;
    list-style: none;
    width: max-content;
    min-width: 300px;
    border-radius: 0 0.25rem 0.25rem 0.25rem;
    box-shadow: 0 1rem 1rem 0 rgba(0, 0, 0, 0.15);
    transition: left 0.3s Linear;
}

.header__desktop .main-menu .dropdown__list--next {
    top: -0.5rem;
    left: 100%;
    border-radius: 0.25rem;
}

.header__desktop .main-menu .dropdown__item {
    position: relative;
}

.header__desktop .main-menu .dropdown__item > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    color: #fff;
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.15s Linear, background 0.15s Linear;
}

.header__desktop .main-menu .dropdown__item > a svg {
    display: inline-block;
    margin: 0;
    width: 1rem;
    height: 1rem;
}

.header__desktop .main-menu .dropdown__item:hover > a {
    color: #00ffde;
    background: #30374a;
}

.header__desktop .main-menu .dropdown__item:hover > .dropdown__list {
    display: block;
    left: 100%;
}

.header__desktop .search {
    position: relative;
}

.header__desktop .search__input {
    background: #2b3040;
    border: 1px Solid #2b3040;
    padding: 0.65rem 1rem;
    color: #fff;
    transition: border 0.15s Linear;
}

.header__desktop .search__input:focus {
    border: 1px Solid #00ffde;
}

.header__desktop .search__button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: none;
    background: transparent;
    color: #536171;
    vertical-align: middle;
    cursor: pointer;
    transition: color 0.3s Linear;
}

.header__desktop .search__button svg {
    display: block;
    width: 1.5rem;
    height: 1.5rem;
}

.header__desktop .search__button:hover {
    color: #fff;
}

.header__mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #202430;
}

.header__mobile .logo {
    display: inline-block;
    background: #0084ff;
    padding: 0.5rem;
    margin: 0;
    border-radius: 0 0 0.25rem 0.25rem;
    line-height: 0;
}

.header__mobile .logo img {
    width: 40px;
    height: 40px;
}

.header__mobile .big-phone {
    font-size: 1.3rem;
}

.header__mobile .button-menu {
    display: flex;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
}

.header__mobile .button-menu__line {
    display: block;
    margin: 4px 0;
    width: 2rem;
    height: 2px;
    background: #fff;
}

.header__mobile .button-menu__line:nth-child(2) {
    width: 1rem;
}

.header a {
    color: #fff;
    transition: color 0.3s Linear;
}

.header a:hover {
    color: #00d5ff;
}

@media screen and (max-width: 768px) {
    .header__desktop {
        display: none;
    }

    .header__mobile {
        display: block;
    }
}

.offcanvas {
    display: none;
}

.overflow {
    overflow: hidden;
}

@media screen and (max-width: 991px) {
    .offcanvas {
        display: block;
        position: fixed;
        top: 0;
        left: -120%;
        right: 0;
        bottom: 0;
        height: 100%;
        z-index: 999;
        padding: 0;
        opacity: 0;
        visibility: hidden;
        background: #262a36;
        transition: left 0.15s Linear, opacity 0.15s Linear, visibility 0.15s Linear;
    }

    .offcanvas-close {
        cursor: pointer;
    }

    .offcanvas.open {
        left: 0;
        opacity: 1;
        visibility: visible;
    }

    .offcanvas-menu-left {
        width: 100%;
        max-width: 300px;
        padding: 0 0 5rem;
        overflow: auto;
        box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.15);
    }

    .offcanvas--splash {
        position: absolute;
        top: 0;
        left: -120%;
        right: 0;
        bottom: 0;
        z-index: 30;
        visibility: hidden;
        background: rgba(13, 15, 18, 0.3);
        backdrop-filter: blur(1px);
    }

    .offcanvas--splash.open {
        left: 0;
        visibility: visible;
    }

    .offcanvas-contacts {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 0 0.5rem;
        flex-direction: row;
    }

    .offcanvas-contacts__item {
        display: flex;
        padding: 0.5rem;
        margin: 0.5rem;
        font-size: 1.1rem;
        font-weight: 500;
        color: #b6bfcf;
        border: 1px Solid #4e596e;
        text-decoration: none;
        border-radius: 0.25rem;
        align-items: center;
        width: 100%;
    }

    .offcanvas-contacts__item .icon {
        margin: 0 0.5rem 0 0;
    }

    .offcanvas-org {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 0 0.5rem;
        margin: 2rem 0 0;
        flex-direction: column;
    }

    .offcanvas-org__item {
        display: flex;
        color: #b6bfcf;
        font-size: 1.2rem;
        line-height: 1.5;
        margin: 0 0 1rem;
        width: 100%;
    }

    .offcanvas-org__item .icon {
        margin: 0 0.5rem;
    }

    .offcanvas-org__item .text {
        display: flex;
        flex-direction: column;
    }

    .mobile-catalog-menu {
        position: relative;
        margin: 0;
        padding: 0;
        overflow-y: auto;
        /* height: 100 vh;
       max-height: calc(100 vh - 60 px - 6 rem); */
    }

    .mobile-catalog-menu__title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        font-size: 20px;
        color: #fff;
        background: #202430;
        border-radius: 0 0 0.5rem 0.5rem;
        box-shadow: 1px 0 1rem 0 rgba(0, 0, 0, 0.1);
    }

    .mobile-catalog-menu__subtitle {
        display: flex;
        align-items: center;
        padding: 0.75rem 1rem;
        font-size: 15px;
        color: #b6bfcf;
        background: #202430;
        border-radius: 0 0 0.5rem 0.5rem;
        border-top: 1px Solid #242936;
        box-shadow: 1px 0 1rem 0 rgba(0, 0, 0, 0.1);
        cursor: pointer;
    }

    .mobile-catalog-menu__item {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        list-style: none;
        border-bottom: 1px Solid #2a2f3b;
        margin: 0 !important;
        padding: 0 !important;
    }

    .mobile-catalog-menu__item:last-child {
        border-bottom: none;
    }

    .mobile-catalog-menu__link {
        display: flex;
        color: #b6bfcf;
        list-style: none;
        padding: 0.75rem 1rem;
        margin: 0;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        text-decoration: none;
        transition: color 0.15s Linear;
    }

    .mobile-catalog-menu__link .icon {
        display: inline-block;
        width: 25px;
        margin: -5px 0 0;
        text-align: center;
        line-height: 1;
    }

    .mobile-catalog-menu__link:hover {
        color: #27b0e4;
    }

    .mobile-catalog-menu__icon {
        margin: -1px 0.25rem -2px -0.5rem;
    }

    .mobile-catalog-submenu {
        position: fixed;
        top: 0;
        left: -120%;
        right: 0;
        bottom: 0;
        height: 100vh;
        max-height: calc(100vh - 115px);
        z-index: 1000;
        margin: 3.3rem 0 0;
        padding: 0;
        opacity: 0;
        visibility: hidden;
        overflow: auto;
        background: #262a36;
        transition: left 0.15s Linear, opacity 0.15s Linear, visibility 0.15s Linear;
    }

    .mobile-catalog-submenu-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        cursor: pointer;
    }

    .mobile-catalog-submenu.open {
        left: 0;
        opacity: 1;
        visibility: visible;
    }

    .mobile-main-menu {
        position: relative;
        padding: 0.5rem 0.5rem 1.5rem;
        overflow-y: auto;
        max-height: calc(100vh - 58px - 3rem);
    }

    .mobile-main-menu__title {
        display: flex;
        align-items: center;
        padding: 0.75rem;
        font-size: 16px;
        color: #fff;
        background: #3c4358;
        border-radius: 0.25rem;
    }

    .mobile-main-menu__item {
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px Solid #383e50;
    }

    .mobile-main-menu__item:last-child {
        border-bottom: none;
    }

    .mobile-main-menu__link {
        display: flex;
        color: #b6bfcf;
        list-style: none;
        padding: 0.75rem;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-main-menu__icon {
        margin: -1px 0.25rem 0 -0.5rem;
    }

    .mobile-main-submenu {
        position: fixed;
        top: 0;
        left: -120%;
        bottom: 0;
        max-height: calc(100vh - 58px);
        z-index: 1000;
        padding: 0.5rem 0.5rem 1.5rem;
        overflow: auto;
        background: #32384a;
        transition: left 0.15s Linear;
        width: 100%;
        max-width: 300px;
    }

    .mobile-main-submenu-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        cursor: pointer;
    }

    .mobile-main-submenu.open {
        left: 0;
        transition: left 0.15s Linear;
    }

    .mobile-search {
        position: relative;
        margin: 1rem;
    }

    .mobile-search__input {
        background: #2d3242;
        border: 1px Solid #3b4257;
        padding: 1rem 45px 1rem 1rem;
        border-radius: 0.5rem;
        width: 100%;
        box-sizing: border-box;
        color: #fff;
        margin-top: 100px;
    }

    .mobile-search__button {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        background: transparent;
        color: #9da5bd;
        border: none;
        border-radius: 0.5rem;
        width: 45px;
        margin-top: 100px;
    }

    .mobile-search__button svg {
        vertical-align: middle;
    }

    .mobile-search-results__item {
        display: flex;
        margin: 0 1rem;
        padding: 1rem 0;
        border-bottom: 1px Solid #3a4156;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }

    .mobile-search-results__item--no-results {
        background: #2d3242;
        padding: 1rem;
        color: #7a8196;
        border-radius: 0.5rem;
        border: 1px Solid #3b4257;
    }

    .mobile-search-results {
        height: 100%;
        overflow-x: auto;
    }

    .mobile-search-results__item:last-child {
        border: none;
    }

    .mobile-search-results__item img {
        margin: 0 1rem 0 0;
        width: 40px;
        height: 40px;
        border: 1px Solid #3a4156;
        border-radius: 0.5rem;
    }

    body {
        padding: 0 0 3rem;
    }
}

/* FOOTER CSS
================================================================== */
.footer {
    padding: 2rem 0;
    background: #202430;
    color: #565c6c;
    font-weight: 400;
}

.footer__container {
    padding: 0;
    display: flex;
    flex-direction: row;
}

.footer__column {
    padding: 0 1rem;
    width: 25%;
}

.footer__information {
    width: 100%;
    max-width: 850px;
    margin: 0 auto 2rem;
    padding: 0 1rem;
    text-align: center;
}

.footer-menu__list {
    padding: 0;
    margin: 0;
    font-size: 0;
    column-count: 2;
}

.footer-menu__item {
    padding: 0.25rem 0;
    list-style: none;
}

.footer-menu__item a {
    color: #565c6c;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s Linear;
}

.footer-menu__item a:hover {
    color: #00ffde;
}

.footer .payment-image {
    margin: 0.5rem 0;
    width: 200px;
    filter: grayscale(1);
}

@media screen and (max-width: 768px) {
    .footer__column {
        width: 100%;
        padding: 1rem;
    }
}

/* FORMS CSS
================================================================== */
.form-control {
    padding: 0.75rem;
    border: 1px Solid #31384e !important;
    border-radius: 0.25rem !important;
    width: 100% !important;
    max-width: 100% !important;
    line-height: 1.4 !important;
    color: #dae1ec;
    background: transparent !important;
    transition: border 0.3s Linear;
}

.form-control:focus {
    border: 1px Solid #0080ff !important;
}

.form-radiobox input[type=radio] {
    left: 0 !important;
}

.form-radiobox label {
    margin: 0 0 0 1rem !important;
}

.form-group label {
    margin: 0;
    display: inline;
    position: relative;
    z-index: 1;
    bottom: -12px;
    left: 0.5rem;
    padding: 0 0.25rem;
    font-size: 0.8rem;
    color: #5a6d82 !important;
    background: #252936;
    border-radius: 0.25rem;
}

/* AUTH MODAL FOREM */
.auth-form {
    width: 100%;
    max-width: 350px;
}

.auth-form__title {
    color: #fff;
    font-size: 1.5rem;
    margin: 0;
}

.auth-form-block {
    display: flex;
    flex-direction: column;
}

.auth-form-block--row {
    flex-direction: row;
    justify-content: space-between;
}

.auth-form__field {
    margin: 0 0 0.25rem;
}

.auth-form__label {
    margin: 0;
    display: inline;
    position: relative;
    z-index: 1;
    bottom: -12px;
    left: 0.5rem;
    padding: 0 0.25rem;
    font-size: 0.8rem;
    color: #5a6d82 !important;
    background: #252936;
    border-radius: 0.25rem;
}

.auth-form__label--checkbox {
    display: block;
    left: 0;
    bottom: 0;
    margin: 0.5rem 0;
    padding: 0;
    font-size: 0.9rem;
}

.auth-form__input {
    padding: 0.75rem;
    border: 1px Solid #31384e !important;
    border-radius: 0.25rem !important;
    width: 100% !important;
    max-width: 100% !important;
    line-height: 1.4 !important;
    color: #dae1ec;
    background: transparent !important;
    transition: border 0.3s Linear;
}

.auth-form__input:focus {
    border: 1px Solid #0080ff !important;
}

.auth-form__submit {
    padding: 0.75rem !important;
    line-height: 1.4 !important;
}

.auth-form__link {
    color: #687f98;
    text-decoration: none;
    font-size: 0.8rem;
    display: inline-block;
    margin: 1rem 0 0;
    line-height: 1;
    transition: color 0.3s Linear;
}

.auth-form__link:hover {
    color: #0080ff;
}

.auth-form-errors p {
    margin: 1rem 0 0;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.8rem;
    color: #ffd0da;
    background: #ed5c7c;
    line-height: 1.4;
}

/* AUTH MODAL FOREM */
.request-form {
    width: 100%;
    max-width: 350px;
}

.request-form__title {
    color: #fff;
    font-size: 1.5rem;
    margin: 0;
}

.request-form-block {
    display: flex;
    flex-direction: column;
}

.request-form-block--row {
    flex-direction: row;
    justify-content: space-between;
}

.request-form__field {
    margin: 0 0 0.25rem;
}

.request-form__label {
    margin: 0;
    display: inline;
    position: relative;
    z-index: 1;
    bottom: -12px;
    left: 0.5rem;
    padding: 0 0.25rem;
    font-size: 0.8rem;
    color: #5a6d82 !important;
    background: #252936;
    border-radius: 0.25rem;
}

.request-form__label--checkbox {
    display: block;
    left: 0;
    bottom: 0;
    margin: 0.5rem 0;
    padding: 0;
    font-size: 0.7rem;
    line-height: 1.3;
    text-align: center;
}

.request-form__input {
    padding: 0.75rem;
    border: 1px Solid #31384e !important;
    border-radius: 0.25rem !important;
    width: 100% !important;
    max-width: 100% !important;
    line-height: 1.4 !important;
    color: #dae1ec;
    background: transparent !important;
    transition: border 0.3s Linear;
}

.request-form__input:focus {
    border: 1px Solid #0080ff !important;
}

.request-form__submit {
    padding: 0.75rem !important;
    line-height: 1.4 !important;
}

.request-form__link {
    color: #687f98;
    text-decoration: none;
    font-size: 0.8rem;
    display: inline-block;
    margin: 1rem 0 0;
    line-height: 1;
    transition: color 0.3s Linear;
}

.request-form__link:hover {
    color: #0080ff;
}

.request-form-success p {
    margin: 1rem 0 0;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.8rem;
    color: #e1ffd0;
    background: #396b21;
    line-height: 1.4;
}

.request-form-errors p {
    margin: 1rem 0 0;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.8rem;
    color: #ffd0da;
    background: #ed5c7c;
    line-height: 1.4;
}

input[type=checkbox] {
    display: none;
}

input[type=checkbox] + label {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input[type=checkbox] + label::before {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid #5a6d82;
    border-radius: 0.15em;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}

input[type=checkbox]:checked + label::before {
    border-color: #0080ff;
    background-color: #0080ff;
    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");
}

.content {
    width: 100%;
    overflow: hidden;
}

.content img {
    border-radius: 0.5rem;
}

.content .code {
    position: relative;
}

.content .code pre {
    background: #181b22;
    padding: 2rem 1rem 1rem;
    border-radius: 0.5rem;
    overflow-y: auto;
    color: #6b708e;
    width: 100%;
}

.content .code button {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: absolute;
    top: 5px;
    right: 5px;
    background: #252936;
    color: #818bac;
    border: none;
    height: 1.5rem;
    border-radius: 0.25rem;
    opacity: 0.8;
    cursor: pointer;
    transition: opacity 0.3s Linear;
}

.content .code button svg {
    fill: #fff;
    width: 0.9rem;
    height: 0.9rem;
    margin: 0 0.25rem 0 0;
}

.content .code button:hover {
    opacity: 1;
    transition: opacity 0.3s Linear;
}

.content .collapsible--header {
    display: flex;
    align-items: center;
    position: relative;
    padding: 0.75rem 0;
    font-weight: 700;
    color: #8c8e9c;
    cursor: pointer;
}

.content .collapsible--header:after {
    display: inline-block;
    content: " ";
    position: absolute;
    right: 0;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9IiM4YzhlOWMiIGNsYXNzPSJiaSBiaS1jaGV2cm9uLWRvd24iIHZpZXdCb3g9IjAgMCAxNiAxNiI+CiAgPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNMS42NDYgNC42NDZhLjUuNSAwIDAgMSAuNzA4IDBMOCAxMC4yOTNsNS42NDYtNS42NDdhLjUuNSAwIDAgMSAuNzA4LjcwOGwtNiA2YS41LjUgMCAwIDEtLjcwOCAwbC02LTZhLjUuNSAwIDAgMSAwLS43MDh6Ii8+Cjwvc3ZnPg==");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
    width: 20px;
    height: 20px;
    transition: transform 0.3s Linear;
}

.content .collapsible--header.rotate-arrow:after {
    transform: rotate(-180deg);
    transition: transform 0.3s Linear;
}

.content .collapsible--body {
    overflow: hidden;
    max-height: 0;
    padding: 0;
    border-bottom: 1px Solid #32394a;
    transition: max-height 0.3s Linear, padding 0.3s Linear;
}

.content .article-tabs {
    width: 100%;
}

.content .article-tabs__header {
    display: flex;
    flex-direction: row;
    border-bottom: 1px Solid #32394a;
}

.content .article-tabs__header-title {
    display: inline-block;
    position: relative;
    padding: 0.5rem 1rem;
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #8c8e9c;
    transition: color 0.3s Linear;
}

.content .article-tabs__header-title:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #73a3ec;
    transition: left 0.3s Linear, width 0.3s Linear;
}

.content .article-tabs__header-title.active {
    color: #fff;
}

.content .article-tabs__header-title.active:after {
    left: 0;
    width: 100%;
}

.content .article-tabs__header-title:hover {
    color: #fff;
}

.content .article-tabs__header-title:hover:after {
    left: 0;
    width: 100%;
}

.content .article-tabs__body {
    width: 100%;
}

.content .article-tabs__body-content {
    display: none;
    padding: 1rem 0;
    margin: 0 0 1rem;
}

.content .article-tabs__body-content.active {
    display: inline-block;
}

.content code {
    display: inline;
    border: 1px Solid #6986b1;
    color: #6986b1;
    border-radius: 0.25rem;
    padding: 0.15rem 0.25rem;
}

/********* public:message.less ********/
.message + .message, .message.message--bordered {
    border-top: 1px solid #d3e1f6;
}

.message.is-mod-selected, .block--messages .message.is-mod-selected {
    background: #ecf2ff;
}

.message.is-mod-selected .message-cell--user, .block--messages .message.is-mod-selected .message-cell--user {
    background: #ecf2ff;
}

.message.is-mod-selected .message-userArrow:after, .block--messages .message.is-mod-selected .message-userArrow:after {
    border-right-color: #ecf2ff;
}

.message-inner {
    display: flex;
}

.message-cell {
    display: block;
    vertical-align: top;
    padding: 16px;
}

.message--quickReply .message-cell > .formRow:last-child > dd {
    padding-bottom: 0;
}

.message-cell.message-cell--closer {
    padding: 16px;
}

.message-cell.message-cell--closer.message-cell--main {
    padding-left: 24px;
}

.message-cell.message-cell--closer.message-cell--user {
    flex: 0 0 152px;
}

.message--simple .message-cell.message-cell--closer.message-cell--user {
    flex: 0 0 102px;
}

.message-cell.message-cell--closer.message-cell--action {
    flex: 0 0 72px;
}

.message-cell.message-cell--user, .message-cell.message-cell--action {
    position: relative;
    background: #fff;
    border-right: 0 solid;
    min-width: 0;
}

.message-cell.message-cell--user {
    flex: 0 0 152px;
}

.message--simple .message-cell.message-cell--user {
    flex: 0 0 102px;
    padding-right: 0;
}

.message-cell.message-cell--action {
    flex: 0 0 72px;
}

.message-cell.message-cell--main {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
}

.message-cell.message-cell--main.is-editing {
    padding: 0;
}

.message-cell.message-cell--main .block {
    margin: 0;
}

.message-cell.message-cell--main .block-container {
    margin: 0;
    border: none;
}

.message-cell.message-cell--alert {
    font-size: 1.2rem;
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    color: #7082a7;
    background: #f1f3fb;
}

.message-cell.message-cell--alert a {
    color: #4080FF;
}

.message-cell.message-cell--extra {
    flex: 0 0 212px;
    border-left: 0 solid;
    background: #f1f3fb;
}

.message-cell.message-cell--extra .formRow-explain {
    margin: 10px 0 0;
    font-size: 1.2rem;
    color: #a0afce;
    font-size: 80%;
}

.message-cell.message-cell--extra .formRow-explain a {
    color: inherit;
    text-decoration: underline;
}

.message-main {
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
}

.message-content {
    flex: 1 1 auto;
    min-height: 1px;
    max-width: 100%;
}

.message-footer {
    margin-top: auto;
}

form.message--simple .message-cell--main {
    flex-direction: column;
    padding: 16px;
}

.message--quickReply .message-cell--main {
    flex-direction: column;
    padding: 16px;
}

@media (max-width: 650px) {
    .message:not(.message--forceColumns) .message-inner {
        display: block;
    }

    .message:not(.message--forceColumns) .message-cell {
        display: block;
    }

    .message:not(.message--forceColumns) .message-cell:before, .message:not(.message--forceColumns) .message-cell:after {
        content: " ";
        display: table;
    }

    .message:not(.message--forceColumns) .message-cell:after {
        clear: both;
    }

    .message:not(.message--forceColumns) .message-cell.message-cell--user {
        width: auto;
        border-right: none;
        border-bottom: 0 solid;
    }

    .message:not(.message--forceColumns) .message-cell.message-cell--extra {
        width: auto;
        border-left: none;
        border-top: 0 solid;
    }

    .message--simple:not(.message--forceColumns) .message-cell.message-cell--user, .message--quickReply:not(.message--forceColumns) .message-cell.message-cell--user {
        display: none;
    }
}

.message-userArrow {
    position: absolute;
    top: 32px;
    right: -1px;
    border: 16px solid transparent;
    border-left-width: 0;
    border-right-color: transparent;
    display: none;
}

.message-userArrow:after {
    position: absolute;
    top: -15px;
    right: -16px;
    content: "";
    border: 15px solid transparent;
    border-left-width: 0;
    border-right-color: #fff;
}

.message-avatar {
    text-align: center;
}

.message-avatar .avatar {
    vertical-align: bottom;
    max-width: 120px;
    max-height: 120px;
}

.message-avatar-wrapper {
    position: relative;
    display: inline-block;
    vertical-align: bottom;
    margin-bottom: 0.5em;
}

.message-avatar-wrapper .message-avatar-online {
    position: absolute;
    left: 50%;
    margin-left: -0.615em;
    bottom: -0.5em;
}

.message-avatar-wrapper .message-avatar-online:before {
    font-family: "Font Awesome 5 Pro";
    font-size: inherit;
    font-style: normal;
    font-weight: 400;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f2bd";
    line-height: 1;
    font-weight: bold;
    color: #7fb900;
    border: #fff solid 2px;
    background: #fff;
    border-color: #fff;
    border-radius: 50%;
    display: inline-block;
}

.message-name {
    font-weight: 700;
    font-size: inherit;
    text-align: center;
    margin: 0;
}

.message-userTitle {
    font-size: 1.2rem;
    font-weight: normal;
    text-align: center;
    margin: 0;
}

.message-userBanner.userBanner {
    margin-top: 3px;
}

@media (min-width: 650px) {
    .message-userBanner.userBanner {
        display: block;
    }
}

.message-userExtras {
    font-size: 1.2rem;
}

.message-userExtras dl.pairs dt:after {
    content: "";
}

.message-userExtras .pairs {
    display: flex;
    align-items: center;
}

.message-userExtras .pairs i {
    font-size: 18px;
}

.message-userExtras .pairs dd {
    min-width: 0;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
}

.message--deleted .message-userDetails {
    display: none;
}

.message--deleted .message-avatar .avatar {
    width: 48px;
    height: 48px;
    font-size: 29px;
}

@media (min-width: 650px) {
    .message-userDetails {
        text-align: center;
    }
}

@media (max-width: 650px) {
    .uix_messagePostBitWrapper {
        display: flex;
        flex-grow: 1;
        flex-direction: column;
        min-width: 0;
        max-width: 100%;
    }

    .message:not(.message--forceColumns) .message-userArrow {
        top: auto;
        right: auto;
        bottom: -1px;
        left: 24px;
        border: none;
        border: 16px solid transparent;
        border-top-width: 0;
        border-bottom-color: transparent;
    }

    .message:not(.message--forceColumns) .message-userArrow:after {
        top: auto;
        right: auto;
        left: -15px;
        bottom: -16px;
        border: none;
        border: 15px solid transparent;
        border-top-width: 0;
        border-bottom-color: #fff;
    }

    .message:not(.message--forceColumns).is-mod-selected .message-userArrow:after {
        border-color: transparent;
        border-bottom-color: #ecf2ff;
    }

    .message:not(.message--forceColumns) .message-user {
        display: flex;
    }

    .message:not(.message--forceColumns) .message-avatar {
        margin-bottom: 0;
    }

    .message:not(.message--forceColumns) .message-avatar .avatar {
        width: 48px;
        height: 48px;
        font-size: 29px;
    }

    .message:not(.message--forceColumns) .message-avatar .avatar + .message-avatar-online {
        left: auto;
        right: 0;
    }

    .message:not(.message--forceColumns) .message-userDetails {
        flex: 1;
        min-width: 0;
        padding-left: 16px;
        width: 100%;
    }

    .message:not(.message--forceColumns) .message-userExtras {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        padding-left: 16px;
        padding-top: 4px;
    }

    .message:not(.message--forceColumns) .message-userExtras .pairs {
        margin-right: 10px;
        line-height: 1.3;
    }

    .message:not(.message--forceColumns) .message-name {
        text-align: left;
    }

    .message:not(.message--forceColumns) .message-userTitle, .message:not(.message--forceColumns) .message-userBanner.userBanner {
        display: inline-block;
        text-align: left;
        margin: 0;
    }

    .message:not(.message--forceColumns) .message--deleted .message-userDetails {
        display: block;
    }
}

.message-content {
    position: relative;
}

.message-content .js-selectToQuoteEnd {
    height: 0;
    font-size: 0;
    overflow: hidden;
}

.message--multiQuoteList .message-content {
    min-height: 80px;
    max-height: 120px;
    overflow: hidden;
}

.message--multiQuoteList .message-content .message-body {
    pointer-events: none;
}

.message-attribution {
    color: #a0afce;
    font-size: 1.2rem;
    border-bottom: 1px solid #d3e1f6;
    padding-bottom: 3px;
    border-width: 0;
    border-style: solid;
    padding-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.message-attribution.message-attribution--plain {
    border-bottom: none;
    font-size: inherit;
}

.message-attribution.message-attribution--split {
    display: flex;
    align-items: flex-end;
}

.message-attribution.message-attribution--split .message-attribution-opposite {
    margin-left: auto;
}

.message-attribution-main {
    float: left;
}

.message-attribution-opposite {
    float: right;
}

.message-attribution-opposite.message-attribution-opposite--list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.message-attribution-opposite.message-attribution-opposite--list > li {
    margin-left: 14px;
}

.message-attribution-opposite.message-attribution-opposite--list > li:first-child {
    margin-left: 0;
}

.message-attribution-opposite.message-attribution-opposite--list a {
    display: inline-block;
    margin: -3px -7px;
    padding: 3px 7px;
}

.message-attribution-opposite a {
    color: inherit;
}

.message-attribution-opposite a:hover {
    text-decoration: none;
    color: #004ee8;
}

.message-attribution-source {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.message-attribution-user {
    font-weight: 700;
}

.message-attribution-user .avatar {
    display: none;
}

.message-attribution-user .attribution {
    display: inline;
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
}

.message-newIndicator {
    font-size: 90%;
    color: #fff;
    background: #4080FF;
    border-radius: 4px;
    padding-top: 1px;
    padding-right: 4px;
    padding-bottom: 1px;
    padding-left: 4px;
}

.message-minorHighlight {
    font-size: 1.2rem;
    color: #384764;
    padding-left: 16px;
    padding-right: 16px;
}

.message-fields {
    margin: 16px 0;
    padding: 16px;
    padding-top: 0;
    margin: 0;
}

.message-body {
    margin: 16px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    padding-bottom: 16px;
    margin: 0;
}

.message-body:before, .message-body:after {
    content: " ";
    display: table;
}

.message-body:after {
    clear: both;
}

.message--simple .message-body {
    margin-bottom: 16px;
}

.message-body:last-child {
    margin-bottom: 0;
}

.message-body .message-title {
    font-size: 1.6rem;
    font-weight: 400;
    margin: 0 0 16px 0;
    padding: 0;
}

.message-attachments {
    margin: 0.5em 0;
    background: #ecf2fb;
    padding: 16px;
    margin-top: 0;
    margin-bottom: 16px;
}

.message-attachments-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.message-lastEdit {
    margin-top: 0.5em;
    color: #a0afce;
    font-size: 1.1rem;
    text-align: right;
    padding: 0 16px 16px;
}

.message-signature {
    margin-top: 16px;
    font-size: 1.2rem;
    color: #a0afce;
    border-top: 1px solid #d3e1f6;
    padding-top: 16px;
    padding-bottom: 16px;
    margin-top: 0;
}

.message-actionBar .actionBar-set {
    font-size: 1.2rem;
}

.message .likesBar {
    margin-top: 16px;
    background: #f1f3fb;
    border-width: 0;
    border-style: solid;
    border-radius: 20px;
    padding: 16px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 0 0 16px;
}

.message .reactionsBar {
    margin-top: 16px;
    background: #f1f3fb;
    border-width: 0;
    border-style: solid;
    border-radius: 20px;
    padding: 16px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 0 0 16px;
}

.message-historyTarget {
    margin-top: 16px;
}

.message-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #fff;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 90%);
}

.message-responses {
    margin-top: 16px;
    font-size: 1.2rem;
}

.message-responses .editorPlaceholder .input {
    font-size: inherit;
}

.message-responseRow {
    margin-top: -1px;
    background: #f1f3fb;
    border: 1px solid #d3e1f6;
    padding: 16px;
}

.message-responseRow.message-responseRow--likes, .message-responseRow.message-responseRow--reactions {
    display: none;
    opacity: 0;
    -webkit-transition: all 0.2s ease, -xf-opacity 0.2s ease;
    transition: all 0.2s ease, -xf-opacity 0.2s ease;
    overflow-y: hidden;
    height: 0;
    -webkit-transition-property: all, -xf-height;
    transition-property: all, -xf-height;
}

.message-responseRow.message-responseRow--likes.is-active, .message-responseRow.message-responseRow--reactions.is-active {
    display: block;
    opacity: 1;
}

.message-responseRow.message-responseRow--likes.is-transitioning, .message-responseRow.message-responseRow--reactions.is-transitioning {
    display: block;
}

.message-responseRow.message-responseRow--likes.is-active, .message-responseRow.message-responseRow--reactions.is-active {
    height: auto;
    overflow-y: visible;
}

.message-responseRow.message-responseRow--likes.is-transitioning, .message-responseRow.message-responseRow--reactions.is-transitioning {
    overflow-y: hidden;
}

@media (max-width: 650px) {
    .message:not(.message--forceColumns) .message-attribution-user .avatar {
        display: inline-flex;
        width: 1.82rem;
        height: 1.82rem;
        font-size: 1rem;
    }

    .message:not(.message--forceColumns) .message-content {
        min-height: 1px;
    }
}

@media (max-width: 480px) {
    .message-signature {
        display: none;
    }
}

.message-menuGroup {
    display: inline-block;
}

.message-menuTrigger {
    display: inline-block;
}

.message-menuTrigger:after {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    content: "\f0d7";
    font-weight: 900;
    display: inline-block;
    font: normal normal normal 18px/1 "Material Design Icons";
    font-size: inherit;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
    width: auto !important;
    content: "menu-down";
    content: "\f35d";
    unicode-bidi: isolate;
    text-align: right;
}

.message-menuTrigger:hover:after {
    color: black;
}

.message-menu-section--editDelete .menu-linkRow {
    font-weight: 700;
    font-size: 1.3rem;
}

.message-menu-link--delete i:after {
    content: "\f2ed";
}

.message-menu-link--edit i:after {
    content: "\f044";
}

.message-menu-link--report i:after {
    content: "\f119";
}

.message-menu-link--warn i:after {
    content: "\f071";
}

.message-menu-link--spam i:after {
    content: "\f05e";
}

.message-menu-link--ip i:after {
    content: "\f0e8";
}

.message-menu-link--history i:after {
    content: "\f1da";
}

.message-menu-link--follow i:after {
    content: "\f234";
}

.message-menu-link--ignore i:after {
    content: "\f235";
}

.message-menu-link--share i:after {
    content: "\f1e0";
}

.comment-inner {
    display: table;
    table-layout: fixed;
    width: 100%;
}

.comment-avatar {
    display: table-cell;
    width: 24px;
    vertical-align: top;
}

.comment-avatar .avatar, .comment-avatar img {
    vertical-align: bottom;
}

.comment-main {
    display: table-cell;
    padding-left: 16px;
    vertical-align: top;
}

.comment-contentWrapper {
    margin-bottom: 16px;
}

.message-responses .comment-actionBar.actionBar {
    padding: 0;
}

.message-responses .comment-actionBar .actionBar-set.actionBar-set--internal {
    padding: 0;
}

.comment-user {
    font-weight: 700;
}

.comment-body {
    display: inline;
}

.comment-input {
    display: block;
    height: 2.34em;
    margin-bottom: 16px;
}

.comment-actionBar .actionBar-set {
    color: #a0afce;
}

.comment-likes, .comment-reactions {
    display: none;
    opacity: 0;
    -webkit-transition: all 0.2s ease, -xf-opacity 0.2s ease;
    transition: all 0.2s ease, -xf-opacity 0.2s ease;
    overflow-y: hidden;
    height: 0;
    -webkit-transition-property: all, -xf-height;
    transition-property: all, -xf-height;
    margin-top: 16px;
    font-size: 1.2rem;
}

.comment-likes.is-active, .comment-reactions.is-active {
    display: block;
    opacity: 1;
}

.comment-likes.is-transitioning, .comment-reactions.is-transitioning {
    display: block;
}

.comment-likes.is-active, .comment-reactions.is-active {
    height: auto;
    overflow-y: visible;
}

.comment-likes.is-transitioning, .comment-reactions.is-transitioning {
    overflow-y: hidden;
}

.actionBar {
    padding-top: 0;
    margin-top: 0;
}

.actionBar:before, .actionBar:after {
    content: " ";
    display: table;
}

.actionBar:after {
    clear: both;
}

.actionBar-set.actionBar-set--internal {
    float: left;
    margin-left: -3px;
}

.actionBar-set.actionBar-set--internal > .actionBar-action:first-child {
    margin-left: 0;
}

.actionBar-set.actionBar-set--external {
    float: right;
    margin-right: -3px;
}

.actionBar-set.actionBar-set--external > .actionBar-action:last-child {
    margin-right: 0;
}

.formSubmitRow.formSubmitRow--messageQr .formSubmitRow-controls {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
    margin-left: 16px;
    margin-right: 16px;
}

@media (max-width: 540px) {
    .formSubmitRow.formSubmitRow--messageQr .formSubmitRow-controls {
        text-align: right;
    }
}

.menu .formSubmitRow.formSubmitRow--messageQr .formSubmitRow-controls {
    text-align: right;
}

.messageNotice {
    margin: 16px 0;
    padding: 16px 16px;
    color: #7082a7;
    background: #f1f3fb;
    font-size: 1.2rem;
    border-left: 2px solid #4080ff;
    background: #ecf2fb;
    margin-top: 0;
}

.messageNotice:not(.messageNotice--highlighted) a, .messageNotice:not(.messageNotice--highlighted) a:hover {
    color: #4080FF;
}

.messageNotice:before {
    display: inline-block;
    font-family: "Font Awesome 5 Pro";
    font-size: inherit;
    font-style: normal;
    font-weight: 400;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-right: 0.2em;
    font-size: 125%;
    color: #4080FF;
    vertical-align: middle;
    font-size: 18px !important;
}

.messageNotice.messageNotice--highlighted {
    color: #384764;
    background: #ecf2fb;
    border-left-color: #4080FF;
}

.messageNotice.messageNotice--highlighted:before {
    color: #384764;
}

.messageNotice.messageNotice--deleted:before {
    content: "\f2ed";
    width: 0.79em;
    display: inline-block;
    font: normal normal normal 18px/1 "Material Design Icons";
    font-size: inherit;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
    width: auto !important;
    content: "delete";
    content: "罹";
}

.messageNotice.messageNotice--moderated:before {
    content: "\f132";
    width: 0.72em;
    display: inline-block;
    font: normal normal normal 18px/1 "Material Design Icons";
    font-size: inherit;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
    width: auto !important;
    content: "moderate";
    content: "\f498";
}

.messageNotice.messageNotice--warning:before {
    content: fa-var-exclamation-triangle;
    width: 1em;
    display: inline-block;
    font: normal normal normal 18px/1 "Material Design Icons";
    font-size: inherit;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
    width: auto !important;
    content: "warning";
    content: "\f02a";
}

.messageNotice.messageNotice--ignored:before {
    content: "\f131";
    width: 0.79em;
    display: inline-block;
    font: normal normal normal 18px/1 "Material Design Icons";
    font-size: inherit;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
    width: auto !important;
    content: "ignored";
    content: "\f36d";
}

@media (min-width: 900px) {
    .block:not(.block--messages) .block-container:not(.block-container--noStripRadius) > .block-body:first-child > .message:first-child .message-cell:first-child, .block:not(.block--messages) .block-topRadiusContent.message .message-cell:first-child, .block:not(.block--messages) .block-topRadiusContent > .message:first-child .message-cell:first-child {
        border-top-left-radius: 7px;
    }

    .block:not(.block--messages) .block-container:not(.block-container--noStripRadius) > .block-body:first-child > .message:first-child .message-cell:last-child, .block:not(.block--messages) .block-topRadiusContent.message .message-cell:last-child, .block:not(.block--messages) .block-topRadiusContent > .message:first-child .message-cell:last-child {
        border-top-right-radius: 7px;
    }

    .block:not(.block--messages) .block-container:not(.block-container--noStripRadius) > .block-body:last-child > .message:last-child .message-cell:first-child, .block:not(.block--messages) .block-bottomRadiusContent.message .message-cell:first-child, .block:not(.block--messages) .block-bottomRadiusContent > .message:last-child .message-cell:first-child {
        border-bottom-left-radius: 7px;
    }

    .block:not(.block--messages) .block-container:not(.block-container--noStripRadius) > .block-body:last-child > .message:last-child .message-cell:last-child, .block:not(.block--messages) .block-bottomRadiusContent.message .message-cell:last-child, .block:not(.block--messages) .block-bottomRadiusContent > .message:last-child .message-cell:last-child {
        border-bottom-right-radius: 7px;
    }
}

.block--messages .block-container, .js-quickReply .block-container {
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
    padding: 0;
}

.block--messages .message, .js-quickReply .message, .block--messages .block-row, .js-quickReply .block-row {
    color: #384764;
    background: #fff;
    border-width: 0;
    border-style: solid;
    border-top-color: #d3e1f6;
    border-right-color: #d3e1f6;
    border-bottom-color: #d3e1f6;
    border-left-color: #d3e1f6;
    border-radius: 8px;
    border-radius: 0;
    border: none;
}

.block--messages .message:first-child, .js-quickReply .message:first-child, .block--messages .block-row:first-child, .js-quickReply .block-row:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.block--messages .message:last-child, .js-quickReply .message:last-child, .block--messages .block-row:last-child, .js-quickReply .block-row:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.block--messages .message + .message, .js-quickReply .message + .message, .block--messages .block-row + .message, .js-quickReply .block-row + .message, .block--messages .message + .block-row, .js-quickReply .message + .block-row, .block--messages .block-row + .block-row, .js-quickReply .block-row + .block-row {
    margin-top: 16px;
    margin-top: 0;
}

.block--messages .message-spacer + .message, .js-quickReply .message-spacer + .message, .block--messages .message-spacer + .block-row, .js-quickReply .message-spacer + .block-row {
    margin-top: 16px;
}

.block--messages .message-cell:first-child, .js-quickReply .message-cell:first-child {
    border-radius: 0;
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
}

.block--messages .message-cell:last-child, .js-quickReply .message-cell:last-child {
    border-radius: 0;
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
}

.block--messages .message-cell:first-child:last-child, .js-quickReply .message-cell:first-child:last-child {
    border-radius: 7px;
}

@media (max-width: 650px) {
    .block--messages .message:not(.message--forceColumns) .message-cell:first-child, .js-quickReply .message:not(.message--forceColumns) .message-cell:first-child {
        border-radius: 0;
        border-top-left-radius: 7px;
        border-top-right-radius: 7px;
    }

    .block--messages .message:not(.message--forceColumns) .message-cell:last-child, .js-quickReply .message:not(.message--forceColumns) .message-cell:last-child {
        border-radius: 0;
        border-bottom-left-radius: 7px;
        border-bottom-right-radius: 7px;
    }

    .block--messages .message:not(.message--forceColumns) .message-cell:first-child:last-child, .js-quickReply .message:not(.message--forceColumns) .message-cell:first-child:last-child {
        border-radius: 7px;
    }

    .block--messages .message--simple:not(.message--forceColumns) .message-cell--user + .message-cell, .js-quickReply .message--simple:not(.message--forceColumns) .message-cell--user + .message-cell {
        border-radius: 0;
        border-top-left-radius: 7px;
        border-top-right-radius: 7px;
    }
}

@media (max-width: 900px) {
    .block--messages .message, .js-quickReply .message, .block--messages .block-row, .js-quickReply .block-row {
        border-left: none;
        border-right: none;
        border-radius: 0;
    }

    .block--messages .message-cell, .js-quickReply .message-cell {
        border-radius: 0;
    }

    .block--messages .message-cell:first-child, .js-quickReply .message-cell:first-child, .block--messages .message-cell:last-child, .js-quickReply .message-cell:last-child {
        border-radius: 0;
    }

    .block--messages .message--simple .message-cell--user + .message-cell, .js-quickReply .message--simple .message-cell--user + .message-cell {
        border-radius: 0;
    }

    .block--messages .message-container, .js-quickReply .message-container {
        padding: 10px 0 0 0;
    }

    .block--messages .message-container .message-container-header, .js-quickReply .message-container .message-container-header {
        text-align: center;
    }

    .block--messages .message-container .message, .js-quickReply .message-container .message {
        border-bottom: 0;
    }
}

/********* public:structured_list.less ********/
.structItemContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.structItemContainer-group {
    display: table-row-group;
}

.block-minorHeader.uix_threadListSeparator {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    color: #7082a7;
    background: transparent;
    padding-top: 10px;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.structItem.is-mod-selected .structItem-cell--meta, .structItem--thread.is-deleted .structItem-cell--meta {
    background: none;
}

.structItem {
    display: table;
    list-style: none;
    margin: 0;
    padding: 0;
}

.structItem.structItem--thread {
    border-top: 1px solid #242c39;
    width: calc(50% - 0.5rem);
    background: #202430 !important;
}

.structItem.structItem--thread:nth-child(1),
.structItem.structItem--thread:nth-child(2) {
    border: none;
    border-radius: 0.5rem 0.5rem 0 0;
}

.structItem.structItem--thread:nth-child(9),
.structItem.structItem--thread:nth-child(10) {
    border-radius: 0 0 0.5rem 0.5rem;
}

@media screen and (max-width: 767px) {
    .structItem.structItem--thread {
        width: 100%;
    }

    .structItem.structItem--thread:nth-child(2) {
        border-top: 1px solid #242c39 !important;
        border-radius: 0;
    }

    .structItem.structItem--thread:nth-child(9) {
        border-radius: 0;
    }
}

.structItem .pairs {
    line-height: inherit;
}

.structItem--thread:hover .structItem-cell--meta {
    background-color: transparent;
}

.structItem.is-deleted {
    opacity: 0.7;
}

.structItem.is-deleted .structItem-title {
    text-decoration: line-through;
}

.structItem.is-mod-selected {
    background: #ecf2ff;
    opacity: 1;
}

.structItem:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.threadListSeparator {
    font-size: 1.2rem;
    color: #7082a7;
    background: transparent;
    padding-top: 10px;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.structItem-cell {
    display: table-cell;
    vertical-align: top;
    padding: 10px 10px;
}

.structItem--middle .structItem-cell {
    vertical-align: middle;
}

.structItem-cell.structItem-cell--icon {
    width: 56px;
    position: relative;
}

.structItem-cell.structItem-cell--icon.structItem-cell--iconExpanded {
    width: 68px;
}

.structItem-cell.structItem-cell--icon.structItem-cell--iconEnd {
    width: 44px;
    padding-left: 5px;
}

.structItem-cell.structItem-cell--icon.structItem-cell--iconEnd .structItem-iconContainer {
    padding-top: 5px;
}

.structItem-cell.structItem-cell--icon.structItem-cell--iconFixedSmall {
    width: 80px;
}

.structItem-cell.structItem-cell--meta {
    width: 135px;
}

@media (max-width: 650px) {
    .structItem-cell.structItem-cell--meta {
        background: none;
        border: none;
    }

    .structItem-cell.structItem-cell--meta .pairs {
        line-height: inherit;
    }
}

.structItem-cell.structItem-cell--latest {
    width: 190px;
    text-align: right;
    font-size: 1.2rem;
}

.structItem-cell.structItem-cell--latest a:not(:hover) {
    color: #6985a6;
}

.structItem-iconContainer {
    position: relative;
}

.structItem-iconContainer img {
    display: block;
    width: 100%;
}

.structItem-iconContainer .avatar {
    width: 36px;
    height: 36px;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    text-decoration: none;
    background: #fff;
}

.structItem-iconContainer .avatar.avatar--xxs {
    width: 24px;
    height: 24px;
    font-size: 14px;
}

.structItem-iconContainer .structItem-secondaryIcon {
    position: absolute;
    right: -5px;
    bottom: -5px;
    width: 20px;
    height: 20px;
    font-size: 12px;
}

.structItem-cell--iconExpanded .structItem-iconContainer .avatar {
    width: 48px;
    height: 48px;
    font-size: 29px;
}

.structItem-cell--iconExpanded .structItem-iconContainer .structItem-secondaryIcon {
    width: 22px;
    height: 22px;
    font-size: 13px;
}

.is-unread .structItem-title {
    font-weight: 700 !important;
}

.structItem-title {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    color: #00d5ff;
}

.structItem-title .label {
    font-weight: 400;
}

.structItem-title a {
    color: inherit;
    text-decoration: none;
}

.structItem-title a:hover {
    color: #00ffde;
}

.is-unread .structItem-title {
    font-weight: 700;
}

.structItem-minor {
    font-size: 1.2rem;
    color: #a0afce;
}

.structItem-cell--main .structItem-minor {
    clear: both;
}

.structItem-minor a {
    color: inherit;
    text-decoration: none;
}

.structItem-minor a:hover {
    text-decoration: underline;
}

.structItem-parts {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline;
}

.structItem-parts > li {
    display: inline;
    margin: 0;
    padding: 0;
}

.structItem-parts > li:nth-child(even) {
    color: #7082a7;
}

.structItem-parts > li:before {
    content: "· ";
}

.structItem-parts > li:first-child:before {
    content: "";
    display: none;
}

.structItem-pageJump {
    margin-left: 8px;
    font-size: 1.1rem;
}

.structItem-pageJump a {
    color: #a0afce;
    background: #ecf2fb;
    border: 1px solid #d3e1f6;
    display: inline-block;
    max-width: 100%;
    padding: 0 6px 1px;
    margin: 0 0 2px;
    border-radius: 3px;
    text-decoration: none;
    border-radius: 4px;
    padding: 0 3px;
    opacity: 0.5;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.structItem:hover .structItem-pageJump a, .has-touchevents .structItem-pageJump a {
    opacity: 1;
}

.structItem-pageJump a:hover {
    text-decoration: none;
    background: #fff;
}

.structItem-statuses, .structItem .structItem-extraInfo {
    list-style: none;
    margin: 0;
    padding: 0;
    float: right;
}

.structItem-statuses label.iconic--checkbox i, .structItem .structItem-extraInfo label.iconic--checkbox i {
    text-align: right;
}

.structItem-statuses > li, .structItem .structItem-extraInfo > li {
    float: left;
    margin-left: 8px;
}

.structItem-statuses input[type=checkbox], .structItem .structItem-extraInfo input[type=checkbox] {
    vertical-align: -2px;
}

.structItem-statuses .reactionSummary {
    vertical-align: -2px;
}

.structItem-extraInfo .reactionSummary {
    vertical-align: middle;
}

.structItem-status {
    font-family: "Font Awesome 5 Pro";
    font-size: inherit;
    font-style: normal;
    font-weight: 400;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    font-size: 1.3rem;
    color: #a0afce;
}

.structItem-status--deleted::before {
    content: "\f2ed";
    display: inline-block;
    font: normal normal normal 18px/1 "Material Design Icons";
    font-size: inherit;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
    width: auto !important;
    content: "delete";
    content: "罹";
}

.structItem-status--locked::before {
    color: #d28b00;
    content: "\f023";
    display: inline-block;
    font: normal normal normal 18px/1 "Material Design Icons";
    font-size: inherit;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
    width: auto !important;
    content: "lock";
    content: "\f33e";
}

.structItem-status--moderated::before {
    color: #00a500;
    content: "\f132";
    display: inline-block;
    font: normal normal normal 18px/1 "Material Design Icons";
    font-size: inherit;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
    width: auto !important;
    content: "moderate";
    content: "\f498";
}

.structItem-status--staffPost::before {
    content: "\f505";
    color: #4080FF;
}

.structItem-status--redirect::before {
    color: #0026bd;
    content: "\f08e";
    display: inline-block;
    font: normal normal normal 18px/1 "Material Design Icons";
    font-size: inherit;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
    width: auto !important;
    content: "redirect";
    content: "\f60d";
}

.structItem-status--starred::before {
    content: "\f005";
    color: #4080FF;
    display: inline-block;
    font: normal normal normal 18px/1 "Material Design Icons";
    font-size: inherit;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
    width: auto !important;
    content: "star";
    content: "\f4ce";
    color: #fae587;
}

.structItem-status--sticky::before {
    color: #ca0000;
    content: "\f08d";
    display: inline-block;
    font: normal normal normal 18px/1 "Material Design Icons";
    font-size: inherit;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
    width: auto !important;
    content: "sticky";
    content: "\f403";
}

.structItem-status--watched::before {
    color: #910098;
    content: "\f06e";
    display: inline-block;
    font: normal normal normal 18px/1 "Material Design Icons";
    font-size: inherit;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
    width: auto !important;
    content: "watched";
    content: "\f208";
}

.structItem-status--poll::before {
    color: #e200ec;
    content: "\f080";
    display: inline-block;
    font: normal normal normal 18px/1 "Material Design Icons";
    font-size: inherit;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
    width: auto !important;
    content: "poll";
    content: "\f41f";
}

.structItem-status--attention::before {
    content: "\f0a1";
    color: #4080FF;
    display: inline-block;
    font: normal normal normal 18px/1 "Material Design Icons";
    font-size: inherit;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
    width: auto !important;
    content: "attention";
    content: "\f0e6";
}

.structItem.structItem--note {
    background: #ecf2fb;
    color: #384764;
}

.structItem.structItem--note .structItem-cell {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 1.2rem;
    text-align: center;
}

@media (max-width: 900px) {
    .structItem-cell {
        vertical-align: top;
    }

    .structItem-cell.structItem-cell--meta {
        width: 115px;
        font-size: 1.2rem;
    }

    .structItem-cell.structItem-cell--latest {
        width: 140px;
        font-size: 1.2rem;
    }
}

@media (max-width: 10000px) {
    .structItem-cell.structItem-cell--main {
        display: block;
        padding: 6px 0 0;
    }

    .structItem-cell.structItem-cell--main .structItem-minor {
        float: right;
    }

    .structItem-cell.structItem-cell--meta {
        display: block;
        width: auto;
        float: left;
        padding-top: 0;
        padding-left: 0;
        padding-right: 0;
        color: #a0afce;
        font-size: 1.2rem;
        display: none;
    }

    .structItem-cell.structItem-cell--meta .structItem-minor {
        display: none;
    }

    .structItem-cell.structItem-cell--meta .pairs > dt, .structItem-cell.structItem-cell--meta .pairs > dd {
        display: inline;
        float: none;
        margin: 0;
    }

    .structItem-cell.structItem-cell--meta .pairs dt {
        display: none;
    }

    .structItem-cell.structItem-cell--meta .pairs dd:before {
        font-family: "Font Awesome 5 Pro";
        font-style: normal;
        font-weight: 400;
        content: "\f27a";
        display: inline-block;
        font: normal normal normal 18px/1 "Material Design Icons";
        font-size: inherit;
        text-rendering: auto;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        transform: translate(0, 0);
        width: auto !important;
        content: "post";
        content: "\f365";
    }

    .structItem-cell.structItem-cell--meta .pairs dd:after {
        content: " · ";
        color: #a0afce;
    }

    .structItem-cell.structItem-cell--latest {
        width: auto;
        float: left;
        padding-top: 0;
        padding-left: 0;
        display: flex;
        align-items: center;
        line-height: 1;
        flex-wrap: wrap;
    }

    .structItem-cell.structItem-cell--latest a {
        order: 2;
    }

    .structItem-cell.structItem-cell--latest .structItem-minor {
        order: 1;
    }

    .structItem-cell.structItem-cell--latest .structItem-minor:after {
        order: 2;
    }

    .structItem-cell.structItem-cell--latest .uix_mobileNodeTitle {
        order: 3;
        margin: 0 0 0 0.5rem;
    }

    .structItem-cell.structItem-cell--latest:before {
        color: #a0afce;
    }

    .structItem-cell.structItem-cell--latest a {
        color: #a0afce;
    }

    .structItem-cell.structItem-cell--latest .structItem-minor {
        display: inline-flex;
    }

    .structItem-cell.structItem-cell--latest .structItem-minor:before {
        font-family: "Font Awesome 5 Pro";
        font-style: normal;
        font-weight: 400;
        content: "\f3e5";
        display: inline-block;
        font: normal normal normal 18px/1 "Material Design Icons";
        font-size: inherit;
        text-rendering: auto;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        transform: translate(0, 0);
        width: auto !important;
        content: "reply";
        content: "\f45a";
        margin-right: 2px;
    }

    .structItem-cell.structItem-cell--latest .structItem-minor:after {
        content: " replied ";
        white-space: pre;
    }

    .structItem-cell.structItem-cell--iconEnd {
        display: none;
    }

    .structItem-pageJump, .structItem-extraInfoMinor {
        display: none;
    }

    .is-unread .structItem-latestDate {
        font-weight: 400;
    }
}

@media (max-width: 10000px) {
    .structItem-parts {
        display: none;
    }
}

@media (min-width: 10000px) {
    .uix_threadRepliesMobile {
        display: none;
    }
}

@media (max-width: 10000px) {
    .structItem .lastPostAv {
        display: none;
    }
}

@media (min-width: 900px) and (max-width: 1200px) {
    .p-body-main--withSidebar .structItem-cell.structItem-cell--main {
        display: block;
        padding-bottom: 0.2em;
        padding-left: 0;
    }

    .p-body-main--withSidebar .structItem-cell.structItem-cell--main .structItem-minor {
        float: right;
    }

    .p-body-main--withSidebar .structItem-cell.structItem-cell--meta {
        display: block;
        width: auto;
        float: left;
        padding-top: 0;
        padding-left: 0;
        padding-right: 0;
        color: #a0afce;
        font-size: 1.2rem;
        display: none;
    }

    .p-body-main--withSidebar .structItem-cell.structItem-cell--meta .structItem-minor {
        display: none;
    }

    .p-body-main--withSidebar .structItem-cell.structItem-cell--meta .pairs > dt, .p-body-main--withSidebar .structItem-cell.structItem-cell--meta .pairs > dd {
        display: inline;
        float: none;
        margin: 0;
    }

    .p-body-main--withSidebar .structItem-cell.structItem-cell--meta .pairs dt {
        display: none;
    }

    .p-body-main--withSidebar .structItem-cell.structItem-cell--meta .pairs dd:before {
        font-family: "Font Awesome 5 Pro";
        font-style: normal;
        font-weight: 400;
        content: "\f27a";
        display: inline-block;
        font: normal normal normal 18px/1 "Material Design Icons";
        font-size: inherit;
        text-rendering: auto;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        transform: translate(0, 0);
        width: auto !important;
        content: "post";
        content: "\f365";
    }

    .p-body-main--withSidebar .structItem-cell.structItem-cell--meta .pairs dd:after {
        content: " · ";
        color: #a0afce;
    }

    .p-body-main--withSidebar .structItem-cell.structItem-cell--latest {
        display: block;
        width: auto;
        float: left;
        padding-top: 0;
        padding-left: 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        line-height: 1;
    }

    .p-body-main--withSidebar .structItem-cell.structItem-cell--latest:before {
        color: #a0afce;
    }

    .p-body-main--withSidebar .structItem-cell.structItem-cell--latest a {
        color: #a0afce;
    }

    .p-body-main--withSidebar .structItem-cell.structItem-cell--latest .structItem-minor {
        display: inline-block;
    }

    .p-body-main--withSidebar .structItem-cell.structItem-cell--latest .structItem-minor:before {
        font-family: "Font Awesome 5 Pro";
        font-style: normal;
        font-weight: 400;
        content: "\f3e5";
        display: inline-block;
        font: normal normal normal 18px/1 "Material Design Icons";
        font-size: inherit;
        text-rendering: auto;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        transform: translate(0, 0);
        width: auto !important;
        content: "reply";
        content: "\f45a";
    }

    .p-body-main--withSidebar .structItem-cell.structItem-cell--latest .structItem-minor:after {
        content: " replied ";
        white-space: pre;
    }

    .p-body-main--withSidebar .structItem-pageJump, .p-body-main--withSidebar .structItem-extraInfoMinor {
        display: none;
    }

    .p-body-main--withSidebar .is-unread .structItem-latestDate {
        font-weight: 400;
    }
}

@media (min-width: 900px) and (max-width: 1200px) {
    .p-body-main--withSidebar .structItem-parts {
        display: none;
    }
}

@media (min-width: 900px) and (max-width: 1200px) {
    .p-body-main--withSidebar .uix_threadRepliesMobile {
        display: block;
    }
}

@media (min-width: 900px) and (max-width: 1200px) {
    .p-body-main--withSidebar .structItem .lastPostAv {
        display: none;
    }
}

.structItem-minor {
    display: none;
}

.structItem-cell.structItem-cell--latest .structItem-minor {
    display: none;
}

.structItem-cell.structItem-cell--main .structItem-statuses {
    display: none;
}

.forum-latest {
    overflow: hidden;
    margin: 0 0 3rem;
}

.structItem-cell.structItem-cell--latest {
    font-size: 0.8rem;
}

.structItem-cell.structItem-cell--latest a {
    text-decoration: none;
}

.structItem-cell.structItem-cell--latest:first-child {
    color: #000;
}

/* CHAT CSS
================================================================== */
#pop-scroll .rounded {
    border-radius: 0 !important;
}

#pop-scroll {
    font-family: sans-serif !important;
    top: calc(100% - 10px);
    bottom: inherit !important;
    z-index: 10000 !important;
    box-shadow: 0 9px 17px 0 rgba(0, 0, 0, 0.3) !important;
    overflow: hidden !important;
    border-radius: 0.5rem !important;
    transform: translateY(-100%);
}

#pop-scroll:after {
    background: #202430 !important;
}

#pop-scroll h5 {
    color: #ffffff !important;
    font-family: sans-serif !important;
    font-size: 14px !important;
    font-weight: normal !important;
    line-height: 0 !important;
    text-shadow: none !important;
}

#pop-scroll h5 .author {
    font-family: sans-serif !important;
    color: #fff !important;
    line-height: 0 !important;
    text-shadow: none !important;
}

#pop-scroll-close {
    width: 15px !important;
    height: 15px !important;
    display: block !important;
    position: absolute !important;
    top: 22px !important;
    right: 10px !important;
}

#pop-scroll-close:before {
    content: "✕" !important;
    font-family: sans-serif !important;
    color: #d3eafa !important;
    position: absolute;
    left: 0 !important;
    font-size: 16px !important;
    transition: color 0.3s Linear;
}

#pop-scroll-close:hover:before {
    font-family: sans-serif !important;
    color: #fff !important;
}

#pop-scrollC {
    height: 350px !important;
    font-family: sans-serif !important;
    padding: 0 0.5rem !important;
    background: #202430 !important;
}

#pop-scroll #chatContainer {
    height: 350px !important;
}

div#pop-scrollT {
    padding: 1.5rem 1rem !important;
    height: auto !important;
    /*border-radius: .25rem .25rem 0 0 !important;*/
    font-family: sans-serif !important;
    color: #fff !important;
    background: #252936 !important;
    cursor: grab;
    border-radius: 10px 10px 0 0 !important;
}

#pop-scroll .lFU1,
#pop-scroll .lFU2,
#pop-scroll #submitForm {
    /*display: flex;*/
    /*flex-direction: row;*/
    /*align-items: center;*/
}

#pop-scroll input#name,
#pop-scroll input#email,
#pop-scroll input#chatText {
    padding: 0.5rem 4rem 0.5rem 0.5rem !important;
    border-radius: 0.25rem !important;
    border: 1px Solid #313748;
    margin: 0 !important;
    width: 100% !important;
    transition: border-color 0.3s Linear;
    font-size: 0.9rem;
    background: #252936 !important;
    color: #fff !important;
}

#pop-scroll input:focus {
    border-color: #3f475e !important;
}

#pop-scroll input.blueButton,
#pop-scroll span.loadFileBut {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    width: auto;
    height: 100%;
    padding: 0.25rem 0.5rem !important;
    transition: opacity 0.3s Linear !important;
    font-size: 0.9rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.115rem !important;
    background: #313748 !important;
    border: 1px Solid #313748 !important;
    cursor: pointer;
    opacity: 1;
    text-align: center;
}

#pop-scroll input.blueButton {
    border-radius: 0 0.25rem 0.25rem 0 !important;
}

#pop-scroll span.loadFileBut {
    right: 2.5rem;
}

#pop-scroll span.loadFileBut svg {
    top: 3px !important;
}

#pop-scroll input.blueButton:hover,
#pop-scroll span.loadFileBut:hover {
    opacity: 0.9 !important;
}

#pop-scrollB {
    height: auto;
    padding: 0.25rem !important;
    background-color: #252936 !important;
}

#pop-scroll-up,
#pop-scroll .ntdu {
    display: none !important;
}

/* Messages */
#pop-scroll .chat {
    display: flex !important;
    padding: 5px 0 10px !important;
    justify-content: right !important;
}

#pop-scroll .chat.redU {
    display: flex !important;
    padding: 5px 0 10px !important;
    justify-content: left !important;
}

#pop-scroll .chat .text {
    display: inline-block;
    padding: 0.5rem !important;
    font-size: 13px !important;
    overflow: hidden;
    vertical-align: top;
    width: auto !important;
    max-width: 250px !important;
    background: #0084ff !important;
    line-height: 13px !important;
    border-radius: 0.5rem !important;
    text-shadow: none !important;
}

#pop-scroll .chat.redU .text {
    background: #0084ff !important;
    color: #fff !important;
    text-shadow: none !important;
}

#pop-scroll .chat .text div {
    line-height: 0;
}

#pop-scroll .chat .time {
    display: block !important;
    position: absolute !important;
    left: initial !important;
    top: initial !important;
    font-size: 10px !important;
    bottom: -10px !important;
    color: #adb4bd !important;
    text-shadow: none !important;
}

#pop-scroll .chat img {
    line-height: 0;
    margin: 0.5rem 0 0;
    border-radius: 0.25rem;
}

.redU {
    font: inherit !important;
    color: #ffffff !important;
}

#pop-scroll #imglist {
    list-style: none !important;
}

#pop-scroll #imglist li {
    display: flex;
    align-items: center;
    font-size: 11px;
    line-height: 13px;
    padding: 0.25rem 2rem 0.25rem 0;
    word-break: break-word;
}

#pop-scroll #imglist li:before {
    display: none !important;
}

#pop-scroll #imglist li img {
    width: 40px !important;
    height: auto !important;
    border-radius: 0.25rem !important;
    margin: 0 0.5rem 0 0 !important;
}

#pop-scroll #delim {
    position: absolute;
    display: inline-block;
    right: 0 !important;
    font-size: 16px !important;
    font-family: inherit !important;
    cursor: pointer;
    background: #ffc7c7 !important;
    border-radius: 0.25rem !important;
    margin: 0 !important;
    padding: 0.4rem !important;
    line-height: 1 !important;
}

#pop-scroll #delim:before {
    content: "✕";
    color: #df0031;
}

.mrv {
    display: block;
    position: fixed;
    opacity: 1 !important;
    cursor: pointer;
    z-index: 1000 !important;
    transition: opacity 0.15s Linear;
}

.mrvhid {
    opacity: 0 !important;
}

.chat-last-active {
    font-size: 13px;
    color: #73849c;
}

@font-face {
    font-family: "ubnt";
    src: url("./fonts/ubnt.eot?rljs68");
    src: url("./fonts/ubnt.eot?rljs68#iefix") format("embedded-opentype"), url("./fonts/ubnt.ttf?rljs68") format("truetype"), url("./fonts/ubnt.woff?rljs68") format("woff"), url("./fonts/ubnt.svg?rljs68#ubnt") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^=ubnt-icon--], [class*=" ubnt-icon--"] {
    font-family: "ubnt";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.other-products-position a .atComp .fa {
    font-size: 12.5px;
}

.allComp .elComp:nth-child(2) .sravn:hover {
    color: yellow !important;
}

.ubnt-icon--airfiber-11:before {
    content: "\e9c4";
}

.ubnt-icon--unifi-dream-machine-pro:before {
    content: "\e9c3";
}

.ubnt-icon--outlet_us:before {
    content: "\e9c1";
}

.ubnt-icon--usb:before {
    content: "\e9c2";
}

.ubnt-icon--database:before {
    content: "\e9bf";
}

.ubnt-icon--games:before {
    content: "\e9c0";
}

.ubnt-icon--amplifi-alien-logo:before {
    content: "\ea16";
}

.ubnt-icon--unifi-dream-machine:before {
    content: "\ea17";
}

.ubnt-icon--unifi-lte:before {
    content: "\ea18";
}

.ubnt-icon--USW-Flex:before {
    content: "\ea15";
}

.ubnt-icon--edgepower-54-logo:before {
    content: "\ea14";
}

.ubnt-icon--USW-Industrial:before {
    content: "\ea13";
}

.ubnt-icon--edgepower-24-logo:before {
    content: "\ea12";
}

.ubnt-icon--u-fiber-wifi:before {
    content: "\ea11";
}

.ubnt-icon--UniFi-XG-6poe:before {
    content: "\ea10";
}

.ubnt-icon--u-fiber-ae:before {
    content: "\ea0f";
}

.ubnt-icon--unifi-hd-inwall:before {
    content: "\ea0e";
}

.ubnt-icon--unifi-protect:before {
    content: "\ea0d";
}

.ubnt-icon--logo-lockup-main:before {
    content: "\ea0c";
}

.ubnt-icon--edgeswitch-16xg-new:before {
    content: "\ea04";
}

.ubnt-icon--edgeswitch-12-fiber-new:before {
    content: "\ea05";
}

.ubnt-icon--edgeswitch-10x:before {
    content: "\ea06";
}

.ubnt-icon--edgeswitch-10xp:before {
    content: "\ea07";
}

.ubnt-icon--edgeswitch-8-150w-new:before {
    content: "\ea08";
}

.ubnt-icon--edgeswitch:before {
    content: "\ea09";
}

.ubnt-icon--edgerouter-10x:before {
    content: "\ea0a";
}

.ubnt-icon--edgerouter-12:before {
    content: "\ea0b";
}

.ubnt-icon--fiber-poe-g2:before {
    content: "\ea00";
}

.ubnt-icon--unifi-led-logo:before {
    content: "\ea03";
}

.ubnt-icon--unifi-led:before {
    content: "\ea02";
}

.ubnt-icon--airos-7:before {
    content: "\ea01";
}

.ubnt-icon--lite-ap-ac:before {
    content: "\e9ff";
}

.ubnt-icon--ufiber-olt:before {
    content: "\e94f";
}

.ubnt-icon--unifi_video_good:before {
    content: "\e9fe";
}

.ubnt-icon--amplifi-logo:before {
    content: "\e9fd";
}

.ubnt-icon--unifi-basestation-xg:before {
    content: "\e9fc";
}

.ubnt-icon--horn-5:before {
    content: "\e9fb";
}

.ubnt-icon--unifi-security-gateway-xg8:before {
    content: "\e9fa";
}

.ubnt-icon--bullet-ac:before {
    content: "\e9f9";
}

.ubnt-icon--unifi-nano-hd:before {
    content: "\e9f8";
}

.ubnt-icon--u-fiber-olt-4:before {
    content: "\e9f7";
}

.ubnt-icon--u-fiber-loco:before {
    content: "\e9f6";
}

.ubnt-icon--edgerouter-6p:before {
    content: "\e9f4";
}

.ubnt-icon--edgeswitch-xp:before {
    content: "\e9f3";
}

.ubnt-icon--airfiber-5xhd:before {
    content: "\e9f2";
}

.ubnt-icon--unifi-hd:before {
    content: "\e9f1";
}

.ubnt-icon--uniFi-video-3g-pro:before {
    content: "\e9f5";
}

.ubnt-icon--ltu:before {
    content: "\e9f0";
}

.ubnt-icon--u-logo-ltu:before {
    content: "\e9ef";
}

.ubnt-icon--unms-mobile-black:before {
    content: "\e9ed";
}

.ubnt-icon--prism-ap-antenna:before {
    content: "\e9ee";
}

.ubnt-icon--NanoBeam-AC2:before {
    content: "\e9ec";
}

.ubnt-icon--nanostation-ac-loco:before {
    content: "\e9eb";
}

.ubnt-icon--wifi-3:before {
    content: "\e9ea";
}

.ubnt-icon--EdgeRouter-4:before {
    content: "\e9e9";
}

.ubnt-icon--UniFi-XG:before {
    content: "\e9e3";
}

.ubnt-icon--UniFi-XG-gateway:before {
    content: "\e9e4";
}

.ubnt-icon--UniFi-XG-mesh:before {
    content: "\e9e5";
}

.ubnt-icon--UniFi-XG-server:before {
    content: "\e9e6";
}

.ubnt-icon--UniFi-XG-stadium:before {
    content: "\e9e7";
}

.ubnt-icon--UniFi-XG-switch:before {
    content: "\e9e8";
}

.ubnt-icon--aircube:before {
    content: "\e980";
}

.ubnt-icon--airmax-ac-m-gpssync:before {
    content: "\e9bc";
}

.ubnt-icon--bypass-proxys-and-termials:before {
    content: "\e9bd";
}

.ubnt-icon--business:before {
    content: "\e9be";
}

.ubnt-icon--file-transfer:before {
    content: "\e9c6";
}

.ubnt-icon--instant-messaging:before {
    content: "\e9d4";
}

.ubnt-icon--mail-and-collaboration:before {
    content: "\e9d5";
}

.ubnt-icon--network-management:before {
    content: "\e9d6";
}

.ubnt-icon--network-protocols:before {
    content: "\e9d7";
}

.ubnt-icon--p2p:before {
    content: "\e9d8";
}

.ubnt-icon--private-protocols:before {
    content: "\e9d9";
}

.ubnt-icon--remote-access-terminals:before {
    content: "\e9da";
}

.ubnt-icon--security-update:before {
    content: "\e9db";
}

.ubnt-icon--social-network:before {
    content: "\e9dc";
}

.ubnt-icon--stock-market:before {
    content: "\e9dd";
}

.ubnt-icon--streaming-media:before {
    content: "\e9de";
}

.ubnt-icon--unknown:before {
    content: "\e9df";
}

.ubnt-icon--voice-over-IP:before {
    content: "\e9e0";
}

.ubnt-icon--web-im:before {
    content: "\e9e1";
}

.ubnt-icon--web:before {
    content: "\e9e2";
}

.ubnt-icon--unifi-elite2:before {
    content: "\e9bb";
}

.ubnt-icon--airfiber-5-new:before {
    content: "\e9b4";
}

.ubnt-icon--airfiber-11fx-new:before {
    content: "\e9b5";
}

.ubnt-icon--airfiber-24hd-new:before {
    content: "\e9b6";
}

.ubnt-icon--airfiber-24-new-new:before {
    content: "\e9b7";
}

.ubnt-icon--airfiber-nxn-new:before {
    content: "\e9b8";
}

.ubnt-icon--airfiber-x-antenna-new:before {
    content: "\e9b9";
}

.ubnt-icon--airfiber-x-new-new:before {
    content: "\e9ba";
}

.ubnt-icon--EdgePoint-new:before {
    content: "\e99b";
}

.ubnt-icon--EdgeRouter-LITE-new:before {
    content: "\e99c";
}

.ubnt-icon--EdgeRouter-new:before {
    content: "\e99d";
}

.ubnt-icon--EdgeRouter-PoE-new:before {
    content: "\e99e";
}

.ubnt-icon--EdgeRouter-PRO-new:before {
    content: "\e99f";
}

.ubnt-icon--EdgeRouter-X-new:before {
    content: "\e9a0";
}

.ubnt-icon--edgeswitch-lite-new:before {
    content: "\e9a1";
}

.ubnt-icon--EdgeSwitch-new:before {
    content: "\e9a2";
}

.ubnt-icon--airGrid-M-new:before {
    content: "\e9a3";
}

.ubnt-icon--airMAX-Omni-new:before {
    content: "\e9a4";
}

.ubnt-icon--airMAX-Sector-new:before {
    content: "\e9a5";
}

.ubnt-icon--airPRISM-new:before {
    content: "\e9a6";
}

.ubnt-icon--crm-point-new:before {
    content: "\e9a7";
}

.ubnt-icon--IsoBeam-new:before {
    content: "\e9a8";
}

.ubnt-icon--litebeam-ac-new:before {
    content: "\e9a9";
}

.ubnt-icon--litebeam-m5-new:before {
    content: "\e9aa";
}

.ubnt-icon--NanoBeam-M-new:before {
    content: "\e9ab";
}

.ubnt-icon--NanoBridge-M-new:before {
    content: "\e9ac";
}

.ubnt-icon--NanoStation-M-new:before {
    content: "\e9ad";
}

.ubnt-icon--powerbeam-new:before {
    content: "\e9ae";
}

.ubnt-icon--rocket-ac-new:before {
    content: "\e9af";
}

.ubnt-icon--RocketDish-AC-new:before {
    content: "\e9b0";
}

.ubnt-icon--rocketdish-lw-new:before {
    content: "\e9b1";
}

.ubnt-icon--RocketDish-new:before {
    content: "\e9b2";
}

.ubnt-icon--rocket-M-new:before {
    content: "\e9b3";
}

.ubnt-icon--UniFi-AC-new:before {
    content: "\e99a";
}

.ubnt-icon--airGateway-new:before {
    content: "\e985";
}

.ubnt-icon--edgepower-logo-new:before {
    content: "\e986";
}

.ubnt-icon--fiber-poe-accessory-new:before {
    content: "\e987";
}

.ubnt-icon--PoE-adapters-new:before {
    content: "\e988";
}

.ubnt-icon--powercable-logo-new:before {
    content: "\e989";
}

.ubnt-icon--TOUGHCable-new:before {
    content: "\e98a";
}

.ubnt-icon--TOUGHSwitch-new:before {
    content: "\e98b";
}

.ubnt-icon--UniFi-AP-AC-EDU-new:before {
    content: "\e98c";
}

.ubnt-icon--UniFi-AP-AC-Lite-new:before {
    content: "\e98d";
}

.ubnt-icon--UniFi-AP-AC-LR-new:before {
    content: "\e98e";
}

.ubnt-icon--UniFi-AP-AC-PRO-new:before {
    content: "\e98f";
}

.ubnt-icon--UniFi-AP-new:before {
    content: "\e990";
}

.ubnt-icon--UniFi-AP-Outdoor-new:before {
    content: "\e991";
}

.ubnt-icon--unifi-cloud-key-new:before {
    content: "\e992";
}

.ubnt-icon--unifi-security-gateway-new:before {
    content: "\e993";
}

.ubnt-icon--unifi-security-gateway-pro-new:before {
    content: "\e994";
}

.ubnt-icon--unifi-switch-8-150w-new:before {
    content: "\e995";
}

.ubnt-icon--unifi-switch-8-new:before {
    content: "\e996";
}

.ubnt-icon--unifi-switch-16-150w-new:before {
    content: "\e997";
}

.ubnt-icon--UniFi-Switch-new:before {
    content: "\e998";
}

.ubnt-icon--unifi-voip-phone-new:before {
    content: "\e999";
}

.ubnt-icon--unifi-antenna:before {
    content: "\e984";
}

.ubnt-icon--uniFi-video-3g-micro:before {
    content: "\e983";
}

.ubnt-icon--nanoswitch:before {
    content: "\e982";
}

.ubnt-icon--unifi-ac-shd:before {
    content: "\e981";
}

.ubnt-icon--pause:before {
    content: "\e97a";
}

.ubnt-icon--pause-circle:before {
    content: "\e97b";
}

.ubnt-icon--play-3:before {
    content: "\e97c";
}

.ubnt-icon--play-circle:before {
    content: "\e97d";
}

.ubnt-icon--stop:before {
    content: "\e97e";
}

.ubnt-icon--stop-circle:before {
    content: "\e97f";
}

.ubnt-icon--prism-ap:before {
    content: "\e979";
}

.ubnt-icon--airMAX-AC-gen2:before {
    content: "\e978";
}

.ubnt-icon--unifi_server:before {
    content: "\e977";
}

.ubnt-icon--PowerModule:before {
    content: "\e976";
}

.ubnt-icon--network_ptmp:before {
    content: "\e970";
}

.ubnt-icon--network_ptp:before {
    content: "\e971";
}

.ubnt-icon--network_rural:before {
    content: "\e972";
}

.ubnt-icon--network_urban:before {
    content: "\e973";
}

.ubnt-icon--network_video:before {
    content: "\e974";
}

.ubnt-icon--network_woodland:before {
    content: "\e975";
}

.ubnt-icon--isostation-m5:before {
    content: "\e96f";
}

.ubnt-icon--gps-sync:before {
    content: "\e96e";
}

.ubnt-icon--u-fiber-nano-g:before {
    content: "\e96d";
}

.ubnt-icon--ufiber:before {
    content: "\e96c";
}

.ubnt-icon--aircube-logo:before {
    content: "\e969";
}

.ubnt-icon--configuration:before {
    content: "\e96a";
}

.ubnt-icon--site_survey:before {
    content: "\e96b";
}

.ubnt-icon--u-installer:before {
    content: "\e968";
}

.ubnt-icon--rocket-prism-ac:before {
    content: "\e967";
}

.ubnt-icon--unifi-video-camer-g3:before {
    content: "\e964";
}

.ubnt-icon--unifi-video-camer-g3-dome:before {
    content: "\e965";
}

.ubnt-icon--unifi-video-nvr-v2:before {
    content: "\e966";
}

.ubnt-icon--unifi-ac-inwall:before {
    content: "\e963";
}

.ubnt-icon--edgerouter-new:before {
    content: "\e961";
}

.ubnt-icon--edgerouter-x-new:before {
    content: "\e962";
}

.ubnt-icon--unifi-elite:before {
    content: "\e960";
}

.ubnt-icon--hotspot:before {
    content: "\e95f";
}

.ubnt-icon--isostation:before {
    content: "\e957";
}

.ubnt-icon--isostation-ac:before {
    content: "\e958";
}

.ubnt-icon--litebeam-gen2:before {
    content: "\e959";
}

.ubnt-icon--nanobeam-gen2:before {
    content: "\e95a";
}

.ubnt-icon--nanostation-ac:before {
    content: "\e95b";
}

.ubnt-icon--powerbeam-gen2:before {
    content: "\e95c";
}

.ubnt-icon--prismstation-ac:before {
    content: "\e95d";
}

.ubnt-icon--rocket-prism-gen2:before {
    content: "\e95e";
}

.ubnt-icon--performance:before {
    content: "\e954";
}

.ubnt-icon--multi-user:before {
    content: "\e955";
}

.ubnt-icon--clients-plus:before {
    content: "\e956";
}

.ubnt-icon--edgerouter-infinity:before {
    content: "\e953";
}

.ubnt-icon--unifi-ac-hd:before {
    content: "\e951";
}

.ubnt-icon--u-nms:before {
    content: "\e952";
}

.ubnt-icon--switch-ubnt:before {
    content: "\e950";
}

.ubnt-icon--nano-g:before {
    content: "\e94e";
}

.ubnt-icon--alert-1:before {
    content: "\e945";
}

.ubnt-icon--backup:before {
    content: "\e946";
}

.ubnt-icon--client:before {
    content: "\e947";
}

.ubnt-icon--clients:before {
    content: "\e948";
}

.ubnt-icon--console:before {
    content: "\e949";
}

.ubnt-icon--endpoints:before {
    content: "\e94a";
}

.ubnt-icon--log:before {
    content: "\e94b";
}

.ubnt-icon--sites:before {
    content: "\e94c";
}

.ubnt-icon--statistics-1:before {
    content: "\e94d";
}

.ubnt-icon--antenna:before {
    content: "\e944";
}

.ubnt-icon--stats-dotted:before {
    content: "\e943";
}

.ubnt-icon--legacy:before {
    content: "\e942";
}

.ubnt-icon--unifi-switch-8:before {
    content: "\e941";
}

.ubnt-icon--rotate-left:before {
    content: "\e93f";
}

.ubnt-icon--rotate-right:before {
    content: "\e940";
}

.ubnt-icon--file-picture:before {
    content: "\e93e";
}

.ubnt-icon--u-mobile:before {
    content: "\e93d";
}

.ubnt-icon--u-fiber:before {
    content: "\e93c";
}

.ubnt-icon--unifi-mesh:before {
    content: "\e93a";
}

.ubnt-icon--unifi-switch-16xg:before {
    content: "\e93b";
}

.ubnt-icon--edgecontrol-logo:before {
    content: "\e934";
}

.ubnt-icon--unms:before {
    content: "\e939";
}

.ubnt-icon--airfiber-11fx:before {
    content: "\e937";
}

.ubnt-icon--collapse:before {
    content: "\e936";
}

.ubnt-icon--close:before {
    content: "\e935";
}

.ubnt-icon--expand:before {
    content: "\e938";
}

.ubnt-icon--powercable-logo:before {
    content: "\e932";
}

.ubnt-icon--edgepower-logo:before {
    content: "\e933";
}

.ubnt-icon--enhance:before {
    content: "\e931";
}

.ubnt-icon--unifi-switch-poe:before {
    content: "\e930";
}

.ubnt-icon--edgeswitch-8-150w:before {
    content: "\e92c";
}

.ubnt-icon--unifi-app:before {
    content: "\e92d";
}

.ubnt-icon--unifi-edu-app:before {
    content: "\e92e";
}

.ubnt-icon--unifi-video-app:before {
    content: "\e92f";
}

.ubnt-icon--aircontrol:before {
    content: "\e929";
}

.ubnt-icon--airLink:before {
    content: "\e92a";
}

.ubnt-icon--airOS-mobile:before {
    content: "\e92b";
}

.ubnt-icon--air-fiber-edge-max:before {
    content: "\e926";
}

.ubnt-icon--sun2:before {
    content: "\e927";
}

.ubnt-icon--uniFi-video-3g:before {
    content: "\e928";
}

.ubnt-icon--u-crm:before {
    content: "\e925";
}

.ubnt-icon--restart:before {
    content: "\e924";
}

.ubnt-icon--guest-wired:before {
    content: "\e91e";
}

.ubnt-icon--guest-wireless:before {
    content: "\e91f";
}

.ubnt-icon--guest:before {
    content: "\e920";
}

.ubnt-icon--user-wired:before {
    content: "\e921";
}

.ubnt-icon--user-wireless:before {
    content: "\e922";
}

.ubnt-icon--user:before {
    content: "\e923";
}

.ubnt-icon--u-crm-billing:before {
    content: "\e91d";
}

.ubnt-icon--bars:before {
    content: "\e918";
}

.ubnt-icon--bluetooth-oval:before {
    content: "\e919";
}

.ubnt-icon--box-archive:before {
    content: "\e91a";
}

.ubnt-icon--microwave:before {
    content: "\e91b";
}

.ubnt-icon--tone:before {
    content: "\e91c";
}

.ubnt-icon--unifi-switch-8-150w:before {
    content: "\e916";
}

.ubnt-icon--unifi-switch-16-150w:before {
    content: "\e917";
}

.ubnt-icon--edgeswitch-12-fiber:before {
    content: "\e915";
}

.ubnt-icon--unifi-ap-in-wall:before {
    content: "\e913";
}

.ubnt-icon--fiber-poe-accessory:before {
    content: "\e914";
}

.ubnt-icon--edgeswitch-16xg:before {
    content: "\e911";
}

.ubnt-icon--edgeswitch-12f-150w:before {
    content: "\e912";
}

.ubnt-icon--ap-unifi:before {
    content: "\e910";
}

.ubnt-icon--filter-fill:before {
    content: "\e90e";
}

.ubnt-icon--filter:before {
    content: "\e90f";
}

.ubnt-icon--ul-logo:before {
    content: "\e90c";
}

.ubnt-icon--bluetooth:before {
    content: "\e90d";
}

.ubnt-icon--airgateway-ins:before {
    content: "\e90b";
}

.ubnt-icon--unifi-security-gateway-pro:before {
    content: "\e90a";
}

.ubnt-icon--lens-correction:before {
    content: "\e909";
}

.ubnt-icon--airmagic:before {
    content: "\e907";
}

.ubnt-icon--unifi-ap-ac-in-wall:before {
    content: "\e908";
}

.ubnt-icon--reset:before {
    content: "\e905";
}

.ubnt-icon--isp:before {
    content: "\e906";
}

.ubnt-icon--denoise:before {
    content: "\e900";
}

.ubnt-icon--hue:before {
    content: "\e901";
}

.ubnt-icon--aemode:before {
    content: "\e902";
}

.ubnt-icon--sharpness:before {
    content: "\e903";
}

.ubnt-icon--clipboard:before {
    content: "\e904";
}

.ubnt-icon--stamp:before {
    content: "\e803";
}

.ubnt-icon--map-pins:before {
    content: "\e802";
}

.ubnt-icon--rocket5ac-prism-01:before {
    content: "\e800";
}

.ubnt-icon--airfiber-nxn:before {
    content: "\e801";
}

.ubnt-icon--litebeam-ac:before {
    content: "\e7c2";
}

.ubnt-icon--litebeam-m5:before {
    content: "\e7a2";
}

.ubnt-icon--sunlink:before {
    content: "\e7c0";
}

.ubnt-icon--sunmax:before {
    content: "\e7c1";
}

.ubnt-icon--panels:before {
    content: "\e7be";
}

.ubnt-icon--dc-power:before {
    content: "\e7bf";
}

.ubnt-icon--crm-point:before {
    content: "\e7bd";
}

.ubnt-icon--controller:before {
    content: "\e7bb";
}

.ubnt-icon--cloud-key:before {
    content: "\e7bc";
}

.ubnt-icon--unifi-controller:before {
    content: "\e7ba";
}

.ubnt-icon--unifi-cloud-key:before {
    content: "\e7b9";
}

.ubnt-icon--unifi-ac:before {
    content: "\e7b8";
}

.ubnt-icon--crm-control:before {
    content: "\e7b7";
}

.ubnt-icon--organizations-manager:before {
    content: "\e7b6";
}

.ubnt-icon--unifi_ap_ac_edu:before {
    content: "\e7b5";
}

.ubnt-icon--info-fill:before {
    content: "\e7af";
}

.ubnt-icon--eye-fill:before {
    content: "\e7b0";
}

.ubnt-icon--check-circle-fill:before {
    content: "\e7b1";
}

.ubnt-icon--lightning-bolt-fill:before {
    content: "\e7b2";
}

.ubnt-icon--pointer-double-right:before {
    content: "\e7b3";
}

.ubnt-icon--lines-step-up:before {
    content: "\e7b4";
}

.ubnt-icon--innerfeed:before {
    content: "\e6c5";
}

.ubnt-icon--powerbeam-ac:before {
    content: "\e7a3";
}

.ubnt-icon--powerbeam-m5-iso:before {
    content: "\e6d1";
}

.ubnt-icon--powerbeam-ac-iso:before {
    content: "\e765";
}

.ubnt-icon--powerbeam:before {
    content: "\e7a4";
}

.ubnt-icon--fullscreen-exit:before {
    content: "\e7ae";
}

.ubnt-icon--edgeswitch-lite-24:before {
    content: "\e7ab";
}

.ubnt-icon--edgeswitch-lite-48:before {
    content: "\e7ac";
}

.ubnt-icon--edgeswitch-lite:before {
    content: "\e7ad";
}

.ubnt-icon--pencil:before {
    content: "\e6e4";
}

.ubnt-icon--world:before {
    content: "\e7aa";
}

.ubnt-icon--keyboard:before {
    content: "\e7a8";
}

.ubnt-icon--popout:before {
    content: "\e7a9";
}

.ubnt-icon--unifi-ap-ac-pro:before {
    content: "\e7a5";
}

.ubnt-icon--unifi-ap-ac-lr:before {
    content: "\e7a6";
}

.ubnt-icon--unifi-ap-ac-lite:before {
    content: "\e7a7";
}

.ubnt-icon--mobile-phone:before {
    content: "\e79e";
}

.ubnt-icon--signal-offline:before {
    content: "\e79f";
}

.ubnt-icon--sine-wave-alert:before {
    content: "\e7a0";
}

.ubnt-icon--sine-wave-offline:before {
    content: "\e7a1";
}

.ubnt-icon--aircrm-operations-beta:before {
    content: "\e79c";
}

.ubnt-icon--aircrm-operations:before {
    content: "\e79d";
}

.ubnt-icon--edgepoint:before {
    content: "\e79b";
}

.ubnt-icon--arrow-status-high:before {
    content: "\e77d";
}

.ubnt-icon--arrow-status-normal:before {
    content: "\e77e";
}

.ubnt-icon--arrow-status-low:before {
    content: "\e799";
}

.ubnt-icon--arrow-status-critical:before {
    content: "\e79a";
}

.ubnt-icon--edgebox:before {
    content: "\e77c";
}

.ubnt-icon--x-circle:before {
    content: "\e798";
}

.ubnt-icon--precision-alignment-kit:before {
    content: "\e77f";
}

.ubnt-icon--rocketdish-lw:before {
    content: "\e780";
}

.ubnt-icon--isobeam:before {
    content: "\e781";
}

.ubnt-icon--edgerouter-x-sfp:before {
    content: "\e782";
}

.ubnt-icon--edgerouter-x:before {
    content: "\e783";
}

.ubnt-icon--alert-fill:before {
    content: "\e784";
}

.ubnt-icon--minus:before {
    content: "\e785";
}

.ubnt-icon--airfiber-x-antenna:before {
    content: "\e786";
}

.ubnt-icon--airfiber-5x:before {
    content: "\e787";
}

.ubnt-icon--check-circle2:before {
    content: "\e788";
}

.ubnt-icon--airfiber-antenna:before {
    content: "\e789";
}

.ubnt-icon--airfiber-x:before {
    content: "\e78a";
}

.ubnt-icon--email2:before {
    content: "\e78b";
}

.ubnt-icon--network-drive-small:before {
    content: "\e78c";
}

.ubnt-icon--lock-open:before {
    content: "\e78d";
}

.ubnt-icon--lock:before {
    content: "\e78e";
}

.ubnt-icon--lock-positive:before {
    content: "\e78f";
}

.ubnt-icon--lock-alert:before {
    content: "\e790";
}

.ubnt-icon--cloud2:before {
    content: "\e791";
}

.ubnt-icon--airfiber-5t:before {
    content: "\e792";
}

.ubnt-icon--unifi-video-camera-micro:before {
    content: "\e793";
}

.ubnt-icon--eye22:before {
    content: "\e794";
}

.ubnt-icon--apple-outline2:before {
    content: "\e795";
}

.ubnt-icon--desktop-monitor2:before {
    content: "\e796";
}

.ubnt-icon--share-android2:before {
    content: "\e797";
}

.ubnt-icon--airfiber-24hd:before {
    content: "\e755";
}

.ubnt-icon--rocket-ac:before {
    content: "\e77b";
}

.ubnt-icon--arrows-updown-leftright:before {
    content: "\e777";
}

.ubnt-icon--clone-marker:before {
    content: "\e775";
}

.ubnt-icon--creditcard:before {
    content: "\e776";
}

.ubnt-icon--arrow-horizontal-vertical:before {
    content: "\e77a";
}

.ubnt-icon--arrows-diagonal:before {
    content: "\e778";
}

.ubnt-icon--camera:before {
    content: "\e779";
}

.ubnt-icon--cloud-storm:before {
    content: "\e76e";
}

.ubnt-icon--cloud:before {
    content: "\e76f";
}

.ubnt-icon--apple:before {
    content: "\e770";
}

.ubnt-icon--android-solid:before {
    content: "\e771";
}

.ubnt-icon--list-unordered:before {
    content: "\e772";
}

.ubnt-icon--add-simulation:before {
    content: "\e773";
}

.ubnt-icon--layers:before {
    content: "\e774";
}

.ubnt-icon--leaf:before {
    content: "\e763";
}

.ubnt-icon--location-2:before {
    content: "\e764";
}

.ubnt-icon--dollar-sign-plus:before {
    content: "\e766";
}

.ubnt-icon--bookmark-star:before {
    content: "\e767";
}

.ubnt-icon--pdf:before {
    content: "\e768";
}

.ubnt-icon--bookmark:before {
    content: "\e769";
}

.ubnt-icon--flag:before {
    content: "\e76a";
}

.ubnt-icon--printer:before {
    content: "\e76b";
}

.ubnt-icon--tag:before {
    content: "\e76c";
}

.ubnt-icon--documentdouble:before {
    content: "\e76d";
}

.ubnt-icon--airCRM-Billing-beta:before {
    content: "\e75e";
}

.ubnt-icon--billing-app-icon:before {
    content: "\e75f";
}

.ubnt-icon--control-app-icon:before {
    content: "\e760";
}

.ubnt-icon--airCRM-Control-beta:before {
    content: "\e761";
}

.ubnt-icon--airCRM-beta:before {
    content: "\e762";
}

.ubnt-icon--signal:before {
    content: "\e75b";
}

.ubnt-icon--length:before {
    content: "\e75c";
}

.ubnt-icon--radio:before {
    content: "\e75d";
}

.ubnt-icon--chipset:before {
    content: "\e754";
}

.ubnt-icon--chart:before {
    content: "\e756";
}

.ubnt-icon--rx:before {
    content: "\e757";
}

.ubnt-icon--tx:before {
    content: "\e758";
}

.ubnt-icon--chart-signal-1:before {
    content: "\e759";
}

.ubnt-icon--chart-signal-2:before {
    content: "\e75a";
}

.ubnt-icon--sfp-port:before {
    content: "\e74f";
}

.ubnt-icon--shield-check:before {
    content: "\e750";
}

.ubnt-icon--eye:before {
    content: "\e751";
}

.ubnt-icon--unifi-switch:before {
    content: "\e752";
}

.ubnt-icon--trashcan:before {
    content: "\e753";
}

.ubnt-icon--airmax-device-offline:before {
    content: "\e6df";
}

.ubnt-icon--airmax-device:before {
    content: "\e74d";
}

.ubnt-icon--ap-offline:before {
    content: "\e74e";
}

.ubnt-icon--plus:before {
    content: "\e748";
}

.ubnt-icon--airCRM-Market:before {
    content: "\e749";
}

.ubnt-icon--airCRM-Billing:before {
    content: "\e74a";
}

.ubnt-icon--airCRM-Control:before {
    content: "\e74b";
}

.ubnt-icon--airCRM:before {
    content: "\e74c";
}

.ubnt-icon--RocketDish-AC:before {
    content: "\e743";
}

.ubnt-icon--key:before {
    content: "\e744";
}

.ubnt-icon--email:before {
    content: "\e745";
}

.ubnt-icon--login:before {
    content: "\e746";
}

.ubnt-icon--logout:before {
    content: "\e747";
}

.ubnt-icon--ethernet-surge-protector:before {
    content: "\e736";
}

.ubnt-icon--NanoBeam-AC:before {
    content: "\e741";
}

.ubnt-icon--airMAX-AC-Sector:before {
    content: "\e742";
}

.ubnt-icon--unifi-security-gateway:before {
    content: "\e735";
}

.ubnt-icon--header-maximize:before {
    content: "\e60b";
}

.ubnt-icon--header-minimize:before {
    content: "\e60d";
}

.ubnt-icon--chipset-x2:before {
    content: "\e731";
}

.ubnt-icon--android:before {
    content: "\e732";
}

.ubnt-icon--multi-touch:before {
    content: "\e733";
}

.ubnt-icon--shield-checkered:before {
    content: "\e734";
}

.ubnt-icon--calendar-day:before {
    content: "\e737";
}

.ubnt-icon--calendar-week:before {
    content: "\e738";
}

.ubnt-icon--calendar-month:before {
    content: "\e739";
}

.ubnt-icon--dollar-sign-2:before {
    content: "\e73a";
}

.ubnt-icon--arrows-downup:before {
    content: "\e73b";
}

.ubnt-icon--grid:before {
    content: "\e73c";
}

.ubnt-icon--block:before {
    content: "\e73d";
}

.ubnt-icon--auto:before {
    content: "\e73e";
}

.ubnt-icon--manual:before {
    content: "\e73f";
}

.ubnt-icon--lock-2:before {
    content: "\e740";
}

.ubnt-icon--airplay:before {
    content: "\e728";
}

.ubnt-icon--sliders:before {
    content: "\e729";
}

.ubnt-icon--infrared:before {
    content: "\e72a";
}

.ubnt-icon--register:before {
    content: "\e72b";
}

.ubnt-icon--sign-in:before {
    content: "\e72c";
}

.ubnt-icon--flip-horizontal:before {
    content: "\e72d";
}

.ubnt-icon--flip-vertical:before {
    content: "\e72e";
}

.ubnt-icon--rotate:before {
    content: "\e72f";
}

.ubnt-icon--axis:before {
    content: "\e730";
}

.ubnt-icon--unifi-voip-phone:before {
    content: "\e718";
}

.ubnt-icon--diamond:before {
    content: "\e719";
}

.ubnt-icon--target-2:before {
    content: "\e71a";
}

.ubnt-icon--infrared2:before {
    content: "\e71b";
}

.ubnt-icon--saturation:before {
    content: "\e71c";
}

.ubnt-icon--sun:before {
    content: "\e71d";
}

.ubnt-icon--contrast:before {
    content: "\e71e";
}

.ubnt-icon--brightness:before {
    content: "\e71f";
}

.ubnt-icon--magnify-minus:before {
    content: "\e720";
}

.ubnt-icon--magnify-plus:before {
    content: "\e721";
}

.ubnt-icon--camera-record:before {
    content: "\e722";
}

.ubnt-icon--fullscreen:before {
    content: "\e723";
}

.ubnt-icon--trash:before {
    content: "\e724";
}

.ubnt-icon--circle:before {
    content: "\e725";
}

.ubnt-icon--check-circle:before {
    content: "\e726";
}

.ubnt-icon--plus-circle:before {
    content: "\e727";
}

.ubnt-icon--geolocation:before {
    content: "\e717";
}

.ubnt-icon--brain:before {
    content: "\e715";
}

.ubnt-icon--dumbell:before {
    content: "\e716";
}

.ubnt-icon--door-open:before {
    content: "\e6a0";
}

.ubnt-icon--airfiber:before {
    content: "\e69b";
}

.ubnt-icon--unifi:before {
    content: "\e69d";
}

.ubnt-icon--airmax:before {
    content: "\e69e";
}

.ubnt-icon--zero-handoff-roaming:before {
    content: "\e69f";
}

.ubnt-icon--unifi-video:before {
    content: "\e69a";
}

.ubnt-icon--logotype:before {
    content: "\e697";
}

.ubnt-icon--unifi-video-camera-dome:before {
    content: "\e698";
}

.ubnt-icon--airMAX-omni:before {
    content: "\e699";
}

.ubnt-icon--link:before {
    content: "\e68d";
}

.ubnt-icon--NanoBeam-M:before {
    content: "\e68e";
}

.ubnt-icon--logo-lockup:before {
    content: "\e68f";
}

.ubnt-icon--ubnt-logo-u:before {
    content: "\e690";
}

.ubnt-icon--cloud-add:before {
    content: "\e691";
}

.ubnt-icon--UWN:before {
    content: "\e692";
}

.ubnt-icon--UWN-horizontal:before {
    content: "\e693";
}

.ubnt-icon--airGrid-M:before {
    content: "\e694";
}

.ubnt-icon--airMAX-Omni:before {
    content: "\e695";
}

.ubnt-icon--airMAX-Yagi:before {
    content: "\e696";
}

.ubnt-icon--dolly:before {
    content: "\e600";
}

.ubnt-icon--UniFi-Appliance:before {
    content: "\e601";
}

.ubnt-icon--play-2:before {
    content: "\e602";
}

.ubnt-icon--day:before {
    content: "\e603";
}

.ubnt-icon--droplet:before {
    content: "\e604";
}

.ubnt-icon--lightning-bolt:before {
    content: "\e605";
}

.ubnt-icon--thermometer-mid:before {
    content: "\e606";
}

.ubnt-icon--thermometer-low:before {
    content: "\e607";
}

.ubnt-icon--thermometer-high:before {
    content: "\e608";
}

.ubnt-icon--user-legacy:before {
    content: "\e609";
}

.ubnt-icon--bulb:before {
    content: "\e60a";
}

.ubnt-icon--energy-savings:before {
    content: "\e60c";
}

.ubnt-icon--airOSX-billing:before {
    content: "\e60e";
}

.ubnt-icon--airOSX-market:before {
    content: "\e60f";
}

.ubnt-icon--airOSX-control:before {
    content: "\e610";
}

.ubnt-icon--mfi:before {
    content: "\e611";
}

.ubnt-icon--magnifying-glass:before {
    content: "\e612";
}

.ubnt-icon--news:before {
    content: "\e614";
}

.ubnt-icon--phone:before {
    content: "\e615";
}

.ubnt-icon--info:before {
    content: "\e616";
}

.ubnt-icon--dish-angled:before {
    content: "\e617";
}

.ubnt-icon--TOUGHSwitch:before {
    content: "\e618";
}

.ubnt-icon--UniFi-Appliance2:before {
    content: "\e619";
}

.ubnt-icon--play-22:before {
    content: "\e61a";
}

.ubnt-icon--unifi-video-nvr:before {
    content: "\e61b";
}

.ubnt-icon--unifi-video-camera:before {
    content: "\e61c";
}

.ubnt-icon--unifi-video-camera-pro:before {
    content: "\e61d";
}

.ubnt-icon--unifi-video-camera-dome2:before {
    content: "\e61e";
}

.ubnt-icon--PowerBridge-M10:before {
    content: "\e61f";
}

.ubnt-icon--EdgeSwitch:before {
    content: "\e620";
}

.ubnt-icon--arrow-down-4:before {
    content: "\e621";
}

.ubnt-icon--UniFi-AP-Outdoor-Plus:before {
    content: "\e622";
}

.ubnt-icon--arrow-up:before {
    content: "\e623";
}

.ubnt-icon--arrow-down:before {
    content: "\e624";
}

.ubnt-icon--arrows-sort:before {
    content: "\e625";
}

.ubnt-icon--UniFi-AP-Outdoor:before {
    content: "\e626";
}

.ubnt-icon--lightning-bolt2:before {
    content: "\e627";
}

.ubnt-icon--arrow-right-4:before {
    content: "\e628";
}

.ubnt-icon--arrow-left-4:before {
    content: "\e629";
}

.ubnt-icon--arrow-up-4:before {
    content: "\e62a";
}

.ubnt-icon--mSensor:before {
    content: "\e62b";
}

.ubnt-icon--rain:before {
    content: "\e62c";
}

.ubnt-icon--day-night:before {
    content: "\e62d";
}

.ubnt-icon--microphone:before {
    content: "\e62e";
}

.ubnt-icon--snowflake:before {
    content: "\e62f";
}

.ubnt-icon--hard-drive:before {
    content: "\e630";
}

.ubnt-icon--camera-add:before {
    content: "\e631";
}

.ubnt-icon--camera-hd:before {
    content: "\e632";
}

.ubnt-icon--wide-angle:before {
    content: "\e633";
}

.ubnt-icon--asterisk-light:before {
    content: "\e634";
}

.ubnt-icon--document:before {
    content: "\e635";
}

.ubnt-icon--bridge:before {
    content: "\e636";
}

.ubnt-icon--UniFi-AP-Outdoor-5:before {
    content: "\e637";
}

.ubnt-icon--airOSX-market2:before {
    content: "\e638";
}

.ubnt-icon--airOSX-control2:before {
    content: "\e639";
}

.ubnt-icon--airOSX-billing2:before {
    content: "\e63a";
}

.ubnt-icon--pencil-2:before {
    content: "\e63b";
}

.ubnt-icon--calendar-3:before {
    content: "\e63c";
}

.ubnt-icon--arrows-range:before {
    content: "\e63d";
}

.ubnt-icon--wave-frequency:before {
    content: "\e63e";
}

.ubnt-icon--ethernet:before {
    content: "\e63f";
}

.ubnt-icon--ethernet-port:before {
    content: "\e640";
}

.ubnt-icon--play:before {
    content: "\e641";
}

.ubnt-icon--rocket-M:before {
    content: "\e642";
}

.ubnt-icon--rocket-M5-AC:before {
    content: "\e643";
}

.ubnt-icon--airMAX-AC:before {
    content: "\e644";
}

.ubnt-icon--NanoBeam-M5-AC:before {
    content: "\e645";
}

.ubnt-icon--switch:before {
    content: "\e646";
}

.ubnt-icon--box:before {
    content: "\e647";
}

.ubnt-icon--routing:before {
    content: "\e648";
}

.ubnt-icon--phone-3:before {
    content: "\e649";
}

.ubnt-icon--UniFi-VoIP:before {
    content: "\e64a";
}

.ubnt-icon--UniFi-AP:before {
    content: "\e64b";
}

.ubnt-icon--UniFi-AP-PRO:before {
    content: "\e64c";
}

.ubnt-icon--UniFi-AP-LR:before {
    content: "\e64d";
}

.ubnt-icon--UniFi-AP-AC-Outdoor:before {
    content: "\e64e";
}

.ubnt-icon--UniFi-AP-AC:before {
    content: "\e64f";
}

.ubnt-icon--TOUGHSwitch-PoE:before {
    content: "\e650";
}

.ubnt-icon--TOUGHCable:before {
    content: "\e651";
}

.ubnt-icon--airGrid-M2:before {
    content: "\e652";
}

.ubnt-icon--NanoBridge-M:before {
    content: "\e653";
}

.ubnt-icon--NanoBeam-M2:before {
    content: "\e654";
}

.ubnt-icon--mPower:before {
    content: "\e655";
}

.ubnt-icon--mPort:before {
    content: "\e656";
}

.ubnt-icon--RocketDish:before {
    content: "\e657";
}

.ubnt-icon--PowerBridge-M:before {
    content: "\e658";
}

.ubnt-icon--NanoStation-M:before {
    content: "\e659";
}

.ubnt-icon--EdgeRouter-pro:before {
    content: "\e65a";
}

.ubnt-icon--EdgeRouter-poe:before {
    content: "\e65b";
}

.ubnt-icon--EdgeRouter-lite:before {
    content: "\e65c";
}

.ubnt-icon--airfiber-5:before {
    content: "\e65d";
}

.ubnt-icon--airCam-pro:before {
    content: "\e65e";
}

.ubnt-icon--airCam-IR:before {
    content: "\e65f";
}

.ubnt-icon--airCam-IR-Dome:before {
    content: "\e660";
}

.ubnt-icon--EdgeRouter:before {
    content: "\e661";
}

.ubnt-icon--bullet-m:before {
    content: "\e662";
}

.ubnt-icon--airMAX-titanium-sector:before {
    content: "\e663";
}

.ubnt-icon--airMAX-sector:before {
    content: "\e664";
}

.ubnt-icon--airMAX-omni2:before {
    content: "\e665";
}

.ubnt-icon--airGateway:before {
    content: "\e666";
}

.ubnt-icon--rocket-M2:before {
    content: "\e667";
}

.ubnt-icon--PicoStation-M:before {
    content: "\e668";
}

.ubnt-icon--instant-8023af:before {
    content: "\e669";
}

.ubnt-icon--airfiber-24:before {
    content: "\e66a";
}

.ubnt-icon--airMAX-Yagi2:before {
    content: "\e66b";
}

.ubnt-icon--PoE-adapters:before {
    content: "\e66c";
}

.ubnt-icon--universal-arm-bracket:before {
    content: "\e66d";
}

.ubnt-icon--NanoStation-Mount:before {
    content: "\e66e";
}

.ubnt-icon--multilane-rf:before {
    content: "\e66f";
}

.ubnt-icon--doorhang:before {
    content: "\e670";
}

.ubnt-icon--ap:before {
    content: "\e671";
}

.ubnt-icon--questionmark:before {
    content: "\e672";
}

.ubnt-icon--facebook:before {
    content: "\e673";
}

.ubnt-icon--single-airos:before {
    content: "\e674";
}

.ubnt-icon--waterfall:before {
    content: "\e675";
}

.ubnt-icon--HDD:before {
    content: "\e676";
}

.ubnt-icon--airPRISM:before {
    content: "\e677";
}

.ubnt-icon--airmax2:before {
    content: "\e678";
}

.ubnt-icon--airBeam:before {
    content: "\e679";
}

.ubnt-icon--airView:before {
    content: "\e67a";
}

.ubnt-icon--current:before {
    content: "\e67b";
}

.ubnt-icon--pamphlet:before {
    content: "\e67c";
}

.ubnt-icon--datasheet:before {
    content: "\e67d";
}

.ubnt-icon--backhaul-single:before {
    content: "\e67e";
}

.ubnt-icon--UWN2:before {
    content: "\e67f";
}

.ubnt-icon--minus-circle:before {
    content: "\e680";
}

.ubnt-icon--arrow-drag:before {
    content: "\e681";
}

.ubnt-icon--blank:before {
    content: "\e682";
}

.ubnt-icon--briefcase:before {
    content: "\e683";
}

.ubnt-icon--audio-on:before {
    content: "\e684";
}

.ubnt-icon--audio-off:before {
    content: "\e685";
}

.ubnt-icon--cast:before {
    content: "\e686";
}

.ubnt-icon--markup:before {
    content: "\e687";
}

.ubnt-icon--rss:before {
    content: "\e688";
}

.ubnt-icon--unifi_video22:before {
    content: "\e689";
}

.ubnt-icon--unifi-security:before {
    content: "\e68a";
}

.ubnt-icon--ellipsis:before {
    content: "\e68b";
}

.ubnt-icon--airOS5:before {
    content: "\e68c";
}

.ubnt-icon--disc-2:before {
    content: "\e69c";
}

.ubnt-icon--certificate:before {
    content: "\e6a1";
}

.ubnt-icon--lock-22:before {
    content: "\e6a2";
}

.ubnt-icon--unlock-2:before {
    content: "\e6a3";
}

.ubnt-icon--L3:before {
    content: "\e6a4";
}

.ubnt-icon--shield:before {
    content: "\e6a5";
}

.ubnt-icon--ubnt-logo-u2:before {
    content: "\e6a6";
}

.ubnt-icon--airOS:before {
    content: "\e6a7";
}

.ubnt-icon--airOS7:before {
    content: "\e6a8";
}

.ubnt-icon--UWN22:before {
    content: "\e6a9";
}

.ubnt-icon--airOSX:before {
    content: "\e6aa";
}

.ubnt-icon--audio-on2:before {
    content: "\e6ab";
}

.ubnt-icon--audio-off2:before {
    content: "\e6ac";
}

.ubnt-icon--asterisk:before {
    content: "\e6ad";
}

.ubnt-icon--logical:before {
    content: "\e6ae";
}

.ubnt-icon--unifi_video222:before {
    content: "\e6af";
}

.ubnt-icon--speedometer:before {
    content: "\e6b0";
}

.ubnt-icon--speedometer-high:before {
    content: "\e6b1";
}

.ubnt-icon--checkboxes:before {
    content: "\e6b2";
}

.ubnt-icon--tools:before {
    content: "\e6b3";
}

.ubnt-icon--wifi-2:before {
    content: "\e6b4";
}

.ubnt-icon--network:before {
    content: "\e6b5";
}

.ubnt-icon--map-2:before {
    content: "\e6b6";
}

.ubnt-icon--record:before {
    content: "\e6b7";
}

.ubnt-icon--camera-2:before {
    content: "\e6b8";
}

.ubnt-icon--book-2:before {
    content: "\e6b9";
}

.ubnt-icon--graph-3:before {
    content: "\e6ba";
}

.ubnt-icon--target:before {
    content: "\e6bb";
}

.ubnt-icon--cast2:before {
    content: "\e6bc";
}

.ubnt-icon--live-view:before {
    content: "\e6bd";
}

.ubnt-icon--users:before {
    content: "\e6be";
}

.ubnt-icon--firmware:before {
    content: "\e6bf";
}

.ubnt-icon--chat-bubbles-2:before {
    content: "\e6c0";
}

.ubnt-icon--logotype2:before {
    content: "\e6c1";
}

.ubnt-icon--ap2:before {
    content: "\e6c2";
}

.ubnt-icon--cube:before {
    content: "\e6c3";
}

.ubnt-icon--cart:before {
    content: "\e6c4";
}

.ubnt-icon--pdf2:before {
    content: "\e6c6";
}

.ubnt-icon--rss2:before {
    content: "\e6c7";
}

.ubnt-icon--excel:before {
    content: "\e6c8";
}

.ubnt-icon--xbrl:before {
    content: "\e6c9";
}

.ubnt-icon--wrench-2:before {
    content: "\e6ca";
}

.ubnt-icon--download-2:before {
    content: "\e6cb";
}

.ubnt-icon--x:before {
    content: "\e6cc";
}

.ubnt-icon--pointer-up:before {
    content: "\e6cd";
}

.ubnt-icon--pointer-right:before {
    content: "\e6ce";
}

.ubnt-icon--pointer-left:before {
    content: "\e6cf";
}

.ubnt-icon--pointer-down:before {
    content: "\e6d0";
}

.ubnt-icon--check-2:before {
    content: "\e613";
}

.ubnt-icon--sort:before {
    content: "\e6d2";
}

.ubnt-icon--send:before {
    content: "\e6d3";
}

.ubnt-icon--search-2:before {
    content: "\e6d4";
}

.ubnt-icon--select-check:before {
    content: "\e6d5";
}

.ubnt-icon--select-unchecked:before {
    content: "\e6d6";
}

.ubnt-icon--firmware-download:before {
    content: "\e6d7";
}

.ubnt-icon--preferences:before {
    content: "\e6d8";
}

.ubnt-icon--menu:before {
    content: "\e6d9";
}

.ubnt-icon--stopwatch:before {
    content: "\e6da";
}

.ubnt-icon--signal-low:before {
    content: "\e6db";
}

.ubnt-icon--power:before {
    content: "\e6dc";
}

.ubnt-icon--refresh-2:before {
    content: "\e6dd";
}

.ubnt-icon--sync:before {
    content: "\e6de";
}

.ubnt-icon--network-drive:before {
    content: "\e6e0";
}

.ubnt-icon--eye2:before {
    content: "\e6e1";
}

.ubnt-icon--envelope:before {
    content: "\e6e2";
}

.ubnt-icon--clock-2:before {
    content: "\e6e3";
}

.ubnt-icon--statistics:before {
    content: "\e6e5";
}

.ubnt-icon--firmware-update:before {
    content: "\e6e6";
}

.ubnt-icon--ap-airos:before {
    content: "\e6e7";
}

.ubnt-icon--backhaul:before {
    content: "\e6e8";
}

.ubnt-icon--house:before {
    content: "\e6e9";
}

.ubnt-icon--alert:before {
    content: "\e6ea";
}

.ubnt-icon--internet-offline:before {
    content: "\e6eb";
}

.ubnt-icon--internet:before {
    content: "\e6ec";
}

.ubnt-icon--backhaul-offline:before {
    content: "\e6ed";
}

.ubnt-icon--question:before {
    content: "\e6ee";
}

.ubnt-icon--statistics-low:before {
    content: "\e6ef";
}

.ubnt-icon--speedometer-low:before {
    content: "\e6f0";
}

.ubnt-icon--link-broken:before {
    content: "\e6f1";
}

.ubnt-icon--gears:before {
    content: "\e6f2";
}

.ubnt-icon--gear-3:before {
    content: "\e6f3";
}

.ubnt-icon--youtube:before {
    content: "\e6f4";
}

.ubnt-icon--unifisecurity:before {
    content: "\e6f5";
}

.ubnt-icon--unifi2:before {
    content: "\e6f6";
}

.ubnt-icon--twitter:before {
    content: "\e6f7";
}

.ubnt-icon--news2:before {
    content: "\e6f8";
}

.ubnt-icon--mfi2:before {
    content: "\e6f9";
}

.ubnt-icon--instagram:before {
    content: "\e6fa";
}

.ubnt-icon--headset2:before {
    content: "\e6fb";
}

.ubnt-icon--graph2:before {
    content: "\e6fc";
}

.ubnt-icon--facebook2:before {
    content: "\e6fd";
}

.ubnt-icon--edgemax:before {
    content: "\e6fe";
}

.ubnt-icon--cap:before {
    content: "\e6ff";
}

.ubnt-icon--buildings:before {
    content: "\e700";
}

.ubnt-icon--box2:before {
    content: "\e701";
}

.ubnt-icon--airmax22:before {
    content: "\e702";
}

.ubnt-icon--airfiber2:before {
    content: "\e703";
}

.ubnt-icon--videos:before {
    content: "\e704";
}

.ubnt-icon--support:before {
    content: "\e705";
}

.ubnt-icon--signout:before {
    content: "\e706";
}

.ubnt-icon--settings:before {
    content: "\e707";
}

.ubnt-icon--profile:before {
    content: "\e708";
}

.ubnt-icon--kb:before {
    content: "\e709";
}

.ubnt-icon--inbox:before {
    content: "\e70a";
}

.ubnt-icon--guides:before {
    content: "\e70b";
}

.ubnt-icon--forums:before {
    content: "\e70c";
}

.ubnt-icon--airos-logo:before {
    content: "\e70d";
}

.ubnt-icon--u:before {
    content: "\e70e";
}

.ubnt-icon--bell:before {
    content: "\e70f";
}

.ubnt-icon--dish:before {
    content: "\e710";
}

.ubnt-icon--chat-bubble-2:before {
    content: "\e711";
}

.ubnt-icon--gear-2:before {
    content: "\e712";
}

.ubnt-icon--acc-logo-2:before {
    content: "\e713";
}

.ubnt-icon--acc-logo:before {
    content: "\e714";
}

/* Стили для модального окна сообщения об ошибке /ajax/mistakes.php
================================================================== */
.mistakes-form strong {
    color: red !important;
}

.mistakes-form {
    width: 100%;
    max-width: 350px;
}

.mistakes-form__title {
    color: #fff;
    font-size: 1.5rem;
    margin: 0;
}

.mistakes-form-block {
    display: flex;
    flex-direction: column;
}

.mistakes-form__field {
    margin: 0 0 0.25rem;
}

.mistakes-form__label {
    margin: 0;
    display: inline;
    position: relative;
    z-index: 1;
    bottom: -12px;
    left: 0.5rem;
    padding: 0 0.25rem;
    font-size: 0.8rem;
    color: #5a6d82 !important;
    background: #252936;
    border-radius: 0.25rem;
}

.mistakes-form__input {
    padding: 0.75rem;
    border: 1px Solid #31384e !important;
    border-radius: 0.25rem !important;
    width: 100% !important;
    max-width: 100% !important;
    line-height: 1.4 !important;
    color: #dae1ec;
    background: transparent !important;
    transition: border 0.3s Linear;
}

.mistakes-form__input:focus {
    border: 1px Solid #0080ff !important;
}

.mistakes-form__submit {
    padding: 0.75rem !important;
    line-height: 1.4 !important;
}

.mistakes-feedback {
    text-align: center;
}

/* Стили для модального окна обратного звонка /ajax/request-call.php
================================================================== */
.call-form {
    width: 100%;
    max-width: 350px;
}

.call-form__title {
    color: #fff;
    font-size: 1.5rem;
    margin: 0;
}

.call-form-block {
    display: flex;
    flex-direction: column;
}

.call-form-errors p {
    margin: 0;
}

.call-form__field {
    margin: 0 0 0.25rem;
}

.call-form__label {
    margin: 0;
    display: inline;
    position: relative;
    z-index: 1;
    bottom: -12px;
    left: 0.5rem;
    padding: 0 0.25rem;
    font-size: 0.8rem;
    color: #5a6d82 !important;
    background: #252936;
    border-radius: 0.25rem;
}

.call-form__input {
    padding: 0.75rem;
    border: 1px Solid #31384e !important;
    border-radius: 0.25rem !important;
    width: 100% !important;
    max-width: 100% !important;
    line-height: 1.4 !important;
    color: #dae1ec;
    background: transparent !important;
    transition: border 0.3s Linear;
}

.call-form__input:focus {
    border: 1px Solid #0080ff !important;
}

.call-form__submit {
    padding: 0.75rem !important;
    line-height: 1.4 !important;
    margin: 1rem 0;
}

.call-feedback {
    text-align: center;
}

.call-form__policy-field {
    font-size: .75rem;
    line-height: 1rem;
    text-align: center;
}

/* Стили для страницы гарантии
================================================================== */
.warranty_element {
    margin-top: 80px;
}

.warranty-form {
    width: 100%;
    max-width: 500px;
    float: left;
    margin-right: 20px;
}

.warranty-form__title {
    color: #fff;
    font-size: 1.5rem;
    margin: 0;
    text-align: center;
}

.warranty-form-block {
    display: flex;
    flex-direction: column;
}

.warranty-form-errors, .warranty-form-success {
    margin: 10px 0;
    text-align: center;
}

.warranty-form-errors {
    color: red;
}

.warranty-form-success {
    color: green;
}

.warranty-form-errors p {
    margin: 0;
}

.warranty-form__field {
    margin: 0 0 0.25rem;
}

.warranty-form__label {
    margin: 0;
    display: inline;
    position: relative;
    z-index: 1;
    bottom: -12px;
    left: 0.5rem;
    padding: 0 0.25rem;
    font-size: 0.8rem;
    color: #5a6d82 !important;
    background: #252936;
    border-radius: 0.25rem;
}

.warranty-form__input {
    padding: 0.75rem;
    border: 1px Solid #31384e !important;
    border-radius: 0.25rem !important;
    width: 100% !important;
    max-width: 100% !important;
    line-height: 1.4 !important;
    color: #dae1ec;
    background: transparent !important;
    transition: border 0.3s Linear;
}

.warranty-form__input:focus {
    border: 1px Solid #0080ff !important;
}

.warranty-form__submit {
    padding: 0.75rem !important;
    line-height: 1.4 !important;
    margin: 1rem 0;
    width: 100%;
}

.warranty-feedback {
    text-align: center;
}

.warranty-form__policy-field {
    font-size: .75rem;
    line-height: 1rem;
    text-align: center;
}

@media (max-width: 821px) {
    .warranty_element {
        margin-top: 50px;
    }

    .warranty-form {
        float: none;
        margin-right: 0;
        max-width: 100%;
    }
}

/* Стили для страницы "Как сделать заказ"
================================================================== */
.buy_container {
    display: flex;
    justify-content: center;
    margin: 30px auto;
}

.buy_element__form {
    width: 30%;
    margin-left: 20px;
    order: 1;
}

.buy_element__text {
    width: 70%;
}

.buy_element__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.buy-form__title {
    color: #fff;
    font-size: 1.5rem;
    margin: 0;
    text-align: center;
}

.buy-form-block {
    display: flex;
    flex-direction: column;
}

.buy-form-errors, .buy-form-success {
    margin: 10px 0;
    text-align: center;
}

.buy-form-errors {
    color: red;
}

.buy-form-success {
    color: green;
}

.buy-form-errors p {
    margin: 0;
}

.buy-form__field {
    margin: 0 0 0.25rem;
}

.buy-form__label {
    margin: 0;
    display: inline;
    position: relative;
    z-index: 1;
    bottom: -12px;
    left: 0.5rem;
    padding: 0 0.25rem;
    font-size: 0.8rem;
    color: #5a6d82 !important;
    background: #252936;
    border-radius: 0.25rem;
}

.buy-form__input {
    padding: 0.75rem;
    border: 1px Solid #31384e !important;
    border-radius: 0.25rem !important;
    width: 100% !important;
    max-width: 100% !important;
    line-height: 1.4 !important;
    color: #dae1ec;
    background: transparent !important;
    transition: border 0.3s Linear;
}

.buy-form__input:focus {
    border: 1px Solid #0080ff !important;
}

.buy-form__submit {
    padding: 0.75rem !important;
    line-height: 1.4 !important;
    margin: 1rem 0;
    width: 100%;
}

.buy-feedback {
    text-align: center;
}

.buy-form__policy-field {
    font-size: .75rem;
    line-height: 1rem;
    text-align: center;
}

@media (max-width: 821px) {
    .buy_element {
        margin-top: 50px;
    }

    .buy-form {
        float: none;
        margin-right: 0;
        max-width: 100%;
    }

    .buy_container {
        flex-direction: column;
    }

    .buy_element__form {
        width: 100%;
        margin-left: 0;
        margin-top: 30px;
    }

    .buy_element__text {
        width: 100%;
    }
}

/* Стили для страницы контактов
================================================================== */
.contacts_main {
    display: flex;
    margin-bottom: 2rem;
    background-color: #22242a;
    border-radius: 1rem;
}

.contacts_secondary {
    display: none;
    max-width: 990px;
    border-radius: .5rem;
    background-color: #22242a;
}

.contacts_map {
    width: 70%;
    order: 2;
}

.contacts_map iframe {
    border-radius: 0 .5rem 0.5rem 0;
}

.contacts_info {
    width: 30%;
    padding: 1rem;
    order: 1;
}

.contacts_info__title {
    font-size: 1.2rem;
    font-weight: bold;
}

.contacts_image {
    height: 400px;
    overflow: hidden;
    padding: 1rem;
}

.contacts_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: .5rem;
}

.contacts_route {
    padding: 1rem;
}

.contacts_element {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
}

.contacts_element__btn {
    width: 160px;
}

.f-button:focus-visible {
    box-shadow: none;
}


@media (max-width: 820px) {
    .contacts_map {
        width: 100%;
        order: 1;
    }

    .contacts_info {
        width: 100%;
        padding: 1rem;
        order: 2;
    }

    .contacts_main {
        display: block;
    }

    .contacts_map iframe {
        border-radius: .5rem;
        height: 400px;
    }

    .contacts_secondary {
        display: none;
        max-width: 500px;
        border-radius: .5rem;
    }
}

/* Стили для страницы истории компании
================================================================== */
.history_element {
    padding: 1rem 2rem;
    position: relative;
    border-radius: 10px;
}

.history_element:nth-child(odd) {
    background-color: #22242a;
}

/* Стили для страницы документов
================================================================== */
.documents_element__title {
    margin: 1rem 0;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Стили для страницы доставки
================================================================== */
.delivery_element {
    line-height: 1.3rem;
}

.delivery_element ul li {
    list-style-type: none;
    position: relative;
    padding-left: 0;
    margin-bottom: 8px;
    line-height: 22px;
}

.delivery_element ul li:before {
    content: "";
    position: relative;
    left: 0;
    top: 11px;
    background: #fff;
    width: 11px;
    height: 1px;
    display: inline-block;
    vertical-align: top;
    margin-right: 10px;
}

.delivery_element hr {
    height: 1px;
    margin: 25px 0;
    border: none;
    border-top: 1px solid #252936;
    border-color: #252936;
}

.delivery_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 2rem;
}

.delivery_item {
    display: flex;
    justify-content: center;
    width: 220px;
    height: 100px;
    background-color: #fff;
    border-radius: .5rem;
    padding: 1rem;

    @media (max-width: 1132px) {
        margin-top: 20px;
    }
}

.delivery_item_img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Стили для страницы техподдержки
================================================================== */
.support_element {}

/* Стили для страницы гарантийного обслуживания
================================================================== */

.warranty_element {}

/* Стили для страницы ремонта
================================================================== */
.repair_element {
    line-height: 1.3rem;
}

.repair_services {
    justify-content: space-around;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 100px;
    margin: 1rem 0;
}

.repair_services_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 1.5rem auto;
}

.repair_services_item {
    flex: 0 0 20%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    justify-self: center;
    border-radius: 1rem;
    padding: 2rem 1rem;
    text-align: center;
    background-color: #22242a;
    transition: background-color .3s linear, color .2s linear;
    line-height: 1.1rem;
    font-size: .9rem;
    color: #aeb0b8;
}

.repair_services__text {
    height: 30px;
    max-width: 70%;
    margin: 14px auto 0 auto;
}

.repair_services_item:hover {
    background-color: #252936;
    color: #fff;
}

.repair_block {
    display: flex;
    border-radius: .5rem;
    margin: 2rem 0;
    background-color: #22242a;
}

.repair_block__img {
    width: 50%;
    height: 400px;
    overflow: hidden;
}

.repair_block:nth-child(even) .repair_block__img {
    border-radius: .5rem 0 0 0.5rem;
}

.repair_block:nth-child(odd) .repair_block__img {
    border-radius: 0 .5rem 0.5rem 0;
    order: 1;
}

.repair_block:nth-child(even) .repair_block__text {
    order: 1;
}

.repair_block__text {
    width: 50%;
    padding: 0 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.repair_block__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 880px) {
    .repair_services_item {
        flex: 0 0 100%;
    }

    .repair_block {
        flex-direction: column;
    }

    .repair_block:nth-child(odd) .repair_block__img, .repair_block:nth-child(even) .repair_block__img {
        width: 100%;
        order: 0;
        border-radius: .5rem .5rem 0 0;
    }

    .repair_block__text {
        width: 100%;
        line-height: 1.8rem;
        padding: 2rem;
    }
}