/*
* General
*/
.leden-page h1{
  margin-bottom:2rem;
}
sub, sup {
  vertical-align: baseline !important;
}
/*
* Forms
*/
.form-signin {
  max-width: 330px;
  padding: 15px;
}

.form-signin input[type="email"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.form-signin input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.success, .warning {
  border-radius: var(--radius);
  color: #000;
}

.leden-menu .nav-link{
  width: 100%;
  display: flex;
  color: var(--main-dark);
  padding: 1rem;
}
.leden-menu .nav-link:hover{
  color: var(--main-color);
}
.leden-menu .nav-pills .nav-link.active,
.leden-menu .nav-pills .show > .nav-link {
  color: #fff;
  background-color: var(--main-dark);
}

/*
* Tables
*/
table{
  width: 100%;
}
th, td {
  padding: .5rem;
}
thead {
  background: var(--main-dark);
  color: #fff;
  text-transform: uppercase;
  font-size: .8rem;
}
tbody tr:hover td {
  background-color: #ccc;
}
.detail{
  text-decoration: none;
  text-transform: uppercase;
  font-size: .8rem;
}
.detail::after {
  display: inline-block;
  content: "";
  vertical-align: -.125em;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23dd0100" class="bi bi-arrow-right" viewBox="0 0 16 16"> <path fill-rule="evenodd" d="M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8z"/> </svg>');
  background-repeat: no-repeat;
  background-size: .8rem .8rem;
  width: .8rem;
  height: .8rem;
  margin-left: .3rem;
  margin-right: .2rem;
  transition: all 250ms ease-in-out;
}
.detail:hover::after {
  margin-left: .5rem;
  margin-right: 0;
}
/*
* Form
*/
*[required] {
  border-color: var(--main-dark);
  border-radius: 0;
}
.form-floating > label {
  opacity: .75;
  font-size: 1rem;
  text-transform: uppercase;
}
.divider span{
  width: 100%;
  display: block;
  border-bottom:1px solid #ced4da;
  margin: 3rem 0 1rem 0;
  padding: 0 0 1rem 0;
  font-size: 1rem;
  text-transform: uppercase;
}
.form-floating {
  margin-bottom: 1rem;
}
.form-switch input[type="checkbox"].form-check-input {
  width: 2em !important;
}
input:invalid {
  border-color:var(--main-color);
}

/*
* Invoices
*/
#invoice svg {
  width: 5rem;
  height: auto;
  margin-right: 2rem;
}

/*
* MENU
*/
@media only screen and (max-width: 600px) {
  .nav-item a span {
    font-size: .8rem;
    margin-top: .5rem;
    text-align: center;
  }
  .leden-menu .nav-link {
    padding: .5rem;
  }
  .nav-item {
    width: 33%;
  }
}
/*
* FAQ
*/
.accordion-button:not(.collapsed){
  color: var(--main-color);
  background-color: var(--secondary-ultralight);
}
.accordion-body ul li{
  list-style: disc;
  margin-left: 1.5rem;
  margin-top: .5rem;
  font-size: 1.1rem;
}