.web .web__img {
    max-height: 352px;
}

.web .web__img img {
    max-height: 352px;
}

.web .popup__menu--body {
    flex-direction: row
}

.input__checkbox--list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.input__checkbox--wrapper>label {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: var(--main-white-color);
}

.input__checkbox--wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.input__checkbox--wrapper input[type=checkbox] {
    -webkit-appearance: none;
    /* For Safari */
    -moz-appearance: none;
    /* For Firefox */
    appearance: none;
    width: 20px;
    min-width: 20px;
    height: 20px;
    border-radius: 2px;
    background-color: #2C2C2C;
    border: 1px solid var(--main-white-color);
    outline: none;
    cursor: pointer;
}

.input__checkbox--wrapper input[type=checkbox]:checked {
    position: relative;
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.input__checkbox--wrapper input[type=checkbox]:checked::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 6px;
    width: 5px;
    height: 10px;
    border: solid var(--main-white-color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}


.popup__menu .tabulator .tabulator-header .tabulator-col {
    min-height: 32px;
    max-height: 32px;
    background-color: var(--main-black-color);
    border: 1px solid #2c2c2c;
    border-radius: 0px;
    padding: 0 10px;
}

.popup__menu .tabulator .tabulator-alert {
    display: none;
}

.popup__menu .tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title {
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
    color: #aaaaaa;
}

.popup__menu .tabulator-row {
    min-height: 32px;
    max-height: 32px;
}

.popup__menu.monitor .popup__menu--wrapper {
    min-width: 660px;
}

.popup__menu .tabulator .tabulator-row .tabulator-cell {
    min-height: 32px;
    max-height: 32px;
    background-color: var(--main-black-color);
    border: 1px solid #2c2c2c;
    border-radius: 0px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: var(--main-white-color);
    padding: 0 10px;
}

.popup__menu .tabulator .tabulator-row .tabulator-cell p {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: var(--main-white-color);
}

.popup__menu .tabulator .tabulator-row .tabulator-cell[irxset="progress"] {
    padding: 0;
}

.main__diagram {
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.diagram__user,
.diagram__product,
.diagram__transfer,
.diagram__server--row .item__server,
.diagram__server--row .item__storage,
.diagram__monitor {
    height: 90px;
    width: 90px;
    min-width: 90px;
    border-radius: 50px 50px 10px 50px;
    border: 3px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.diagram__product {
    background: var(--main-white-color);
    border-radius: 50%;
}

.diagram__user img {
    width: 70px;
    height: 70px;
    object-fit: cover;
}

.diagram__product img {
    width: 60px;
    height: auto;
    object-fit: cover;
}

.main__diagram .horizontal__line {
    min-width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.main__diagram .horizontal__line.short {
    min-width: 30px;
}

.main__diagram .horizontal__line > span{
    content: "";
    position: absolute;
    border-radius: 10px;
    top: 0;
    left: 0;
    width: 10px;
    height: 3px;
    background-color: #efefef;
    animation: lineAnimation 0.8s ease infinite ;
}

.main__diagram .horizontal__line > span:nth-child(2){
    animation-delay: 0.05s;
}

.main__diagram .horizontal__line > span:nth-child(3){
    animation-delay: 0.1s;
}


@keyframes lineAnimation {
    0% {
        transform:translateX(-110%);
    }
    100% {
        transform:translateX(600%);
    }
}

.diagram__explorer {
    height: 90px;
}

.diagram__explorer img {
    width: auto;
    height: 100%;
    object-fit: cover;
}



.diagram__transfer>p,
.diagram__server--row .item__server>p,
.diagram__server--row .item__storage>p,
.diagram__monitor>p {
    background-color: var(--main-white-color);
    border-radius: 50%;
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    color: var(--primary-color);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    min-height: 70px;
}

.diagram__server {
    display: flex;
    flex-direction: column;
    gap: 100px;
    position: relative;
}

.diagram__server.active::before {
    content: "";
    height: calc(100% - 90px);
    width: 3px;
    background-color: var(--primary-color);
    position: absolute;
    top: 45px;
    left: 0;
}

.diagram__server--row {
    display: flex;
    align-items: center;
}

.diagram__transfer {
    padding: 10px;
    border-radius: 50%;
}

.diagram__monitor {
    border-radius: 50%;
    padding: 50%;
}

.diagram__server--row .item__server {
    border-radius: 50%;
    padding: 10px;
}

.diagram__server--row .item__storage {
    border-radius: 10px;
    padding: 10px;
}

.diagram__server--row .item__server>p {
    background-color: #1B1B1B;
    color: var(--main-white-color);
}


.diagram__server--row .item__storage>p {
    background-color: #EE1D36;
    border-radius: 10px;
    color: var(--main-white-color);
}

.vertical__col {
    display: block;
    position: relative;
}

.vertical__col .vertical__line {
    min-width: 3px;
    width: 3px;
    height: 90px;
    background-color: var(--primary-color);
}

.vertical__col .vertical__extra {
    position: absolute;
    top: 93px;
    left: 50%;
    transform: translate(-50%, 0);
    display: flex;
    flex-direction: column;
    align-items: center;
}