.select2-selection, .select2-selection--single {
    min-width: 150px !important;
}

/* Message */
.messageStyle.success {
    padding: 10px;
    background: #27ae60;
    color: #fff;
    margin-bottom: 15px;
    border-radius: 5px;
}

.messageStyle.error {
    padding: 10px;
    background: #c0392b;
    color: #fff;
    margin-bottom: 15px;
    border-radius: 5px;
}

/* Account Manager Colors */
.acc-man-3 {
    color: green;
}

.acc-man-2 {
    color: red;
}

/* Contacts List */
.contactsList {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contactsList li {
    background: #f1f1f1;
    display: inline-block;
    width: 22%;
    margin: 5px 10px 5px 0;
    padding: 15px 15px;
    border-radius: 5px;
    vertical-align: top;
}

.contactsList tr td.icon.b {
    vertical-align: top;
    font-size: 22px;
    color: #539cbf;
}

.contactsList tr td.icon {
    padding: 0 10px 0 0;
    text-align: center;
    font-size: 13px;
    color: #828282;
}

.contactsList .contactName {
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 10px;
}

/* Comments */
.contactComments {
    max-height: 300px;
    overflow: auto;
    padding-top: 20px;
}

.fade {
    height: 50px;
    top: 0;
    position: absolute;
    left: 0;
    right: 0;
    background: rgb(255,255,255);
    background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
}

.contactComments tr td {
    padding: 10px 0px;
    vertical-align: top;
}

.contactComments .user {
    background: #d8d8d8;
    font-size: 14px;
    padding: 7px 10px;
    border-radius: 220px;
    margin-right: 10px;
}

.contactComments .publishDate {
    font-size: 13px;
    margin-top: 5px;
    opacity: 0.6;
}

.contactComments .user.user-circle-2 {
    background: #c0392b;
}

.contactComments .user.user-circle-3 {
    background: #2bc032;
}

/* Tabs */
.tab {
    margin-top: 15px;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

.tab ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tab li {
	display: inline-block;
    background-color: inherit;
    border: none;
    outline: none;
}

.tab li a {
	display: block;
    padding: 13px 14px;
    font-size: 14px;
    text-decoration: none;
}

.tab li:hover {
    background-color: #ddd;
}

.tab li.active a {
    background: #539cbf;
    color: #fff;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 15px;
    border: 1px solid #ccc;
    border-top: none;
}

.tabcontent.active {
	display: block !important;
}