:root {
    --company-color: #2E3192;
    --company-hover-light: #00AEEF;
    --company-hover-dark: #312782;
    --company-color-magenta: #EC00BC;
    --grey-color: #b8bfcf;
    --menu-hover-color: #cdcdcb;
    --dark-color: #1d2935;
    --danger-color: #560d0e;
}

.clearing-actions {
    display: flex;
    flex-direction: column;
}

.clearing-actions-item {
    margin: 10px;
    width: 300px;
}

.clearing-action {
    width: 100%;
}

html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

a,
a:hover,
a:active,
a:focus,
button,
button:hover,
button:focus,
button:active,
input,
input:hover,
input:focus,
input:active,
select,
select:hover,
select:focus,
select:active,
textarea,
textarea:hover,
textarea:focus,
textarea:active {
    outline: none;
}

html {
    font-size: 62.5%; /* Now 10px = 1rem! */
    height: 100%;
}

body {
    position: relative;
    margin: 0;
    padding: 0;
    font-family: "Rubik", sans-serif;
    height: 100%;
}

.center {
    text-align: center;
}

a {
    text-decoration: none;
    color: var(--company-color);
}

/* FORM */
.form__title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--dark-color);
}

.form__title span {
    color: var(--company-color);
}

.form__subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 0.5rem;
    color: var(--grey-color);
}

.form__input-wrapper {
    margin-bottom: 2rem;
}

.form__input-wrapper label {
    font-weight: 500;
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
    display: block;
    color: var(--grey-color);
}

.form__input-wrapper input {
    height: 5.5rem;
    width: 100%;
    border-radius: 0.5rem;
    border: 1px solid #eee;
    padding: 0 1rem;
    font-size: 1.6rem;
    color: #8c8c94;
    font-weight: 500;
    background-color: #f5f5f5;
    transition: all 0.4s;
}

.form__input-wrapper input:focus {
    border-color: var(--company-color);
    background-color: white;
}

.form__input-wrapper button {
    width: 100%;
    border: none;
    background-color: var(--company-color);
    color: white;
    font-weight: 600;
    height: 5.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: all 0.4s;
}

.form__input-wrapper button:hover {
    background-color: var(--company-hover-light);
}

.form__input-wrapper button img {
    width: 2rem;
    height: 2rem;
    margin-right: 1rem;
}

.actions > a.action-edit:hover {
    background-color: var(--company-hover-light);
}

.main-sidebar {
    padding-top: 7rem !important;
    background-color: #1a2632;
    width: 90px;
}

.main-header {
    position: fixed;
    z-index: 15;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 7rem;
    padding: 0 3rem 0 8rem;
    display: flex;
    background-color: #fff;
    -webkit-box-shadow: 0 0 5px rgba(100, 116, 160, .4);
    box-shadow: 0 0 5px rgba(100, 116, 160, .4);
}

.main-header > .navbar {
    color: black;
    background-color: white;
    margin-left: 0;
    width: 100%;
}

.sidebar-toggle {
    display: none !important;
}

#header-logo {
    display: none;
}

.content-wrapper {
    margin-top: 7rem;
    margin-left: 90px;
    padding-bottom: 20px;
    background-color: #f5f5f5;
}

.sidebar-menu {

}

.sidebar-menu > li.active > a {
    background-color: #f5f5f5 !important;
    color: var(--company-color);
}

.sidebar-menu > li > a {
    word-wrap: break-word;
    padding: 10px 8px;
    border: none;
    display: block;
    color: #fff;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
}

.sidebar-menu > li > a:hover {
    background-color: var(--company-hover-light);
    color: var(--company-color);
}

.sidebar-menu > li:hover > a {
    background-color: var(--menu-hover-color);
    color: var(--company-color);
}

.sidebar-menu > li > a > i {
    margin: 4px auto;
    display: block;
}

.sidebar-menu > li > a > span {
    overflow: inherit;
    text-overflow: clip;
    white-space: normal;
}

