.tabs {
    width: 100%;
}

.content .tabs {
    margin-bottom: clamp(10px, 2rem, 32px);
}

.tabs .tabs__caption {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    list-style-type: none;
    margin: 0;
    margin-bottom: min(2rem, 30px) !important;
    padding: 0;
}

.tabs .tabs__caption li {
    display: block;
    cursor: pointer;
    text-decoration: underline;
    /*font-size: 13px;*/
    margin-right: 10px;
    margin-bottom: 0 !important;
    padding: min(0.5rem, 16px) min(1rem, 32px) !important;
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 30px;
    user-select: none;
    transition: all .2s ease-in-out;
}

.tabs .tabs__caption li:before {
    display: none !important;
}

.tabs .tabs__caption li:hover {
    border: 1px solid #DEDEDE;
}

.tabs .tabs__caption .active {
    border: 1px solid #ec7111 !important;
    text-decoration: none !important;
    color: #ec7111 !important;
}

.tabs .tabs__content {
    display: none;
}

.tabs .tabs__content.active {
    display: block;
}

#column table {
    border-collapse: collapse;
    max-width: 100%;
    overflow-x: auto;
    margin-bottom: 20px;
    border: 1px solid #DEDEDE;
}


#column table tbody {
    color: #666666;
    text-align: left;
    vertical-align: top;
}

#column table tbody tr {
    border-bottom: 1px solid #DEDEDE;
    transition: all .2s ease-in-out;
}

#column table tbody tr:nth-child(1) {
    /*font-size: 13px !important;*/
    color: #666666;
    background: none !important;
}

#column table tbody tr:nth-child(even) {
    background: #FAFAFA;
}

#column table tbody tr:nth-child(odd) {
    background: none;
}

#column table tbody tr:nth-child(odd):hover,
#column table tbody tr:nth-child(even):hover {
    background: #F6F4FF;
}

#column table tbody tr td {
    padding: 10px;
    /*font-size: 12px;*/
}

table.detail td {
    padding: 8px 5px;
}
table.detail td.title {
    padding-right: 20px;
    font-weight: bold;
}
table.crud {
    width:100%;
    border-collapse:collapse;
    margin: 15px 0;
    font-size: 0.9em;
}
table.crud th {
    border:0;
    font-weight:bold;
    background:linear-gradient(to top, #fff, #ececef);
    text-align:left;
    padding: 8px 5px;
    color: #343d4d;
}
table.crud tr.selected td {
    /*box-shadow: 0 0 3px #ff0000 inset;*/
    background: #969696!important;;
}
table.crud td {
    border-bottom: 1px solid #e4e4e4;
    text-align:left;
    padding: 8px 5px;
}
._showafterload {
    display: none;
}
table.crud tr.green {
    background-color: #EBF8A4;
}
table.crud tr.red {
    background-color: #FFC0CB;
}

table.crud tr:nth-child(even) td {
    /*background-color: #F3F3F3;*/
}
table.crud tr:hover td {
    background-color:#ececef;
}

table.crud a {
    color: #2c496c;
    text-decoration: none;
}

table.crud td a:hover {
    color: red;
}
table.crud td {
    cursor: default;
}
table.crud td._editable {
    cursor: text;
}
table.crud input {
    /*width: 100%;*/
    border: 0;
    font-size: 14px;
    font-style: italic;
}
table.crud select {
    border: 0;
}

