﻿.feedback-smiley {
	font-size: 3em;
}
.feedback-smiley-div {
	width: 3em;
}

@media only screen and (max-width: 700px) {
    .feedback-smiley {
        font-size: 2em;
    }
	.feedback-smiley-div {
		width: 2em !important;
	}
}


/*  ------------  Change tab header buttons (active) from secondary to primary ---------------*/
.btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active, .show > .btn-secondary.dropdown-toggle {
	color: #fff;
	background-color: #4e73df;
	border-color: #4e73df;
}

/*  ------------  Make image a circle  ------------  */
.rounded-circle {
    border-radius: 40% !important;
}



/*  ------------  Contact List Cards  ------------  */
.contact-list .card-header{
    padding: 0.75rem;
    /*background-color: aqua;*/
}

.contact-list .card-body {
    padding: 0.5rem;
    /*background-color: brown;*/
}

/*  ------------  Use Divs to emulate table (Responsive) ---------------*/
#resp-table {
    width: 100%;
    display: table;
}
#resp-table-caption {
    display: table-caption;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
}
#resp-table-header {
    display: table-header-group;
    background-color: gray;
    font-weight: bold;
    font-size: 25px;
}
.table-header-cell {
    display: table-cell;
    padding: 10px;
    text-align: justify;
    border-bottom: 1px solid black;
}
#resp-table-body {
    display: table-row-group;
}
.resp-table-row {
    display: table-row;
}
.table-body-cell {
    display: table-cell;
}
.table-body-cell-truncate {
    display: table-cell;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


#resp-table-footer {
    display: table-footer-group;
    background-color: gray;
    font-weight: bold;
    font-size: 25px;
    color: #ffffff;
    color: rgba(255, 255, 255, 0.45);
}

.table-footer-cell {
    display: table-cell;
    padding: 10px;
    text-align: justify;
    border-bottom: 1px solid black;
}