.sidebar-menu > li > a.regular-menu-link {
    position: relative;
}

.sidebar-menu > li > a.sliding-menu-link {
    position: absolute;
    left: 90px;
    top: 0px;
    width: 130px;
}

.table-responsive {
    width: 100%;
    background-color: #fff !important;
    border-radius: .5rem .5rem .5rem .5rem;
    position: relative;
    -webkit-box-shadow: 0 0 5px rgba(100, 116, 160, .1);
    box-shadow: 0 0 5px rgba(100, 116, 160, .1)
}

.table {
    margin-bottom: 0;
}

.list-pagination {
    margin: 10px 0;
}

body.list .pagination > li > a {
    color: #363b54;
    background-color: inherit;
    text-shadow: 0 0 5px rgba(100, 116, 160, .1);
    padding-right: 0;
}

body.list .pagination > li > span {
    padding-right: 0;
}

body.list .pagination > li > a:hover {
    color: var(--company-hover-dark);
    background-color: inherit;
    text-shadow: 0 0 5px rgba(100, 116, 160, .1);
}

.content-header {
    height: 7.6rem;
    padding: 20px 15px 0 15px;
}

.content-header > div > div > h1.title {
    font-size: medium;
    margin-bottom: -15px;
    color: #363b54;
    background-color: #fff;
    height: 7.1rem;
    width: auto;
    margin-right: .5rem;
    border-radius: 1rem 1rem 0 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    -webkit-box-shadow: 0 -1px 3px rgba(100, 116, 160, .1);
    box-shadow: 0 -1px 3px rgba(100, 116, 160, .1);
    padding: 25px;
    font-weight: bold !important;
}

.content-header > div > div {
    /*width: auto;*/
}

.input-group > input {
    height: 5.5rem;
    width: 38rem !important;
    border-radius: .5rem;
    border: 1px solid #eee;
    padding: 0 4rem;
    font-size: 1.6rem;
    font-weight: 500;
    color: #8c8c94;
}

.input-group-btn {
    float: left;
}

.input-group-btn:hover {
    color: #313131 !important;
}

.input-group-btn > button:active {
    float: left;
    padding: 0 20px !important;
    background: #CCC;
    border: 1px solid transparent;
    border-radius: 4px;
    color: #313131 !important;
    box-shadow: none;
    display: inline-block;
    line-height: 1.42857143;
    opacity: 1;
    outline: none;
    text-align: center;
}

.input-group-btn > button:hover, .input-group-btn > button:focus {
    float: left;
    padding: 0 20px !important;
    background: #CCC;
    border: 1px solid transparent;
    border-radius: 4px;
    box-shadow: none;
    color: #313131 !important;
    display: inline-block;
    line-height: 1.42857143;
    opacity: 1;
    outline: none;
    text-align: center;
}


.button-action > a.action-xero-update {
    height: 5.5rem;
    padding: 15px 30px;
}

.button-action > a.action-new {
    height: 5.5rem;
    padding: 15px 30px;
}

.button-action > a.action-new:hover {
    height: 5.5rem;
    padding: 15px 30px;
    background-color: var(--company-hover-light);
}

.input-group-btn > button {
    height: 5.5rem;
    padding: 0 20px;
    color: #6d6d6d !important;
}

.input-group-btn > button:visited {
    height: 5.5rem;
    padding: 0 20px;
}

.navbar-custom-menu {
    padding: 10px;
}

.main-header .navbar .user-menu .btn {
    color: #bac1d1;
    font-weight: bold;
}

.header-tentacles-logo {
    width: 55px;
    height: 55px;
    position: absolute;
    top: 15px;
    left: 17px;
    color: white;
}

.header-log-out, .header-exit-impersonate {
    color: #bac1d1;
}

.header-log-out:hover, .header-exit-impersonate:hover {
    color: #ff5050 !important;
}

ul.dropdown-menu {
    padding: 15px 0;
}

