/* Style for CheckBoxes Multi Selections */

.selectionList ul {
    list-style-type: none; 
    padding: 0;
    width:80%;
}

input[type="radio"][id^="item"] {
    display: none;
}

input[type="checkbox"][id^="item"] {
    display: none;
}

label[for^="item"] {
    background-color: #858796;
    color: #ffffff;
    border-radius: 5px;
    padding: 5px;
    display: block;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    min-width: 90px;
}

label::before {
    background-color: white;
    color: white;
    content: " ";
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    position: absolute;
    top: -5px;
    left: -5px;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 28px;
    transition-duration: 0.4s;
    transform: scale(0);
}

label img {
    height: 50px;
    width: 50px;
    transition-duration: 0.2s;
    transform-origin: 50% 50%;
}

:checked+label[for^="item"] {
    border-color: #ddd;
    position: relative;
    background-color: darkgreen;
}

 :checked+label[for^="item"]::before {
    content: "✓";
    color: #ffffff;
    background-color: #60da9a;
    transform: scale(1);
    position: absolute;
}

:checked+label img {
    transform: scale(0.9);
    /* box-shadow: 0 0 5px #333; */
    z-index: -1;
}

.cardlist {
    padding-right: 0.3rem;
    padding-left: 0.3rem;
}

.list-group-item {
    padding: 0.2rem 0.3rem;
    font-size: 13px;
}

.profile_button {
    padding:5px; 
    padding-left:15px; 
    padding-right:15px; 
    border-radius: 5px;
}
.sm_title {
    width:90;
    font-size:12px;
    font-weight:bold;
}
.sm_content {
    width:90;
    font-size:12px;
}

.summary_table { 
    font-size:11px;
}

#printArea{
    display:table;
    width:100%;
}

.page-content div {
    width: auto !important;
    max-width: 99%;
}
@media print {

     .no-print, .no-print * { display: none !important; }
     body {margin-top: 0mm; margin-bottom: 15mm;
           margin-left: 0mm; margin-right: 0mm;
           zoom:160%;}
    .summary_table {
         font-size:14px;
    }
    .d-print-none {
        display: none !important;
    }
    .d-print-inline {
        display: inline !important;
    }
    .d-print-inline-block {
        display: inline-block !important;
    }
    .d-print-block {
        display: block !important;
    }
    .d-print-table {
        display: table !important;
    }
    .d-print-table-row {
        display: table-row !important;
    }
    .d-print-table-cell {
        display: table-cell !important;
    }
    .d-print-flex {
        display: flex !important;
    }
    .d-print-inline-flex {
        display: inline-flex !important;
    }
    .colored-print th {
	background-color: darkblue !important;;
	color: white !important;
	border-spacing: 5px;
        -webkit-print-color-adjust: exact;
    }

}

@media screen
{
    .noPrint{}
    .noScreen{display:none;}

    .table .thead-light th {
        color: #6e707e;
        background-color: #eaecf4;
        border-color: #e3e6f0;
    }

}

