* {
    box-sizing: border-box;
    font-family: ui-sans-serif,system-ui,sans-serif;
}

:root {
    --blue: rgba(10, 73, 199, 1);
    --darkblue: rgba(4, 44, 81, 1);
    --lightgray: rgba(224, 224, 224, 1);
    --midgray: rgba(192, 192, 192, 1);
    --darkwhite: rgba(248, 248, 248, 1);

    --twcBlue: rgba(8, 134, 244, 1);
    --chtrOrange: rgba(255, 139, 50, 1);
    --bhnGreen: rgba(57, 210, 62, 1);
}


textarea {
    field-sizing: content;
}

.area_ardaTables {
    display: flex;
    gap: 1rem;
}

.area_ardaTables table {
    margin-top: 0;
    width: 100%;
}

.flex_gap_1 {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.flex_gap_between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.middle {
    width: 80%;
    margin: auto;
}

#output {
    width: 100%;
}

.wide {
    width: 100%;
}

.cell_split_key {
    color: var(--darkblue);
    font-weight: 500;
}

.divider_hz_white {
    width: 1px;
    height: 1rem;
    border-left: 1px solid white;
}

.divider_hz_blue {
    width: 1px;
    height: 1rem;
    border-left: 1px solid var(--darkblue);
}

.hidden {
    display: none;
}

.icon_copy {
    display: flex;
    align-items: center;    
    color: var(--lightgray);    
}

.icon_copy:hover {
    color: var(--midgray);
}

.table_subHeader_row {
    padding: .2rem .5rem;
    background-color: #F5F5F5;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;    
}

.table_header {
    padding: .5rem 1rem;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;    
}

.row_subHeader {
    color: var(--darkblue);
    font-weight: 500;
}



.test {
    background-color: red;
    color: red;
}


table.rounded-corners {
 /* Change these properties */
 box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
 width: 80%;
 margin: auto;
 --border: 1px solid rgba(0, 0, 0, .25);
 border-radius: 5px;

 /* Don't change these properties */
 border-spacing: 0;
 border-collapse: separate;
 border: var(--border);
 overflow: hidden;
}

table.rounded-corners td {
    font-size: 10pt;
    padding: .25rem .5rem;
}

table.rounded-corners tr:hover:not(.table_subHeader_row) {
    background: var(--darkwhite);
    
} 

/* Apply a border to the right of all but the last column */
table.rounded-corners th:not(:last-child),
table.rounded-corners td:not(:last-child) {
 border-right: var(--border);
}

/* Apply a border to the bottom of all but the last row */
table.rounded-corners>thead>tr:not(:last-child)>th,
table.rounded-corners>thead>tr:not(:last-child)>td,
table.rounded-corners>tbody>tr:not(:last-child)>th,
table.rounded-corners>tbody>tr:not(:last-child)>td,
table.rounded-corners>tfoot>tr:not(:last-child)>th,
table.rounded-corners>tfoot>tr:not(:last-child)>td,
table.rounded-corners>tr:not(:last-child)>td,
table.rounded-corners>tr:not(:last-child)>th,
table.rounded-corners>thead:not(:last-child),
table.rounded-corners>tbody:not(:last-child),
table.rounded-corners>tfoot:not(:last-child) {
 border-bottom: var(--border);
}

th {
    font-weight: 600;
    color: white;
    background-color: #002e58;
}


.disabled {
    color: var(--lightgray);
}

.disabled2 {
    color: rgba(255, 255, 255, 0.5);
}

.icon_expand {
    display: flex;
    align-items: center; 
}

.open {
    display: flex;
    align-items: center; 
    transform: rotate(90deg);
}


.legacy_twc {
    color: white;
    background: var(--twcBlue);
    border-radius: 1rem;
    padding: .2rem .5rem;
}

.legacy_chtr {
    color: white;
    background: var(--chtrOrange);
    border-radius: 1rem;
    padding: .2rem .5rem;
}

.legacy_bhn {
    color: white;
    background: var(--bhnGreen);
    border-radius: 1rem;
    padding: .2rem .5rem;
}

.legacy_default {
    color: var(--darkblue);
    background: white;
    border-radius: 1rem;
    padding: .2rem .5rem;
}

.speed_1 {
    color: rgb(0, 186, 233);
}

.speed_10 {
    color: rgb(255, 219, 17);
}

.speed_default {
    color: rgb(190, 190, 190);
}



