.hidden,
.hide {
    display: none;
}

.text-left { text-align: left !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.text-upper { text-transform: uppercase; }
.text-lower { text-transform: lowercase; }
.text-break { overflow-wrap: break-word; word-break: break-all; }

.g-desktop {
    display: none;
}
.g-mobile {
    display: initial;
}
@media (min-width: 768px) {
    .g-desktop {
        display: initial;
    }
    .g-mobile {
        display: none;
    }
}


.form-message.text-scs {
    color: #34c687;
}
.form-message.text-err {
    color: #ec2113;
}



.c-muted {
    color: #747474;
}
.c-scs {
    color: #34c687;
}
.c-err {
    color: #ec2113;
}



.row-scs {
    background-color: #d4edda;
}
.row-err {
    background-color: #f8d7da;
}
.row-wrn {
    background-color: #fff3cd;
}
.row-inf {
    background-color: #cce5ff;
}
.row-grs {
    background-color: #eaeaea;
}
.row-cancel {
    background-clip: #fbeaec;
}
/*
.row-mark-01 {
    background-color: #eaeaea;
}
.row-mark-02 {
    background-color: #ffe9ec;
}
.row-mark-03 {
    background-color: #e5f2ff;
}
.row-mark-04 {
    background-color: #f9c8d3;
}
.row-mark-05 {
    background-color: #d5bcd8;
}
*/



.comdog-alert {
    display: block;
    padding: 16px;
    width: 90%;
    margin: 16px 0;

    color: #383d41;
    background-color: #e2e3e5;
    border: 1px solid #d6d8db;
}
.comdog-alert.m-center {
    width: auto;
    max-width: 888px;
    margin: 16px 24px 0 16px;
}
.comdog-alert-scs {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}
.comdog-alert-err {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
.comdog-alert-wrn {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}
.comdog-alert-inf {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
}



.comdog-table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    padding: 0 0 4px 0;
}
.comdog-table-wrapper::-webkit-scrollbar {
    width: 100%; height: 8px;
    background: transparent;
    cursor: pointer;
}
.comdog-table-wrapper::-webkit-scrollbar-track {
    background: transparent;
}
.comdog-table-wrapper::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background: #FF924166;
}
.comdog-table-wrapper::-webkit-scrollbar-thumb:hover {
    background: #FF924166;
}

.comdog-table-inner {
    display: inline-block;
    border: 1px solid #dadada;
}
.comdog-table-inner tr:first-child th,
.comdog-table-inner tr:first-child td {
    border-top: 0px solid #dadada;
}
.comdog-table-inner tr:last-child th,
.comdog-table-inner tr:last-child td {
    border-bottom: 0px solid #dadada;
}
.comdog-table-inner th:first-child,
.comdog-table-inner td:first-child {
    border-left: 0px solid #dadada;
}
.comdog-table-inner th:last-child,
.comdog-table-inner td:last-child {
    border-right: 0px solid #dadada;
}

.comdog-table {
    width: 100%;
    position: relative;
    border-collapse: collapse;
    text-align: left;

    background: #fff;
    word-wrap: break-word;
}
.comdog-table.m-auto {
    width: auto;
}
.comdog-table.m-fixed {
    table-layout: fixed;
}

.comdog-table th,
.comdog-table td {
    padding: 8px;
    vertical-align: middle;
    text-align: left;
}
.comdog-table th {
    text-align: center;
    font-weight: 600;
    background: #f5f5f5;
}
.comdog-table th,
.comdog-table td {
    border-right: 1px solid #dadada;
    border-bottom: 1px solid #dadada;
}
.comdog-table tr:first-child th,
.comdog-table tr:first-child td {
    border-top: 1px solid #dadada;
}
.comdog-table th:first-child,
.comdog-table td:first-child {
    border-left: 1px solid #dadada;
}

.comdog-table th.m-left,
.comdog-table td.m-left {
    text-align: left;
}
.comdog-table th.m-right,
.comdog-table td.m-right {
    text-align: right;
}
.comdog-table th.m-center,
.comdog-table td.m-center {
    text-align: center;
}
.comdog-table th.m-justify,
.comdog-table td.m-justify {
    text-align: justify;
}
.comdog-table th.m-top,
.comdog-table td.m-top {
        vertical-align: top;
}
.comdog-table th.m-mid,
.comdog-table td.m-mid {
      vertical-align: middle;
}
.comdog-table th.m-bot,
.comdog-table td.m-bot {
    vertical-align: bottom;
}

.comdog-table .m-sticky-h {
    position: sticky;
    top: 0;
}
.comdog-table .m-sticky-v {
    position: sticky;
    left: 0;
}
th.m-sticky-h,
th.m-sticky-v {
    background: #f5f5f5;
    z-index: 8;
}
th.m-sticky-h > .m-sticky-inner,
th.m-sticky-v > .m-sticky-inner {
    margin: -9px; padding: 8px;
    border: 1px solid #dadada;
    background: #f5f5f5;
}
td.m-sticky-h,
td.m-sticky-v {
    background: #fff;
    z-index: 7;
}
td.m-sticky-h > .m-sticky-inner,
td.m-sticky-v > .m-sticky-inner {
    margin: -9px; padding: 8px;
    border: 1px solid #dadada;
    background: #fff;
}