aside.main-sidebar {
    -webkit-transform: translate(0, 0) !important;
    -ms-transform: translate(0, 0) !important;
    -o-transform: translate(0, 0) !important;
    transform: translate(0, 0) !important;
}

@media only screen and (max-width: 1600px) {
    .input-group > input {
        height: 5.5rem;
        width: 20rem !important
    }
}

@media only screen and (max-width: 1100px) {
    .input-group > input {
        height: 5.5rem;
        width: 20rem !important
    }
}

@media only screen and (max-width: 768px) {
    .content-header {
        height: 17rem;
        padding: 20px 15px 0 15px;
        background-color: #f5f5f5;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .content-header > div > div > h1.title {
        padding: 19px;
        font-size: xx-large;
        background-color: #f5f5f5;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .footer-left {
        display: none;
    }

    .input-group {
        margin-top: 3rem;
    }

    .button-action > a.action-new {
        margin-top: 3rem;
    }

    .input-group > input {
        height: 5.5rem;
        width: 20rem !important
    }
}

.footer-left {
    height: 20px;
    min-width: 500px;
    max-width: 1000px;
    position: absolute;
    bottom: 7px;
    left: 107px;
}

.footer-left > span.divider {
    display: inline-block;
    width: 1px;
    height: 10px;
    background-color: #818181;
}

.footer-left > a {
    color: var(--company-hover-dark);
}

.footer-left > a:hover {
    color: var(--company-color);
}

div.navbar-custom-menu > ul > li > div > ul > li:last-child {
    display: none;
}

.actions > a.action-edit {
    background-color: var(--company-color);
    border-radius: .5rem;
    color: #fff;
    border: none;
    height: 3rem;
    font-weight: 600;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 1rem;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.tentacle-map-coordinates {
    padding: 6px;
    line-height: 20px;
    font-size: large;
}

#tentacle-map {
    max-width: 1000px;
    height: 400px;
    margin: 5px 5px 30px 5px;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-shadow: 0 -1px 3px rgba(100, 116, 160, .1);
    box-shadow: 0 -1px 3px rgba(100, 116, 160, .1);
}

.mapboxgl-popup-content {
    padding: 7px !important;
}

.map-popup > h4 {
    font-size: 14px;
    font-weight: bold;
    margin-top: -1px;
    margin-bottom: 2px;
}

.map-rightclick-notification {
    margin-top: 30px;
    margin-left: 20px;
    font-size: 13px;
    font-weight: bold;
    color: #af625d;
}

.map-rightclick-warning {
    margin-left: 20px;
    font-size: 13px;
    font-weight: bold;
    color: #efb541;
}

.modal-dialog {
    right: auto;
    left: 0;
    width: 600px;
    padding-top: 30px;
    padding-bottom: 30px;
}

.properties-default-changes {
    margin-bottom: 15px;
    margin-top: 10px;
    padding-left: 15px;
    color: darkmagenta;
    font-weight: bold;
}

.properties-default-changes {
    margin-bottom: 15px;
    margin-top: 10px;
    padding-left: 15px;
    color: darkmagenta;
    font-weight: bold;
}

.properties-history-link {
    margin-bottom: 15px;
    margin-top: 10px;
    padding-left: 15px;
}

.properties-history-link a {
    color: darkolivegreen;
}

.property-fallback {
    display: none;
    margin-bottom: 15px;
    margin-top: 10px;
    padding-left: 15px;
    color: darkred;
}

.monitoring-info {
    display: flex;
}

.monitoring-main {
    padding: 30px;
    display: flex;
    gap: 5%;
    justify-content: center;
    flex-wrap: wrap;
}

.monitoring-counts, .monitoring-settings {
    margin-left: 5%;
    margin-bottom: 20px;
    width: 43%;
}
.monitoring-settings.payload-status {
    margin-left: 0;
    margin-bottom: 20px;
    width: 100%;
}
.monitoring-settings.payload-status #network_payload {
    display: flex;
    flex-direction: row;
}

