.form-title {
  font-size: 1.8em;
  font-family: "ballinger", sans-serif;
  font-weight: 600;
  color: #66bf7e;
}

.form-group {
  margin-bottom: 20px;
  font-family: "ballinger", sans-serif;
}
.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}
.form-group .form-control {
  width: 100%;
  padding: 4px 12px;
  font-size: 16px;
  border: solid 1px #009528;
  border-radius: 8px;
  line-height: 32px;
  outline: none;
}
.form-group select.form-control {
  background-color: white;
  padding: 10px;
}
.form-group .btn {
  display: block;
  width: 100%;
}

.link {
  color: #66bf7e;
}
.link:hover {
  color: #21a344;
  text-decoration: underline;
}

.sidebar-menu li a {
  font-size: 16px;
  font-weight: 500;
  color: #66bf7e;
  padding: 16px 10px 14px 10px;
  display: block;
  text-decoration: none;
  border-bottom: solid 1px #66bf7e;
  font-weight: 500;
  font-family: "ballinger", sans-serif;
}
.sidebar-menu li a.active {
  color: #ffffff;
  background-color: #66bf7e;
  border-bottom: none;
}

.alert {
  margin-bottom: 20px;
  padding: 22px 20px 20px;
  border-radius: 8px;
  font-family: "ballinger", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #272727;
  display: flex;
  gap: 10px;
}
.alert.alert-danger {
  color: #9B1313;
  background-color: #F8DCD4;
}
.alert.alert-warning {
  color: #C88F40;
  background-color: #FAE88A;
}
.alert.alert-success {
  color: #0D3311;
  background-color: #ADEBB3;
}
.alert.alert-info {
  color: #022333;
  background-color: #8FD9FB;
}
.alert p {
  padding: 3px 0;
}
.alert p a {
  color: #C88F40;
  text-decoration: underline;
}

.badge {
  padding: 3px 15px;
  border-radius: 10px;
  display: inline-block;
  font-size: 15.2px;
}
.badge.badge-danger {
  color: #9B1313;
  background-color: #F8DCD4;
}
.badge.badge-warning {
  color: #C88F40;
  background-color: #FAE88A;
}
.badge.badge-success {
  color: #0D3311;
  background-color: #ADEBB3;
}
.badge.badge-info {
  color: #022333;
  background-color: #8FD9FB;
}

.dashboard .btn {
  font-size: 16px;
  border-radius: 8px;
  height: auto;
  padding: 7px 12px 5px;
  line-height: 32px;
}
.dashboard .btn.swal-button {
  font-weight: 400;
  font-size: 15px;
  padding: 4px 22px 2px;
}
.dashboard .btn.btn-danger {
  background-color: #ff0000;
}
.dashboard .btn.btn-default {
  background-color: #eee;
  color: #666;
}
.dashboard .btn.btn-outline-danger {
  border: solid 1px #ff0000;
  color: #ff0000;
  background-color: transparent;
  font-size: 13.6px;
}
.dashboard .btn.btn-sm {
  padding: 2px;
}
.dashboard .subscriptions .btn-subscriptions-cancel {
  display: inline;
  padding: 6px 20px 4px;
  line-height: 20px;
}
.dashboard .subscriptions .row {
  background-color: #e3f9e4;
  padding: 10px 0;
  border-radius: 8px;
  margin: 0 0 20px 0;
  cursor: pointer;
}
.dashboard .subscriptions .row:hover {
  background-color: #c8f7ca;
}
.dashboard .payments {
  overflow: hidden;
  max-height: 0;
}
.dashboard .payments.show {
  max-height: 1000px;
  transition: max-height 0.5s ease-in-out;
}
.dashboard .payments .row {
  background-color: #f7f7f7;
  padding: 10px 0;
  border-radius: 8px;
  margin: 0 0 20px 0;
}
.dashboard .payments .row:hover {
  background-color: #f2f2f2;
}

.profile-picture-placeholder {
  color: #666;
  aspect-ratio: 72/47;
  border: 1px solid #009528;
  border-radius: 8px;
  overflow: hidden;
}
.profile-picture-placeholder .profile-picture-placeholder-item {
  border: dashed 1px #009528;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #009528;
  height: 100%;
  gap: 10px;
}
.profile-picture-placeholder .profile-picture-placeholder-item .placeholder-img {
  width: 36px;
}
.profile-picture-placeholder label {
  padding: 12px;
  display: block;
  height: 100%;
  cursor: pointer;
  position: relative;
}
.profile-picture-placeholder label span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px 5px;
  margin: 12px;
  opacity: 0;
  visibility: hidden;
}
.profile-picture-placeholder .profile-img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.profile-picture-placeholder .profile-img + span {
  opacity: 1;
  visibility: visible;
}
.profile-picture-placeholder input[type=file] {
  display: none;
}

.help-block {
  color: #009528;
  font-size: 13px;
  margin-top: 5px;
  padding: 10px;
  display: block;
}
