﻿.table {
    width: 100%;
    text-align: center;
    border-collapse: collapse;
}

.table__thead {
    font-weight: bold;
}

.table__th {
    text-align: center;
}

.table__th--8 {
    width: 8%;
}

.table__th--11 {
    width: 11%;
}

.table__th--14 {
    width: 14%;
}

.table__th--20 {
    width: 20%;
}

.table__tbody {
    font-size: 14px;
}

.table__row {
    height: 49px;
    border-bottom: 1px solid #B4B4B4;
}

/* Sub-rows for grouped layers to make grouping visually clear */
.table__row--sub {
    background-color: #F3F3F3;
}

/* Parent rows that have expandable details: show a left color indicator */
.table__row--has-detail td:first-child {
    position: relative; /* establish positioning context for pseudo-element */
}

/* use a pseudo-element for the left indicator so it doesn't affect table layout */
.table__row--has-detail td:first-child::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #1A82D9;
}

.table__checkbox {
    background-image: url(../../Images/Shared/checkmark.svg);
    background-size: 20px 20px;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid #D4D4D4;
    background-color: white;
    border-radius: 3px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    display: inline-block;
    position: relative;
}

.table__checkbox::after {
    content: "";
    display: block;
    width: 60px;
    height: 40px;
    border-radius: 13px;
    position: relative;
    top: -10px;
    left: -20px;
}

.table__checkbox--blue {
    border:none;
    background-color: #0078D4;
}

.table__checkbox--yellow {
    border:none;
    background-color: #FFB82A;
}

.table__checkbox--disabled {
    border: 1px solid #D4D4D4;
    background-color: #F2F2F2;
    background-image: unset;
    cursor: unset;
}

.table__leftTitle {
    background-color: #648E9C;
    color: white;
    border-bottom: 2px solid white;
}

.tr__dottedLine{
    border:1px dotted #E3E3E3
}

.tableLeft {
    width: 100%;
    text-align: left;
    border-collapse: collapse;
}

.tableLeft td{
    padding: 5px 0px;
    width: 25%;
    padding-left: 10px;
}

.tableMail {
    width:100%;
}
.tableMail td{
    padding:5px 10px;
}
.tableMail tr td:first-child{
    width:15%;
    background-color:#E5F0F8;
    color:#194C7F;
}

.tableDefault{
    width:100%;
    font-size:14px;
     border-collapse: collapse;
    margin-bottom:100px
}
    .tableDefault td {
        padding: 5px 10px;
        max-width: 10px
    }
.tableDefault thead td{
    text-align:center;
    font-weight:bold;
    padding:10px 0px
}

    .tableDefault tr {
        border-bottom: 2px solid #B4B4B4;
    }

    .tableDefault tbody tr:nth-child(odd) {
        background-color: #F8F9FD
    }