#user_monitoring {
    height: 62px;
    display: flex;
    padding: 10px 20px;
    background: white;
    border-radius: 5px;
    border: #8080804f 1px solid;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.user-monitoring {
    width: auto;
    min-width: 150px;
    max-width: 250px;
    display: inline;
    margin: 0 25px;
}

#user_monitoring > div > label {
    font-size: 18px;
    font-weight: normal;
}

.monitoring-wrapper {
    width: 27%;
    min-width: 380px;
}

.monitoring-wide {
    width: 37%;
    min-width: 400px;
}
.monitoring-extra-wide {
    width: 50%;
    min-width: 500px;
}
.monitoring-extra-extra-wide {
    width: 100%;
    min-width: 500px;
}

.monitoring-title {
    position: absolute;
    top: 90px;
    left: 150px;
}

.monitoring-list {
    margin-right: auto;
    margin-left: auto;
    font-size: 14px;
    line-height: 1.428571429;
    color: #333;
    background-color: #fff;
    border-radius: 5px;
    border: #8080804f 1px solid;
    height: 245px;
    overflow-y: auto;
    overflow-x: hidden;
}

.payload-list {
    margin-right: auto;
    margin-left: auto;
    font-size: 14px;
    line-height: 1.428571429;
    color: #333;
    background-color: #fff;
    border-radius: 5px;
    border: #8080804f 1px solid;
    overflow-x: hidden;
}

.monitoring-results {
    overflow-y: auto;
    overflow-x: hidden;
    height: 490px;
}


.monitoring-extra-extra-wide .monitoring-list {
    height: 540px;
}

.monitoring-stats {
    display: flex;
    padding: 10px 20px;
    background: white;
    border-radius: 5px;
    border: #8080804f 1px solid;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.monitoring-header {
    border-bottom: solid 1px #e0e0e0;
    padding: 14px;
    display: flex;
}

.monitoring-item {
    border-bottom: solid 1px #e0e0e0;
    padding: 14px;
    display: flex;
}

.monitoring-item.disabled {
    opacity: 0.5;
}

.monitoring-item-id {
    min-width: 140px;
}

.monitoring-item-last {
    min-width: 110px !important;
    width: 175px !important;
    display: flex;
    flex-wrap: wrap;
    border-left: solid 2px #f1f1f1;
    padding-left: 20px;
    flex-direction: column;
}

.monitoring-extra-wide .monitoring-item-id {
    width: 140px;
    border-left: solid 2px #f1f1f1;
}
.monitoring-extra-extra-wide .monitoring-item-id {
    width: 140px;
}
.monitoring-item-dealer {
    min-width: 100px;
}
.monitoring-remark {
    font-size: 12px;
    opacity: 0.8;
    width: 100%;
}

.monitoring-item-date {
    margin-left: 20px;
}

.monitoring-item-format {
    min-width: 100%;
}

.monitoring-item-frame {
    display: flex;
    flex-wrap: wrap;
    border-left: solid 2px #f1f1f1;
    padding-left: 15px;
    min-width: 135px;
    flex-direction: column;
}

.monitoring-item-info {
    display: flex;
    flex-wrap: wrap;
    border-left: solid 2px #f1f1f1;
    padding-left: 15px;
    min-width: 120px;
    flex-direction: column;
}

.monitoring-item-remark {
    display: flex;
    flex-wrap: wrap;
    border-left: solid 2px #f1f1f1;
    padding-left: 10px;
    min-width: 250px;
    width: 100%;
}
.monitoring-remark-row {
    width: 100%;
    display: flex;
}
.monitoring-remark-row.border-bottom-remark {
    border-bottom: solid 1px #F5F5F5;
    margin-bottom: 3px;
}
.monitoring-remark-row .col-remark-left {
    text-align: left;
    width: 69%;
}
.monitoring-remark-row .col-remark-right {
    text-align: right;
    width: 29%;
}

