/*---------------------------------------/*
 # SETTINGS
/*---------------------------------------*/
/*---------------------------------------/*
 # GENERIC - BOOTSTRAP
/*---------------------------------------*/
.navbar-toggler {
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler:hover {
  color: teal;
}

.navbar {
  background-color: teal;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: #ffffff;
}

.nav-link:hover {
  color: #ffffff;
}

.footer {
  color: teal;
  border-top: 1px solid teal !important;
}
.footer-copyright {
  cursor: default;
}
.footer-list {
  display: flex;
  list-style-type: none;
}
.footer-link {
  text-decoration: none;
  color: #008080;
}

.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  background-color: lightblue;
  color: black;
  border: 1px solid teal;
}

.btn:hover {
  color: black;
  background-color: lightblue;
  border: 1px solid teal;
  border-radius: 5px;
}
.btn:active {
  background-color: hsl(195, 53%, 79%);
  color: teal;
  border: 1px solid hsl(195, 53%, 79%);
}

.carousel-indicators [data-bs-target] {
  border-top: none;
  border-bottom: none;
  background-color: teal;
}

.choices__list--multiple .choices__item[data-deletable] {
  background-color: lightblue;
  border: 2px solid teal;
  color: black;
}

.modal-content {
  background-color: #f3f2ed;
  border: 2px solid teal;
  border-radius: 5px;
}
.modal-footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.dropdown-menu {
  width: 15rem !important;
  margin-top: 10px !important;
}
.dropdown-menu.show {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  margin-top: 10px !important;
  border: 2px solid teal;
}

.form-control {
  width: auto;
}

.form-switch .form-check-input {
  margin-left: 1rem;
  margin-right: 1rem;
  padding-left: 0 !important;
}

.form-check {
  padding-left: 0 !important;
}

.offcanvas.show {
  border-left: 2px solid teal;
  background-color: #f3f2ed;
}

.form-check-input:checked {
  background-color: teal;
  border-color: teal;
}
.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(173, 216, 230, 0.568627451);
}

/*---------------------------------------/*
 # ELEMENTS
/*---------------------------------------*/
/*---------------------------------------/*
 # OBJECTS
/*---------------------------------------*/
/*---------------------------------------/*
 # COMPONENTS
/*---------------------------------------*/
.c-background {
  background-color: #f3f2ed;
}

.c-nowalksmsg {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin-top: 1rem;
}
.c-nowalksmsg__msg {
  color: rgba(255, 0, 0, 0.7490196078);
  font-size: 2rem;
  border: 2px solid crimson;
  border-radius: 1rem;
  padding: 1rem;
  margin-top: 5rem;
  margin-bottom: 5rem;
  cursor: default;
}

.c-button {
  display: flex;
  border-radius: 5px;
}
.c-button--card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1rem;
  margin-top: 10px;
}
.c-button--list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.c-button__input {
  display: none;
}
.c-button__input:checked + .c-button__label {
  background-color: lightblue;
  color: black;
  border: 1px solid hsl(195, 53%, 79%);
}
.c-button__label {
  color: #ffffff;
  background-color: teal;
  margin-right: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
}
.c-button__label--inactive {
  background-color: grey;
}
.c-button__label--inactive:hover {
  background-color: rgba(128, 128, 128, 0.4705882353);
}
.c-button__name {
  margin: 0;
  padding: 0;
}

.c-link {
  display: flex;
  justify-content: center;
  width: 40%;
  text-decoration: none;
  color: #ffffff;
  background-color: teal;
  border-radius: 5px;
  margin: 1rem;
  margin-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.c-link--left {
  margin-left: 1rem;
}

.c-admin {
  display: flex;
  align-items: center;
  margin: 1rem;
  margin-right: 2rem;
}
.c-admin--disabled {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 9px;
  width: 30px;
  height: 30px;
  color: black;
  background-color: #514f4f;
  border: none;
  border-radius: 3px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}
.c-admin__delete {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 9px;
  width: 30px;
  height: 30px;
  color: #ffffff;
  background-color: red;
  border: none;
  border-radius: 3px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}
.c-admin__update {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 9px;
  width: 30px;
  height: 30px;
  color: black;
  background-color: yellow;
  border: none;
  border-radius: 3px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}
.c-admin__link {
  color: black;
}
.c-admin__input {
  display: none;
}

.c-search {
  margin-bottom: 2rem;
}
.c-search__balk {
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-toggle {
  display: flex;
}

/*---------------------------------------/*
 # UTILITIES
/*---------------------------------------*/
.u-hidden {
  display: none;
}