@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
* {
  font-family: "Roboto", sans-serif;
}

body {
  color: #7e8299;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #010d51;
  font-weight: 700;
}

a {
  text-decoration: none;
}

.green-text {
  color: #03ac49;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#auth {
  padding-top: 50px;
  padding-bottom: 50px;
}

#auth .col-auto {
  width: 100%;
  max-width: 500px;
}

#auth .card {
  border: none;
}

#auth .card-header {
  background-color: #fff;
  border: none;
  text-align: center;
  padding: 1rem;
  padding-bottom: 0;
}

#auth .card-header img {
  width: 150px;
  margin-bottom: 1.5rem;
}

#auth .card-header h3 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

#auth .card-header p {
  font-size: 0.875rem;
}

#auth div[class^="col-"],
#auth div[class="col"] {
  margin-bottom: 1rem;
}

.title {
  font-size: 1.1rem;
  color: #00137f;
  font-weight: 700;
  margin-bottom: 1rem;
}

label {
  font-size: 0.8rem;
  color: #010d51;
  font-weight: 500;
}

.form-check-label {
  font-size: 1rem;
}

.form-control {
  border: 2px solid #e3e3e3;
  border-radius: 0.5rem;
  height: 42px;
  background-color: #fff !important;
}

.form-control:focus {
  background-color: #dedeff !important;
  color: #00137f;
  font-weight: 700;
}

.submit-btn,
.download-btn {
  background-color: #00137f;
  border-color: #00137f;
  border-radius: 0.5rem;
  padding: 0.6rem 1rem;
}

.submit-btn a,
.download-btn a {
  color: #fff;
}

input:autofill {
  border: 3px solid blue;
}

.w-fit {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.layout-padding {
  padding: 0 40px;
}

@media screen and (max-width: 576px) {
  .layout-padding {
    padding: 0 20px;
  }
}

header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 40px;
  height: 65px;
  border-bottom: 1px solid #d1d1d1;
  background-color: #fff;
  z-index: 100;
}

header .logo img {
  height: 40px;
}

header .menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

header .menu ul li {
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 0.5rem;
  margin-right: 0.5rem;
}

header .menu ul li:nth-last-child(1) {
  padding-right: 0;
  margin-right: 0;
}

header .menu ul li a {
  padding: 0.5rem 1rem;
  color: #010d51;
}

header .menu ul li a:hover {
  color: #0022e5;
}

header .menu ul li a:nth-last-child(1) {
  padding-right: 0;
}

header .menu ul li.active a {
  color: #00137f;
}

header .nav-badge {
  background-color: #ff1e1e;
  width: 1.2rem;
  height: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 0.8rem;
  margin-left: 0.3rem;
  position: relative;
  top: 2px;
}

@media screen and (max-width: 576px) {
  header nav {
    padding: 0 20px;
  }
  header .burger .line {
    width: 30px;
    height: 4px;
    margin-bottom: 5px;
    background-color: #010d51;
  }
  header .menu {
    position: fixed;
    left: 0;
    background-color: #fff;
    height: 300px;
    width: 100%;
    -webkit-box-shadow: 0 2px 3px #a3a3a3;
            box-shadow: 0 2px 3px #a3a3a3;
    z-index: -1;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
  }
  header .menu ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 2rem;
  }
  header .menu ul li {
    font-size: 1.5rem;
  }
}

header .menu.active {
  top: 65px;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.tab-link {
  padding: 0.5rem 1rem;
  border: 1px solid #b3b3b3;
  border-radius: 0.2rem;
  color: #333;
  margin-right: 1rem;
  margin-top: 1.5rem;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tab-link:nth-last-child(1) {
  margin-right: 0;
}

.tab-link:hover {
  color: #001ecc;
  border-color: #001ecc;
}

.tab-link div {
  font-size: 0.875rem;
  margin-left: 0.5rem;
  font-weight: 600;
}

.active.tab-link {
  color: #fff;
  border-color: #001ecc;
  background-color: #001ecc;
}

.kunden-card .card-header {
  padding: 1rem;
  padding-top: 0.5rem;
}

.kunden-card .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.kunden-card .top .title {
  margin-bottom: 0;
}

.kunden-card .sub-title {
  color: #010d51;
}

.kunden-card .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0.5rem;
}

.kunden-card .bottom .btn-sm {
  padding: 0 0.5rem;
  font-size: 0.8rem;
}

.black {
  color: #333;
}

.table-heading {
  color: #001ecc !important;
}
