body {
    overflow-x: hidden;
}
.set__border-padding-margin {
    /* border: 2px solid #FF6A00; */
    border-radius: 10px;
    padding-left: 5px;
    margin-top: 2px;
    margin-left: 10px;
    margin-bottom: 10px;
    background: #9097a2;
}

.title__company {
    padding-left: 2px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.112);
    font-weight: 700;
    font-style: italic;
    color: black;
}

.title__object {
    padding-left: 4px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.112);
    font-weight: 700;
    font-style: italic;
    color: black;
}

.container__first {
    margin: 10px 0px 10px 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* border: 2px solid #00FF21; */
    border-radius: 10px;
    background: #d3d3d3;
}

.container__company {
    display: flex;
    flex-wrap: wrap;
}

.flex__no-wrap {
    flex-wrap: nowrap;
}

.col__28 {
    display: flex;
    /* flex-direction: column; */
    align-items: flex-end;
}

.col__first {
    max-width: 256px;
    max-height: auto;
    margin-top: 5px;
}

.col__text {
    margin: 30px 0;
    padding: 0;
    max-width: 500px;
    max-height: auto;
}

.set__p {
    padding: 10px;
}

.img__box {
    display: block;
    max-width: 100%;
    height: auto;
}

.column_content1 {
    position: relative;
    padding: 2px;
    width: 16.66666%;
    height: 32px;
    border-style: double;
    background-color: rgb(190, 188, 188);
    box-shadow: inset -1px -1px 2px 1px rgba(75, 73, 73, 0.48);
}
.column_content1 p {
    padding: 0;
    margin: 0;
    font-size: 9px;
    color: #000;
}

.column_content2 {
    position: relative;
    padding: 2px;
    margin: 0;
    width: 32%;
    height: 32px;
    border-style: double;
    background-color: rgb(131, 130, 130);
}

.column_light-green {
    box-shadow: inset -6px -4px 9px -2px rgba(5, 252, 63, 0.9);
}

.column_light-red {
    box-shadow: inset -6px -4px 9px -2px rgba(239, 143, 1, 0.9);
}

.shadow-point-green {
    animation: shadow__green 1s infinite alternate;
}

@keyframes shadow__green {
    from {
        box-shadow: inset -6px -4px 9px -2px rgba(165, 212, 176, 0.48);
    }
    to {
        box-shadow: inset -6px -4px 9px -2px rgba(5, 252, 63, 0.48);
    }
}

.shadow-point-red {
    animation: shadow__red 1s infinite alternate;
}

@keyframes shadow__red {
    from {
        box-shadow: inset -6px -4px 9px -2px rgba(165, 212, 176, 0.48);
    }
    to {
        box-shadow: inset -6px -4px 9px -2px rgba(239, 143, 1, 0.9);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container__first {
        display: flex;
        flex-direction: column;
    }
}

.container-rectangle {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

.rectangle ol {
    list-style: none;
}

.rectangle {
    position: relative;
    counter-reset: li;
    list-style: none;
    font: 0.9em "Trebuchet MS", "Lucida Sans";
    padding: 0;
    margin: 0;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.112);
}

.rectangle__a {
    text-align: left;
}

.rectangle__span {
    /*position: absolute;*/
    /*font-weight: 700;*/
    /*top: 25%;*/
    /*left: 90%;*/
    /*right: 0;*/
}

.rectangle a {
    position: relative;
    display: block;
    padding: 0.4em 0.4em 0.4em 0.8em;
    margin: 0.3em 0 0.3em 2.5em;
    background: #d3d4da;
    color: #444;
    text-decoration: none;
    transition: all 0.3s ease-out;
}
.rectangle a:hover {
    background: #dcdde1;
}
.rectangle a:before {
    content: counter(li);
    counter-increment: li;
    position: absolute;
    left: -2.5em;
    top: 50%;
    margin-top: -1em;
    background: #9097a2;
    height: 2em;
    width: 2em;
    line-height: 2em;
    text-align: center;
    font-weight: bold;
}
.rectangle a:after {
    position: absolute;
    content: "";
    border: 0.5em solid transparent;
    left: -1em;
    top: 50%;
    margin-top: -0.5em;
    transition: all 0.3s ease-out;
}
.rectangle a:hover:after {
    left: -0.5em;
    border-left-color: #9097a2;
}

#model_list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 18px;
}
#model_list .model-list__item {
    border-radius: 6px;
    border: 2px solid #343a40;
    overflow: hidden;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.22);
    background: #343a40;
}

