.center {
	text-align: center;
}
.left {
	text-align: left;
}
.right {
	text-align: right;
}
.label-acm {
	color: #656565;
    display: inline-block;
    font-family: "Raleway",sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height: 20px;
    margin: 0;
    text-decoration: none;
    text-shadow: 0 0 1px rgba(101, 101, 101, 0.3);
	display: block;
}
/**************************** FIN TEXT GENERAL ******************************/

/**************************** MATERIAL INPUT SELECT ***************************/
.material-select-input-acm select {
	display: none !important;
}
.material-select-input-acm label {
	color: #60737d;
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
    margin: 0;
    margin-bottom: 0px;
    display: inline-block;
    margin-bottom: 8px;
}
.material-select-input-acm input {
	margin: 0px !important;
}
.material-select-input-acm.grey input {
	background-color: #EAEAEA !important;
	border: 2px solid #EAEAEA !important;
	box-sizing: border-box;
	color: #909090;
	font-size: 14px !important;
	font-weight: 400;
	text-shadow: 0 0 1px rgba(144, 144, 144, 0.5);
	/*font-family: "Raleway",sans-serif;*/
	letter-spacing: 0.3px;
	width: 100% !important;
	padding: 10px 14px !important;
    -webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-ms-border-radius: 2px;
	-o-border-radius: 2px;
	border-radius: 2px;
	height: 48px !important;
	line-height: 18px;
	box-shadow: none !important;
}
.material-select-input-acm.white input {
	background-color: #FFFFFF !important;
	border: 2px solid #FFFFFF !important;
	box-sizing: border-box;
	color: #909090 !important;
	font-size: 14px !important;
	font-weight: 400;
	text-shadow: 0 0 1px rgba(144, 144, 144, 0.5);
	font-family: "Raleway",sans-serif;
	letter-spacing: 0.3px;
	width: 100% !important;
  -webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-ms-border-radius: 2px;
	-o-border-radius: 2px;
	border-radius: 2px;
  line-height: 18px !important;
  height: 40px !important;

  padding: 10px 14px !important;


}
.material-select-input-acm .select-wrapper:after {
	content: "";
    background: url("/static/public-theme/img/icons/generic/icon-next-arrow-grey.d3afa19ff8a4.svg") no-repeat;
    position: absolute;
    transform: rotate(90deg);
    width: 16px;
    height: 16px;
	z-index: 1;
    top: calc(100% - 28px);
    right: 16px;
}
.material-select-input-acm .caret {
	display: none;
}
.material-select-input-acm .dropdown-content li {
	min-height: 30px;
	padding: 0px;
}
/*
.material-select-input-acm .dropdown-content li > span {
	font-size: 14px;
	-webkit-transition: all .2s ease-in-out !important;
	-moz-transition: all .2s ease-in-out !important;
	-o-transition: all .2s ease-in-out !important;
	transition: all .2s ease-in-out !important;
	letter-spacing: 0.3px;
	font-weight: 400;
}
.material-select-input-acm .dropdown-content li > span:hover,
.material-select-input-acm .dropdown-content li > span:focus,
.material-select-input-acm .dropdown-content li.active > span {
	color: #808080;
	text-shadow: 0 0 1px rgba(128, 128, 128, 0.1);
	background: #eaeaea;
}*/
.material-select-input-acm .dropdown-content {
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	border-radius: 3px;
	border-color: rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.15);
	border-width: 0 1px 1px;
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}
/************************** FIN MATERIAL INPUT SELECT *************************/


.material-table-acm {
	max-width: 100%;
  width: 100%;
	border-collapse: collapse;
  border-spacing: 0;
	box-sizing: border-box;
}

.material-table-acm .subtitle {
  margin-top: 3px;
  display: inline-block;
}
.material-table-acm .icon {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  display: inline-block;
  float: left;
  height: 38px;
  margin-right: 10px;
  margin-top: 1px;
  position: relative;
  width: 38px;
}
.material-table-acm .icon.sent {
    background-color: #C5E5DE;
}
.material-table-acm .icon.editing {
    background-color: #fad3ca;
}
.material-table-acm .icon.editing:after {
  background: url("/static/img/pencil-edit.0f73eb22acf2.svg");
  content: "";
  display: inline-block;
  height: 26px;
  left: 6px;
  position: absolute;
  top: 6px;
  width: 26px;
  z-index: 1;
}
.material-table-acm .icon.sent:after {
  background: url("/static/img/sent-mail.1890cd1e0c66.svg");
  content: "";
  display: inline-block;
  height: 26px;
  left: 6px;
  position: absolute;
  top: 6px;
  width: 26px;
  z-index: 1;
}
.material-table-acm.material-hover-table-acm tbody tr:hover {
	background: #EAEAEA;
}
.material-table-acm.white {
	background-color: #FFFFFF;
}
.material-table-acm > thead > tr,
.material-table-acm > tbody > tr {
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.material-table-acm.material-stripped-table-acm tbody tr:nth-child(2n+1) {
	background-color: #f0f0f0;
}
.material-table-acm > thead > tr > th {
  /*color: #656565;
  font-family: "Roboto",sans-serif;
  font-size: 15px;
  font-weight: 500;*/
  padding: 10px 0;
  text-align: left;
  /*text-shadow: 0 0 1px rgba(101, 101, 101, 0.1);
  text-transform: uppercase;*/
  vertical-align: bottom;
}
.material-table-acm > tbody > tr > td {

  line-height: 120%;

	border-top: 1px solid #e0e6e9;
  padding: 10px 0;
  text-align: left;
	-webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
  vertical-align: middle;
	cursor: default;
}
.material-table-acm > thead > tr > th.checkbox-column-acm,
.material-table-acm > tbody > tr > td.checkbox-column-acm {
	width: 18px;
}
.material-table-acm > thead > tr > th.checkbox-column-acm .checkbox-acm,
.material-table-acm > tbody > tr > td.checkbox-column-acm .checkbox-acm {
	margin: 0;
  min-height: 0;
}
.material-table-acm > thead > tr > th.checkbox-column-acm .checkbox-acm .checkbox-label-acm,
.material-table-acm > tbody > tr > td.checkbox-column-acm .checkbox-acm .checkbox-label-acm {
	width: 18px;
	padding: 0px;
}

.material-table-acm.uppercase-title thead tr th {
	font-size: 12px;
	text-shadow: 0 0 1px rgba(66, 66, 66, 0.3);
	text-transform: uppercase;
}
.material-table-acm.outer-bordered {
	border-bottom: 1px solid #EAEAEA;
}
.material-table-acm.inner-bordered tr td {
	border-bottom: 1px solid #EAEAEA;
}
.material-table-acm.inner-bordered tr:last-child td {
	border-bottom: none;
}