/********** LOADER **********/
/* #region */
@keyframes loader_5191 {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.square {
    background: rgb(0, 37, 17);
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -5px;
    margin-left: -5px;
    border-radius: 3px;
}

#sq1 {
    margin-top: -25px;
    margin-left: -25px;
    animation: loader_5191 675ms ease-in-out 0s infinite alternate;
}

#sq2 {
    margin-top: -25px;
    animation: loader_5191 675ms ease-in-out 75ms infinite alternate;
}

#sq3 {
    margin-top: -25px;
    margin-left: 15px;
    animation: loader_5191 675ms ease-in-out 150ms infinite;
}

#sq4 {
    margin-left: -25px;
    animation: loader_5191 675ms ease-in-out 225ms infinite;
}

#sq5 {
    animation: loader_5191 675ms ease-in-out 300ms infinite;
}

#sq6 {
    margin-left: 15px;
    animation: loader_5191 675ms ease-in-out 375ms infinite;
}

#sq7 {
    margin-top: 15px;
    margin-left: -25px;
    animation: loader_5191 675ms ease-in-out 450ms infinite;
}

#sq8 {
    margin-top: 15px;
    animation: loader_5191 675ms ease-in-out 525ms infinite;
}

#sq9 {
    margin-top: 15px;
    margin-left: 15px;
    animation: loader_5191 675ms ease-in-out 600ms infinite;
}  
/* #endregion */
/************************************************************/




















.flex_gapHalf {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.flex_gap1 {
    display: flex;
    align-items: center;
    gap: 1rem;    
}

.flex_spaceBetween {
    display: flex;
    align-items: center;
    justify-content: space-between;    
}


.editIcon {
    color: rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
}

.editIcon:hover {
    color: rgba(0, 0, 0, 1);
}



.input_toggle:disabled {
    color: #aaa;
    background: none;
}


.input_toggle:not(:disabled) {
    outline: none;
    border: 1px solid var(--darkblue);
}

.input_toggle {
    border: 1px solid transparent;
    border-radius: .25rem;
    padding: 0 .5rem;
}

.cell_label {
    color: var(--darkblue);
    font-weight: 500;    
    font-size: 11pt;
}

.margin_0 {
    margin: 0;
    padding: 0 .5rem;
    background: rgba(239, 239, 239, 0.3);
}

.select_toggle {
    padding: 0 .5rem;  

}

.select_toggle:disabled {
    background: transparent;
    border: none;
    -webkit-appearance: none;    
    -moz-appearance: none;  
    user-select: text !important; 
}

.cell_select_icon {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1rem;    
}

.general_w100 {
    text-align: center;
    padding: 0 1rem;
}

.general_flex {
    display: flex;
    align-items: center;
    justify-content: center;

}


.exportCell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .25rem 0;
}

.exportButton {
    text-align: center;
    border: 1px solid rgba(0, 0, 0, .25);
    border-radius: .25rem;
    font-size: 11pt;
    width: 75%;
}

.exportButton:hover {
    background-color: var(--lightgray);
}

.table_ardaO {
 /* Change these properties */
 box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
 margin: auto;
 --border: 1px solid rgba(0, 0, 0, .25);
 border-radius: 5px;

 /* Don't change these properties */
 border-spacing: 0;
 border-collapse: separate;
 border: var(--border);
 overflow: hidden;
}


/*
.table_ardaO td:hover:not(.table_subHeading) {
    background: var(--darkwhite);
    
} 
*/
/* Apply a border to the right of all but the last column */
.table_ardaO th:not(:last-child),
.table_ardaO td:not(:last-child) {
 border-right: var(--border);
}

/* Apply a border to the bottom of all but the last row */
.table_ardaO>thead>tr:not(:last-child)>th,
.table_ardaO>thead>tr:not(:last-child)>td,
.table_ardaO>tbody>tr:not(:last-child)>th,
.table_ardaO>tbody>tr:not(:last-child)>td,
.table_ardaO>tfoot>tr:not(:last-child)>th,
.table_ardaO>tfoot>tr:not(:last-child)>td,
.table_ardaO>tr:not(:last-child)>td,
.table_ardaO>tr:not(:last-child)>th,
.table_ardaO>thead:not(:last-child),
.table_ardaO>tbody:not(:last-child),
.table_ardaO>tfoot:not(:last-child) {
 border-bottom: var(--border);
}

.table_ardaO th {
    font-weight: 600;
    color: white;
    background-color: #002e58;
}
