.backoffice_artikel_tabelle{
    display: grid;
    grid-template-columns: repeat(8, auto);
    grid-template-rows: repeat(10, auto);
    column-gap: 15px;
    row-gap: 5px;
    width: fit-content;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.backoffice_artikel_unterteilung{
    grid-column: 1/9;
    border-bottom: 3px solid #106eb4;
    height: 3px;
    width: 100%;
}

.backoffice_artikel_vorschau{
    text-align: center;
}

.backoffice_artikel_vorschau img{
    max-width: 70px;
    max-height: 70px;
}

.backoffice_artikel_anzeigen{
    text-align: center;
    justify-content: center;
}

.backoffice_artikel_anzeigen img, .backoffice_artikel_sortieren img{
    height: 24px;
    width: auto;
    margin-bottom: -5px;
}

.backoffice_artikel_rechts{
    text-align: end;
}

.backoffice_artikel_tabelle_leer{
    display: inline-block;
    height: 16px;
    width: 16px;
    margin-bottom: -5px
}

.backoffice_artikel_tabelle_link{
    display: inline-block;
    position: relative;
    color: #e3010f;
    text-decoration: none;
    font-weight: bold;
}

.backoffice_artikel_tabelle_link::after{
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #e3010f;
    transform-origin: bottom center;
    transition: transform 0.3s ease-out;
}
  
.backoffice_artikel_tabelle_link:hover::after{
      background-color: #e3010f;
      transform: scaleX(1);
      transform-origin: bottom center;
}

.backoffice_artikel_tabelle_anzeigen{
    display: grid;
    grid-template-columns: 1fr 1fr 220px;
    grid-template-rows: repeat(11, auto);
    column-gap: 15px;
    row-gap: 10px;
    align-items: start;
}

.backoffice_artikel_tabelle_neugeraet{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
}

.backoffice_artikel_tabelle_tags{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    border: 2px solid #106eb4;
    border-radius: 5px;
    padding: 5px;
}

.backoffice_artikel_tabelle_tags_auswahl{
    max-height: 150px;
    overflow: auto;
}

.backoffice_artikel_tabelle_speichern{
    grid-row: 1/9;
    grid-column: 3/4;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, auto);
    row-gap: 20px;
    text-align: center;
    justify-content: center;
}

.backoffice_artikel_tabelle_beschreibung{
    grid-column: 1/3;
}

.backoffice_artikel_tabelle_beschreibung textarea{
    padding: 5px;
    border: 2px solid #106eb4;
    border-radius: 5px;
    margin-right: 20px;
    width: 98%;
    height: 100px;
}

.backoffice_artikel_tabelle_2spalten{
    grid-column: 1/3;
}

.backoffice_artikel_hinweis{
    display: flex;
    align-items: center;
    font-size: 16px;
    color: gray;
    justify-content: center;
    border: 2px solid #106eb4;
    border-radius: 5px;
    padding: 10px;
}

.backoffice_artikel_produktbild{
    border: 2px solid #106eb4;
    border-radius: 5px;
    padding: 10px;
}

.backoffice_artikel_produktbild img{
    max-width: 170px;
    max-height: 170px;
}

.backoffice_artikel_produktgalerie{
    border: 2px solid #106eb4;
    border-radius: 5px;
    padding: 10px;
}

.backoffice_artikel_produktgalerie img{
    max-width: 100px;
    max-height: 100px;
}

.backoffice_artikel_overlay{
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 12;
    background-color: #000000d3;
}

.backoffice_artikel_overlay a{
    width: 100%;
    height: 100%;
}

.backoffice_artikel_overlay a img{
    position: fixed;
    right: 0;
    top: 0;
}

.backoffice_artikel_overlay_anzeigen{
    display: grid;
    grid-template-columns: 150px 1fr 150px;
    grid-row: auto 1fr;
    row-gap: 10px;
    position: fixed;
    background-color: white;
    border: 2px solid #106eb4;
    border-radius: 5px;
    padding: 10px;
    width: 85vw;
    height: 85vh;
    margin-left: 50%;
    margin-right: 50%;
}

.backoffice_artikel_overlay_ueber{
    color: #e3010f;
    font-weight: bold;
    text-align: center;
}

.backoffice_artikel_overlay_auswahl{
    grid-column: 1/4;
    overflow-x: auto;
    max-width: 100%;
    max-height: 95%;
}

.backoffice_artikel_overlay_bild{
    display: inline-block;
    text-align: center;
    border: 1px solid #106eb4;
    border-radius: 5px;
    margin-bottom: 10px;
    margin-right: 10px;
}

.backoffice_artikel_overlay_bild img{
    position: unset;
    max-width: 300px;
    max-height: 300px;
    cursor: pointer;
}

.backoffice_artikel_overlay_bild input{
    cursor: pointer;
}

.backoffice_artikel_overlay_ordner{
    grid-column: 1/4;
    overflow-x: auto;
    max-width: 100%;
    max-height: 95%;
}

.backoffice_artikel_overlay_ordner a{
    display: inline-block;
    border: 2px solid #106eb4;
    border-radius: 5px;
    color: #106eb4;
    text-decoration: none;
    text-align: center;
    padding: 10px;
    width: fit-content;
    height: fit-content;
    margin-bottom: 10px;
    margin-right: 10px;
}

.backoffice_artikel_button{
    background-color: transparent;
    border: 0px;
    cursor: pointer;
}