#operations .main-area {
    position: relative;
    gap: 100px;
    display: flex;
    justify-content: space-between;
    padding-top: 50px;
    padding-bottom: 50px;
}

#operations .main-area::before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 30px;
    background-color: #fff;
}

#operations-nav {
    display: flex;
    gap: 12px;
}

#operations-nav button {
    appearance: none;
    border: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border: 1px solid #d0d5dd;
    width: 206px;
    height: 73px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    line-height: 1.5;
    background-color: #f9fafb;
    transition: 300ms ease-in-out;
}

#operations-nav button strong {
    font-size: 22px;
}

#operations-nav button:hover,
#operations-nav button:focus,
#operations-nav button.active {
    background-color: #fff;
}

#operations-nav button.active {
    color: var(--c-primary);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

#operations table {
    width: 100%;
}

#map svg {
    max-width: 100%;
    height: auto;
}

.map-info {
    display: inline-flex;
    border: 1px solid #e4e7ec;
    border-radius: 10px;
    gap: 20px;
    padding: 8px 16px;
    margin: 0 0 34px;
    flex-wrap: wrap;
}

.map-info > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-info span {
    display: block;
    width: 22px;
    height: 22px;
    border-radius: 100%;
}

#operations th {
    font-size: 21px;
}

#operations .secondary-table,
#operations .text-sm {
    line-height: 1.3;
}

#operations .secondary-table th {
    font-size: 18px;
    text-align: center;
}

#operations .secondary-table td {
    vertical-align: top;
}

#operations .secondary-table td:first-child {
    vertical-align: middle;
}

#operations .secondary-table .code {
    margin-bottom: 4px;
}

#operations th,
#operations td {
    padding: 17px 5px;
    border-bottom: 1px solid #d0d5dd;
}

#data-info {
    margin-top: 15px;
    padding-left: 5px;
}

#operations .code {
    display: block;
    width: 50px;
    height: 50px;
    font-size: 16px;
    line-height: 51px;
    border-radius: 100%;
    background-color: #ae0e13;
    color: #fff;
    text-align: center;
    font-weight: bold;
}

#operations .code.-b0 {
    background-color: #dc6779;
}
#operations .code.-b1 {
    background-color: #d4465c;
}
#operations .code.-b2 {
    background-color: #c91b34;
}
#operations .code.-b3 {
    background-color: #ae0e13;
}
#operations .code.-t0 {
    background-color: #868686;
}
#operations .code.-t1 {
    background-color: #6C6C6C;
}
#operations .code.-t2 {
    background-color: #4A4A4A;
}
#operations .code.-t3 {
    background-color: #363636;
}
#operations .code.-g0 {
    background-color: #F5B065;
}
#operations .code.-g1 {
    background-color: #F39F45;
}
#operations .code.-g2 {
    background-color: #F1891A;
}
#operations .code.-g3 {
    background-color: #EE7C00;
}

@media (max-width: 991px) {
    #operations .main-area {
        flex-direction: column;
    }

    #operations-headline {
        margin-top: 30px !important;
    }
}

@media (max-width: 767px) {
    .map-info {
        display: block;
    }

    #operations-nav {
        gap: 3px;
    }

    #operations-nav button {
        width: auto;
        height: 43px;
    }

    #operations-nav button strong {
        font-size: 14px;
        white-space: nowrap;
    }
}
