html {
  font-size: 12px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}


html, body, main {
    height: 100%;
}
html {
    position: relative;
    min-height: 100%;
}
body {
  margin-bottom: 60px;
}

.background-div {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
  
}


 
.ui-menu-item-wrapper {
    display: flex;
    align-items: center;
}
.flag-icon {
    width: 20px;
    height: 15px;
    margin-right: 8px;
}
.flex-grow-2 {
    flex-grow: 2 !important;
}

.custom-card-group .card {
    height: 100%;
    border: 1px solid #ccc;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.custom-card-group .card-body {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.custom-card-group .col {
    padding-left: 0;
    padding-right: 0;
}

.custom-card-group .row {
    margin-left: 0;
    margin-right: 0;
}

.custom-card-group .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    border-color: #007bff;
}
.fade-out {
    position: relative;
    display: block;
    width: 100%; /* Für volle Breite */
    height: auto; /* Automatische Höhe */
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

 