#model_list .model-list__title {
    cursor: pointer;
    background: #343a40;
    color: #d6d8d9;
    padding: 2px 16px;
    border-bottom: 2px solid #343a40;
    margin-bottom: -2px;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 3;
}
#model_list .model-list__title span.count {
    background: #ffffff3b;
    width: 1.5em;
    display: inline-block;
    text-align: center;
    margin-left: 0.25em;
}
#model_list .model-list__content {
    display: none;
    gap: 16px;
    overflow-x: auto;
    padding: 16px;
    background: #f4f6f9;
}
#model_list .active .model-list__content {
    display: flex;
}
#model_list .model-list__content__item {
    flex: 0 0 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}
#model_list .item-title {
    font-weight: bold;
    margin-bottom: 6px;
    max-height: 1.5rem;
    -webkit-line-clamp: 1;
    display: box;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}
#model_list .item-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    gap: 10px;
}
#model_list .cols-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#model_list .item-content .cols {
    display: flex;
    flex-direction: column;
    gap: 2px;
    border: 2px solid #ccc;
    border-radius: 3px;
    padding: 4px;
    align-items: center;
    background: #fff;
}
#model_list .item-content .cols .row {
    display: flex;
    height: 16px;
    gap: 2px;
    width: 100%;
}
#model_list .item-content .cols .col {
    padding: 0;
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 9px;
    font-weight: bold;
}
#model_list .item-content .cols .col.spacer {
    flex: 0 0 32%;
}
#model_list .params {
    font-size: 0.85em;
    width: 100%;
}
#model_list .params td {
  background: #fff;
  border: 1px solid #ccc;
  padding: 0 6px;
  white-space: nowrap;
}
#model_list .params td {
  background: #fff;
  border: 1px solid #ccc;
  padding: 0 6px;
  white-space: nowrap;
}
#model_list .params th {
  padding: 0 4px;
  text-align: center;
}
#model_list .params td:last-child {
    text-align: right;
}
.model-list__item.ping-undefined {
    display: none;
}
.show-undefined .model-list__item.ping-undefined {
    display: block;
}
#showUndefined {
    margin-left: 20px;
    padding-top: 20px;
}
#model_list .model-list__content__item.show-ping .item-content .cols {
    display: none;
}
#model_list .ping-data {
    border: 2px solid #ccc;
    border-radius: 3px;
    padding: 4px;
    background: #fff;
    width: 100%;
    flex: 1;
}
#model_list .ping-data h5 {
  position: relative;
  top: -15px;
  font-size: 18px;
}
.ping-svg {
    font-size: 10px;
}
.ping-svg .data-line {
    fill: none;
    stroke: #00ff00;
}
.ping-svg .offline {
    fill: #f00;
    stroke: none;
}
.ping-svg .bg-lines {
    fill: none;
    stroke: #ccc;
}
.ping-svg .bg-lines text {
    stroke: none;
    fill: #343a40;
}
.ping-svg .bg-lines rect {
    fill: #fff;
    stroke: none;
}
#model_list .ping-button {
    border: 1px solid #343a40;
    border-radius: 50%;
    padding: 0 4px;
    font-size: 11px;
    width: 16px;
    height: 16px;
    background: #343a40;
    color: #f4f6f9;
    text-align: center;
    font-weight: 600;
}
#model_list .close-ping,
#model_list .open-ping-modal {
    position: relative;
    left: calc(100% - 3px);
    top: -12px;
    background: #343a40;
    color: #fff;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #343a40;
    z-index: 2;
    padding: 0;
}
#model_list button svg {
    color: #fff;
    width: 10px;
    height: auto;
}
#model_list .open-ping-modal {
    top: calc(100% - 20px);
}
.modal-content .ping-svg {
    width: 800px;
    height: auto;
}
.modal-dialog.lg {
    max-width: 850px;
}
.modal-content .btn-close {
    border: none;
    background: #343a40;
    color: #fff;
    width: 26px;
    height: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    padding-bottom: 4px;
}
