.likeWarp { display: block ; }
.likeWarp li {display: inline-block;
    border: 1px solid #ccc;
    padding: 10px 0;
    margin: 0 0 0 -1px;
    width: 7.16%;
    text-align: center;
    font-size: 14px;
    height: 100%;
    vertical-align: top;
    min-height: 82px; float: left;}
.likeWarp li:first-child,.likeWarp li:last-child{ padding: 10px;min-height: 83px; width:15%;display: grid;
    align-items: center;}

.likeWarp li label {display: block; width: 100%; border-bottom: 1px solid #ccc; font-weight: bold; padding: 0 10px 10px 10px;}

@media screen and (max-width: 767px) {
    .engagement_feedback {width: 100%;margin: 0;}
    .container.h-100 {padding: 0;}
    .likeWarp li  {width: 50%; min-height: auto; padding: 0;margin: -1px 0 0 0;}
    .likeWarp li:first-child  { width: 100% !important; min-height: auto; padding: 3px 10px !important;} 
    .likeWarp li:last-child 
    { width: 100% !important; min-height: auto; padding: 3px 10px !important;}
    .likeWarp li label { width: 50%; display: inline-block; float: left; margin: 0; padding: 10px !important; border: none;}
    .likeWarp li input { width: 50%; display: inline-block; float: left; margin: 14px 0px; }
}

/*
	Max width before this PARTICULAR table gets nasty. This query will take effect for any screen smaller than 760px and also iPads specifically.
	*/
	@media
	  only screen 
    and (max-width: 760px), (min-device-width: 768px) 
    and (max-device-width: 1024px)  {
        .cookieAlert {display: none;}
		/* Force table to not be like tables anymore */
		table, thead, tbody, th, td, tr {
			display: block;
		}

		/* Hide table headers (but not display: none;, for accessibility) */
		thead tr {
			position: absolute;
			top: -9999px;
			left: -9999px;
		}

    tr {
      margin: 0 0 0 0;
    }
      
    tr:nth-child(odd) {
      background: #fff;
    }
    
		td {
			/* Behave  like a "row" */
			border: none !important;
			border-bottom: 1px solid #eee !important;
			position: relative !important;
			padding-left: 45% !important; min-height: 60px;
		}

		td:before {
			/* Now like a table header */
			position: absolute;
			/* Top/left values mimic padding */
			top: 23%;
			left: 9px;
			width: 40%;
			padding-right: 10px; font-weight: bold; line-height: normal; font-size: 12px;
		
		}

		/*
		Label the data
    You could also use a data-* attribute and content for this. That way "bloats" the HTML, this way means you need to keep HTML and CSS in sync. Lea Verou has a clever way to handle with text-shadow.
		*/
    td:nth-of-type(1):before { content: "COMPANY NAME"; }
    td:nth-of-type(2):before { content: "BUSINESS UNIT"; }
    td:nth-of-type(3):before { content: "CUSTOMER NAME"; }
    td:nth-of-type(4):before { content: "CLIENT SERVICES PARTNER";}
    td:nth-of-type(5):before { content: "MONTH";}
	}