/* Benutzeravatar und Produktbezeichnung */
.product-label-initials {
    font-weight: 500;
    margin-left: 20px;
}

.avatar-wrapper-initials {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-right: 20px;
}

/*  Icon */
.question-mark {
    cursor: pointer;
}

.question:hover {
    transform: scale(1.1);
}

/* Dropdown-Menü */
.dropdown-btn {
    color: #29abe2;
    font-weight: 700;
    font-size: 20px;
    border: none;
    cursor: pointer;
    height: 56px;
    width: 56px;
    border-radius: 100px;
    border: solid #2a3647 3px;
    background-color: white;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #2a3647;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    top: 100%;
    right: 25%;
    border-radius: 20px 0 20px 20px;
    overflow: hidden;
}

.dropdown-content a {
    color: rgb(255, 255, 255);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #2A3647;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #eceffc;
}

/* Mobile Header Logo */
.mobile-logo {
    display: none;
}

.contact-border-none {
    border: none;
    width: 100%;
    height: 100%;
    outline: none;
}

.contact-border-none:focus, 
.contact-border-none:focus-visible {
    outline: none;
}