.message {
  padding: 20px;
  border: 1px solid transparent;
  background-color: transparent;
  border-radius: 4px;
  margin-bottom: 20px;
}

.message.message-error {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.message.message-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.customer-container {
  margin: 20px auto;
  padding: 50px 0;
  width: 100%;
  max-width: 1024px;
}

#inbox-container {
  margin: 20px auto;
  padding: 50px 0;
  width: 100%;
  max-width: 1024px;
}

.inbox-form label {
  display: block;
}

.inbox-form .form-group {
  margin: 20px 0;
}

.inbox-form .form-control {
  border-radius: 4px !important;
}

.inbox-table-messages th.column {
  text-transform: uppercase;
}

.inbox-table-messages .column-status {
  width: 5%;
  text-align: center;
}

.inbox-table-messages .column-date {
  width: 20%;
}

#inbox-messages .inbox-message {
  margin: 20px auto;
}

#inbox-messages .inbox-message .inbox-message-meta {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 0;
}

#inbox-messages .inbox-message-toolbox {
  margin: 10px 0;
}

.customer-inbox .btn {
  -ms-user-select: none;
  -webkit-user-select: none;
  background-color: transparent;
  border-radius: .25rem;
  border: 1px solid transparent;
  color: #525f7f;
  cursor: pointer;
  display: inline-block;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .025em;
  line-height: 1.5;
  padding: .625rem 1.25rem;
  position: relative;
  text-align: center;
  text-transform: none;
  transition: all .15s ease;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  -moz-user-select: none;
       user-select: none;
  vertical-align: middle;
  will-change: transform;
}

.customer-inbox .btn.btn-primary {
  color: #fff;
  border-color: #5e72e4;
  background-color: #5e72e4;
  box-shadow: 0 4px 6px rgba(50,50,93,.11),0 1px 3px rgba(0,0,0,.08);
}

.customer-inbox .btn.btn-secondary {
  color: #212529;
  border-color: #f7fafc;
  background-color: #f7fafc;
  box-shadow: 0 4px 6px rgba(50,50,93,.11),0 1px 3px rgba(0,0,0,.08);
}

.customer-inbox .toolbar {
  margin: 20px 0;
}

#inbox-messages table {
  color: #525f7f;
}

#inbox-messages .inbox-form {
  margin-bottom: 40px;
}

.customer-inbox .card {
  color: #525f7f;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  border: 1px solid rgba(0,0,0,.05);
  border-radius: .375rem;
  background-color: #fff;
  background-clip: border-box;
  padding: 15px;
  margin-bottom: 20px;
}

.customer-inbox .card-header {
  margin-bottom: 0;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,.05);
  background-color: #fff;
}

.customer-inbox .card-body {
  padding: 1.25rem 1.5rem;
}

.customer-inbox .table-responsive {
  display: block;
  overflow-x: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

.customer-inbox .table-responsive .table {
  width: 100%;
  margin-bottom: 1rem;
  color: #525f7f;
  background-color: transparent;
}

.customer-inbox .table-responsive th {
  color: #8898aa;
  background-color: #f6f9fc;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.customer-inbox .table-responsive td {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.customer-inbox .table-responsive .table td, 
.customer-inbox .table-responsive .table th {
  font-size: .8125rem;
  white-space: nowrap;
}

.customer-inbox .card.inbox-table-messages {
  padding: 0;
}

.customer-inbox .card.inbox-table-messages .table {
  border: none
}

.customer-inbox .card.inbox-table-messages th,
.customer-inbox .card.inbox-table-messages td {
  border-left: none;
  border-right: none;
}

.customer-home .menu ul {
  display: flex;
  align-items: center;
  list-style-type: none;
  justify-content: space-between;
  flex-wrap: wrap;
}

.customer-home .menu li {
  padding: 15px 30px;
  background-color: #fff;
  margin: 10px;
  width: 30%;
}

.customer-home .menu a {
  color: inherit;
  transition: all 0.3s ease 0s;
}

.customer-home .menu a:hover, 
.customer-home .menu a:focus {
  color: #ababab;
  text-decoration: none;
  outline: 0 none;
}

