/* General - Begin */
div.tsm-notice.notice {
  padding: 10px;
  margin: 10px;
  border: 1px solid #ccc;
}
select {
	max-width: 100%;
}
/* General - End */

/* User - Begin */
.tsm-field-wrap {
  margin: 10px;
}
.tsm-label {
  font-weight: 600;
  min-width: 300px;
  display: inline-block;
}
.tsm-field {
  min-width: 200px;
}
.my-10 {
  margin: 10px 0;
}
.tsm-wrapper {
  margin: 10px auto;
}
.tsm-wrapper .button {
  font-size: .7em;
}
.tsm-wrapper .tsm-h2 {
  font-size: 1.5em;
  font-weight: bold;
}
.text-center {
  text-align: center;
}
.email-col {
  max-width: 100px;
  word-break: break-all;
}
@media only screen and (max-width: 578px) {
  .tsm-field {
    width: 100%;
  }
  .col-sm-0 {
    display: none;
  }
}
/* User - End */

/* Admin - Begin */
input.max-allowance {
  width: 40px;
}
/* Admin - End  */


/* Fix: theme's `.entry-content a.btn { all: unset; }` was wiping out
   Bootstrap's button styling. We give our buttons an extra class
   (tsm-btn) so our selector's specificity beats the theme's, then
   rebuild all the necessary properties by hand. */
.tsm-wrapper a.btn.tsm-btn,
.tsm-wrapper button.btn.tsm-btn {
  all: revert;
  display: inline-block;
  background-color: #d9534f;
  border: 1px solid #d43f3a;
  color: #ffffff !important;
  font-size: 16px;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none !important;
  cursor: pointer;
  line-height: 1.2;
  text-align: center;
  margin: 0 4px 10px 0;
}
.tsm-wrapper a.btn.tsm-btn:hover,
.tsm-wrapper a.btn.tsm-btn:focus,
.tsm-wrapper button.btn.tsm-btn:hover,
.tsm-wrapper button.btn.tsm-btn:focus {
  background-color: #c9302c;
  border-color: #ac2925;
  color: #ffffff !important;
  text-decoration: none !important;
}
