.container {
	display: grid;
	width: 1270PX;
	height:700px;
	grid-template-columns: auto auto;
	grid-template-rows: 30px 650px;
	grid-gap: 0.25rem;
	grid-template-areas:
		'header header '
		'ccp contactAttributes ';
	
}

.header {
	grid-area: header;
	justify-content: center;
}

.ccp {
	grid-area: ccp;

}

.smsCrm{
	grid-area: smsCrm;
}


.contact-attributes {
	grid-area: contactAttributes;

}

.contact-attributes-container {
	display: grid;
	grid-template-columns: auto;

}
.contact-header {
	grid-area: contact-header;
	justify-content: center;
}

.table-header {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #555454;
	padding-top: 2px;
	height: 30px;
	width: 870px;
	grid-row: 1 / 2;
	border-collapse: collapse;
	margin: 0px auto;
	color: rgb(255, 255, 255);
	outline-width: 3px;
	outline-color: rgb(102, 102, 102);
	border-color: #e0e0e0;
	letter-spacing: 0.01875rem;
	font-size: 0.875rem;
}
.table-content {
	background-color: #999;	
	width: 870px;

}

/* OTHER STYLES */

body {
	background-color: #ffffff;
	display: flex;
	justify-content: center;
	padding: 10px;
	font-family: AmazonEmber, Helvetica, sans-serif;
	outline-width: 3px;
}

.item {
	background-color: #ffffff;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
	color: black;
	border-radius: 4px;
	border: 6px #171717;

	/* justify-content: center; */
	align-items: center;
	font-size: 18px;
	font-weight: bold;
}

.header {
	background-color: #ffffff;
	color: #404042;
		
}

#ccpContainer {
	width: 400px;
	height: 650px;
	overflow: hidden;
	display: none;
}

#loadingContainer {
	margin: 40 12px 0;
}

#whitelisting {
	display: none;
	padding: 7px;
}

#whitelisting .blurb {
	font-size: 0.93em;
	margin-top: 35px;
}

#loadingImg {
	margin: auto;
	margin-top: 10px;
	display: block;
}
#appUrl {
	font-family: monospace;
	letter-spacing: -0.2px;
}

.col {
	text-align: right;
}

table {
	width: 800px;
}
th,
td {
	padding: 7px 10px;

}

th {
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	font-size: 70%;
	border-bottom: 2px solid #111111;
	border-top: 1px solid rgb(255, 255, 255);
	text-align: center;
}

tr {
	font-size: 70%;
}

tr:nth-child(even) {
	background-color: #ffffff;
}

tr:nth-child(odd) {
	background-color: rgba(255, 255, 255);
}

tr:hover {
	background-color: #ffffff;
}
.dial-button {
	border: 1px solid transparent;
	font-weight: 600;
	cursor: pointer;
	background-color: rgba(255, 255, 255);
	box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}
#cisco-dial-out-form {
	display: none;
}

#label-cisco-dials {
	font-weight: 600;
	color: rgba(0, 0, 0, 0.74);
	font-size: 0.875rem;
}

section:empty {
	background-color: rgb(240, 207, 207);
  }
  
/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 10px 26px;
  transition: 0.3s;
}

/* Change background color of buttons on hover 
.tab button:hover {
  background-color: #ddd;
}*/

/* Create an active/current tablink class */
.tab button.active {
  background-color: rgb(11, 111, 179);
  color: white;
  font-weight: bold;
  font-family: AmazonEmber, Helvetica, sans-serif;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid rgb(255, 255, 255);
  background-color: #ffffff;

}

/*Disabled test background*/
input[type=text]:disabled {
	background: #ffffff;
	font-family: AmazonEmber, Helvetica, sans-serif;
	
	color:rgba(0, 0, 0, 0.74)
  }