/* Color Variables */
.hidden {
  display: none;
}

.center {
  display: block;
  margin: 0 auto;
}

.close-modal {
  text-align: right;
  padding: 5px;
  display: block;
  cursor: pointer;
}

.modal {
  opacity: 0.9;
  background: #000;
}

.text-pink {
  color: #3F51B5;
}

.text-brown {
  color: #C5CAE9;
}



#app-container {
  display: block;
  position: relative;
  margin: 10px auto;
  background: #fff;
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.selected {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #e6e6e6;
  position: absolute;
  bottom: -6px;
  left: 45%;
}

.notify-bubble:after {
  background-color: #bec5e8;
  color: #fff;
  font-weight: 700;
  font-size: 9px;
  border-radius: 50%;
  position: absolute;
  line-height: 12px;
  width: 12px;
  height: 12px;
  text-align: center;
  top: -5px;
  right: -4px;
  content: "3";
}

header {
  background-color: #3F51B5;
  color: #fff;
  padding: 15px;
  box-shadow: 0 2px 2px -2px #444;
  display: -moz-box;
  display: -webkit-flex;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  @inlude justify-content(center);
}

.heading-user {
  width: 70%;
}

.icons {
  width: 22%;
  float: right;
}
.icons i {
  border: #3849a2 1px solid;
  border-radius: 4px;
  padding: 5px;
  background: #5465c4;
}

.main-contact {
  display: inline-block;
  float: left;
  margin-right: 10px;
  width: 10%;
}
.main-contact img {
  width: 35px;
  border-radius: 50%;
  border: #fff 2px solid;
}


.panel, .contact-list li {
  border-bottom: 1px solid #f1f1f1;
  padding: 15px 10px 0;
}

.form-search {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.form-add {
  background-color: rgba(255, 255, 255, 0.9);
  display: block;
  width: 265px;
  position: absolute;
  padding: 10px;
  border: 2px solid #C5CAE9;
  bottom: 20%;
  left: 18%;
}
.form-add img {
  max-width: 35%;
}
.form-add label {
  text-transform: uppercase;
  font-weight: 700;
  margin: 10px 0;
  display: block;
}
.form-add input {
  width: 98%;
  border-radius: 8px;
  border: 1px solid #C5CAE9;
  padding: 10px 0 10px 5px;
  position: relative;
}
.form-add .btn-primary {
  padding: 10px 10px;
  margin: 5px 0;
  float: right;
}

.form-input {
  border-radius: 25px;
  border: 1px solid #f1f1f1;
  height: 35px;
  padding: 5px;
  padding-left: 35px;
  display: block;
  width: 89%;
}

.search-icon {
  position: absolute;
  left: 10px;
  top: 11px;
  color: #cec9c3;
}

.refresh-icon {
  position: absolute;
  top: 11px;
  right: 10px;
  color: #cec9c3;
}
.refresh-icon:hover {
  cursor: pointer;
}

.contact-list {
  margin: 0;
  padding: 0;
}
.contact-list li {
  display: -moz-box;
  display: -webkit-flex;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #919191;
  padding: 10px;
}
.contact-list li:nth-child(even) {
  background: #f7f7f7;
}
.contact-list img {
  border-radius: 50%;
  float: left;
  margin-left: 10px;
  width: 10%;
  height: 45px;
  margin-right: 10px;
}
.contact-list .heading--name {
  color: #444;
  padding: 0;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 0;
}
.contact-list .sub-heading {
  color: #444;
  font-size: 14px;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.contact-list .heading {
  color: #444;
  font-size: 14px;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.contact-list .contact-info {
  width: 80%;
}
.contact-list .contact-item {
  display: inline-block;
  font-size: 1.2em;
}
.contact-list .contact-show {
  display: inline-block;
  font-size: 1.4em;
  padding: 3px;
}
.contact-list .contact-item .fa {
  font-size: 1.4em;
  margin-right: 2px;
  margin-left: 2px;
}

.btn-add {
  
  background: #3F51B5;
  color: #fff;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  display: block;
}
.btn-add .fa {
  font-size: 14px;
}
.img {
	margin: auto;
	display: block;
}
.heading {
	text-align: center;
	font-size: 2.0em;
	font-weight: 700;
	color: #000;
}
.text {
	text-align: center;
	font-size: 1.5em;
	color: #000;
	line-height: 25px;
	padding: 50px;
	display: block;
}
