body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "TT Hoves";
}

body:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  padding: 2rem;
  background-image: url("../images/hintergrund.jpg");
  background-size: cover;
  pointer-events: none;
  opacity: 0.1;
}

main {
  padding: 0;
  margin: 0 auto;
  width: 1200px;
  position: relative;
  z-index: 1;
}

main>.card {
  margin: 0;
  padding: 2rem;
  border-radius: 30px;
  box-shadow: 0 0 25px rgb(0 0 0 / 5%);
  border-color: #fff;
  overflow: hidden;
  z-index: 1;
  position: relative;
  background-color: #fff;
}

main>.card:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  padding: 2rem;
  background-image: url("../images/hintergrund.jpg");
  background-size: cover;
  opacity: 0.02;
  filter: blur(4px);
  pointer-events: none;
}

.business-card {
  border: 1px solid #000;
  position: relative;
  z-index: 1;
  background-color: #fff;
  margin-bottom: 2rem;
}

.bc-head {
  background-color: #fbba00;
  padding: 1.5rem 0;
}

.bc-head.bc-head-dark {
  background-color: #000;
  color: #f7b701;
}

.bc-head .bc-head-logo {
  padding: .5rem 2rem;
}

.bc-head .bc-head-area {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  padding-right: 2rem;
  align-items: center;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.2;
}

.bc-content {
  padding: 2rem;
}

.bc-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bc-content ul li.divider {
  height: 14px;
}

.bc-content ul li#bc-name {
  font-weight: 700;
}

.bc-content ul li {
  line-height: 1.4;
  font-size: 0.9rem;
}

.bc-content ul li div {
  display: inline-block;
}

.bc-head .bc-head-area img {
  width: 57px;
  margin-right: 0.5rem;
}

.input-group {
  margin-bottom: 0.5rem;
  border: none;
  background-color: #f1f1f1;
  padding: 0.3rem 0;
}

.input-group .form-control {
  font-size: 0.9rem;
  background-color: transparent;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  padding-right: 2rem;
  padding-left: 0;
}


#bc-position-divider {
  display: none;
}

body {
  font-size: 14px;
}

.input-group .input-group-text {
  background-color: transparent;
  border: none;
}

.input-group:focus, .input-group:active, .input-group:hover {
  background-color: #e4e4e4;
}

.btn.btn-primary {
  background-color: #fbba00;
  color: #000;
  font-weight: 700;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 1rem 3rem;
}

.btn.btn-primary:hover {
  background-color: #ffc727;
  color: #000;
}

.form-check {
  margin: 2rem 0;
  background-color: #f0f0f0;
  padding: 1rem 1rem 1rem 2.3rem;
  cursor: pointer;
}

.form-check input, .form-check label {
  cursor: pointer;
}

.form-check-input {
  outline: none !important;
  box-shadow: none !important;
  border-color: #e1e1e0 !important;
  width: .9rem;
  height: .9rem;
  transform: translateX(-4px) translateY(-1px);
}

.form-check-input:checked {
  background-color: #fbba00;
  border-color: #fbba00 !important;
  outline: none !important;
  box-shadow: none !important;
}

.input-group[class*="used"]:after {
  position: absolute;
  right: 5px;
  top: 5px;
  font-size: .8rem;
  font-family: "bootstrap-icons";
}

.input-group.input-group-select:after {
  display: none;
}

.input-group.used:after {
  content: "\f270";
  color: green;
}

.input-group.not-used:after {
  content: "\f623";
  color: red;
}

/* ------------------------------ Alert Message ----------------------------- */

.alert-box-flying:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 50;
}

.alert-box-flying .alert .alert-box-close {
  width: 20px;
  height: 20px;
  display: block;
  background-color: rgba(0, 0, 0, 0.22);
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M8 8 L24 24 M8 24 L24 8'/%3E%3C/svg%3E");
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  transition: all .3s;
}

.alert-box-flying .alert .alert-box-close:hover {
  background-color: rgb(0 0 0 / 42%);
}

.alert-box-flying .alert.alert-success {
  position: relative;
  z-index: 100;
  padding: 2rem 10rem;
  border-radius: 0;
  border: 1px solid #fff;
  outline: 3px solid #9dd287;
  line-height: 1;
  color: #648e53;
}

.alert-box-flying .alert.alert-danger {
  position: relative;
  z-index: 100;
  padding: 2rem 10rem;
  border-radius: 0;
  border: 1px solid #fff;
  outline: 3px solid #d28787;
  line-height: 1;
  color: #8e5353;
}

.alert-box-flying {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 40;
  animation-name: alertFlying;
  animation-duration: 1s;
}

@keyframes alertFlying {
  0% {
    right: -100%;
  }
  100% {
    right: 0;
  }
}

