/* line 65, src/assets/scss/mixins/_buttons.scss */
.btn-light:disabled, .btn-light.disabled {
  color: #000;
  background-color: #f6f9fe;
  border-color: #f6f9fe;
}

/* line 59, src/assets/scss/_buttons.scss */
.btn-dark {
  color: #f6f9fe;
  background-color: #212529;
  border-color: #212529;
}

/* line 25, src/assets/scss/mixins/_buttons.scss */
.btn-dark:hover {
  color: #f6f9fe;
  background-color: #1c1f23;
  border-color: #1a1e21;
}

/* line 31, src/assets/scss/mixins/_buttons.scss */
.btn-check:focus + .btn-dark, .btn-dark:focus {
  color: #f6f9fe;
  background-color: #1c1f23;
  border-color: #1a1e21;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(65, 69, 73, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(65, 69, 73, 0.5);
}

/* line 44, src/assets/scss/mixins/_buttons.scss */
.btn-check:checked + .btn-dark,
.btn-check:active + .btn-dark, .btn-dark:active, .btn-dark.active,
.show > .btn-dark.dropdown-toggle {
  color: #f6f9fe;
  background-color: #1a1e21;
  border-color: #191c1f;
}

/* line 55, src/assets/scss/mixins/_buttons.scss */
.btn-check:checked + .btn-dark:focus,
.btn-check:active + .btn-dark:focus, .btn-dark:active:focus, .btn-dark.active:focus,
.show > .btn-dark.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(65, 69, 73, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(65, 69, 73, 0.5);
}

/* line 65, src/assets/scss/mixins/_buttons.scss */
.btn-dark:disabled, .btn-dark.disabled {
  color: #f6f9fe;
  background-color: #212529;
  border-color: #212529;
}

/* line 65, src/assets/scss/_buttons.scss */
.btn-outline-primary {
  color: #548aae;
  border-color: #548aae;
}

/* line 85, src/assets/scss/mixins/_buttons.scss */
.btn-outline-primary:hover {
  color: #red;
  background-color: #548aae;
  border-color: #548aae;
  
  
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