.monitoring-remark-input {
    height: 22px;
    border: unset;
    min-width: 230px;
    width: 100%;
}

.monitoring-extra-extra-wide .monitoring-item-info {
    display: flex;
    min-width: 250px;
    width: 250px;
}
.monitoring-item-lqi {
    width: 110px !important;
    min-width: 90px !important;
    border-right: solid 2px #f1f1f1;
    margin-right: 20px;
}

.monitoring-item-dash {
    margin-left: auto;
}

.monitoring-item-btn {
    background: orange;
    color: white;
    padding: 2px 10px;
    border-radius: 7px;
    border: 1px solid darkorange;
}
.monitoring-item-btn-history {
    background-color: lightgrey;
    color: #606060;
    border-color: #606060;
    margin-left: 3px;
}

.monitoring-item-action {
    width: auto;
    padding: 8px 20px;
}

.monitoring-item-error {
    color: red;
    font-weight: bold;
    margin-bottom: 4px;
}

.monitoring-item-golden {
    color: goldenrod;
    font-weight: bold
}

.monitoring-item-green {
    color: #84cb70;
    font-weight: bold
}

.monitoring-item-btn-green {
    background: darkgreen;
    border: 1px solid greenyellow;
}

.monitoring-display-reason-info {
    font-size: 12px;
    font-weight: bold;
    color: #00c0f9;
}

.monitoring-display-reason-warning {
    font-size: 12px;
    font-weight: bold;
    color: #f98e00;
}

.monitoring-display-reason-error {
    font-size: 12px;
    font-weight: bold;
    color: #dc311d;
}

.monitoring-display-reason-previous {
    font-size: 12px;
    font-weight: bold;
    color: rgb(165, 163, 165);
}

.over-max {
    color: #ff5050;
}
.below-min {
    color: #5eb5e8;
}

.fos_user_resetting_reset {
    margin: auto;
    height: 100%;
    width: 100%;
    max-width: 40rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    align-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
}

.fos_user_resetting_reset > div:nth-child(2) {
    position: relative;
    width: 70%;
}

.fos_user_resetting_reset > div:nth-child(2) > input[type=submit] {
    top: -70px;
    position: absolute;
    width: 100%;
    border: none;
    background-color: var(--company-color);
    color: white;
    font-weight: 600;
    height: 5.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: all 0.4s;
}

#fos_user_resetting_form_plainPassword_first, #fos_user_resetting_form_plainPassword_second  {
    height: 5.5rem;
    width: 100%;
    border-radius: 0.5rem;
    border: 1px solid #eee;
    padding: 0 1rem;
    font-size: 1.6rem;
    color: #8c8c94;
    font-weight: 500;
    background-color: #f5f5f5;
    transition: all 0.4s;
}

#fos_user_resetting_form {
    height: 260px;
    width: 80%;
    max-width: 40rem;
    display: block;
    padding: 2rem;
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 10px 40px 0 rgb(62 57 107 / 7%), 0 2px 9px 0 rgb(62 57 107 / 6%);
}

#fos_user_resetting_form > div > label  {
    font-weight: 500;
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
    display: block;
    color: var(--grey-color);
}

.fos_user_resetting_reset > div:nth-child(2) > input[type=submit]:hover {
    background-color: var(--company-hover-light);
}

.dynamicSensingOverlay {
    z-index: 1;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.7);
}

.tentacleVersionValidationSuccess {
    background-color: #9DD12766 !important;
}
.tentacleVersionValidationError {
    background-color: #C2312DC4 !important;
    color: #fff !important;
}
.remark-history-modal-body {
    height: 400px;
    overflow: auto;
}
.remark-history-list {
    list-style: none;
    margin-left: 0;
    overflow-wrap: break-word;
}
.remark-history-list li {
    padding: 0.5rem 1rem;
}
.remark-history-list li:nth-child(even) {
    background-color: #F4F4F4;
}
